Chris@350
|
1 #! /bin/sh
|
Chris@350
|
2 # Guess values for system-dependent variables and create Makefiles.
|
Chris@884
|
3 # Generated by GNU Autoconf 2.69 for Sonic Visualiser 2.4.1.
|
Chris@350
|
4 #
|
Chris@350
|
5 # Report bugs to <cannam@all-day-breakfast.com>.
|
Chris@350
|
6 #
|
Chris@350
|
7 #
|
Chris@594
|
8 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
|
Chris@350
|
9 #
|
Chris@350
|
10 #
|
Chris@350
|
11 # This configure script is free software; the Free Software Foundation
|
Chris@350
|
12 # gives unlimited permission to copy, distribute and modify it.
|
Chris@350
|
13 ## -------------------- ##
|
Chris@350
|
14 ## M4sh Initialization. ##
|
Chris@350
|
15 ## -------------------- ##
|
Chris@350
|
16
|
Chris@350
|
17 # Be more Bourne compatible
|
Chris@350
|
18 DUALCASE=1; export DUALCASE # for MKS sh
|
Chris@350
|
19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
|
Chris@350
|
20 emulate sh
|
Chris@350
|
21 NULLCMD=:
|
Chris@350
|
22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
|
Chris@350
|
23 # is contrary to our usage. Disable this feature.
|
Chris@350
|
24 alias -g '${1+"$@"}'='"$@"'
|
Chris@350
|
25 setopt NO_GLOB_SUBST
|
Chris@350
|
26 else
|
Chris@350
|
27 case `(set -o) 2>/dev/null` in #(
|
Chris@350
|
28 *posix*) :
|
Chris@350
|
29 set -o posix ;; #(
|
Chris@350
|
30 *) :
|
Chris@350
|
31 ;;
|
Chris@350
|
32 esac
|
Chris@350
|
33 fi
|
Chris@350
|
34
|
Chris@350
|
35
|
Chris@350
|
36 as_nl='
|
Chris@350
|
37 '
|
Chris@350
|
38 export as_nl
|
Chris@350
|
39 # Printing a long string crashes Solaris 7 /usr/bin/printf.
|
Chris@350
|
40 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
|
Chris@350
|
41 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
|
Chris@350
|
42 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
|
Chris@350
|
43 # Prefer a ksh shell builtin over an external printf program on Solaris,
|
Chris@350
|
44 # but without wasting forks for bash or zsh.
|
Chris@350
|
45 if test -z "$BASH_VERSION$ZSH_VERSION" \
|
Chris@350
|
46 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
|
Chris@350
|
47 as_echo='print -r --'
|
Chris@350
|
48 as_echo_n='print -rn --'
|
Chris@350
|
49 elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
|
Chris@350
|
50 as_echo='printf %s\n'
|
Chris@350
|
51 as_echo_n='printf %s'
|
Chris@350
|
52 else
|
Chris@350
|
53 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
|
Chris@350
|
54 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
|
Chris@350
|
55 as_echo_n='/usr/ucb/echo -n'
|
Chris@350
|
56 else
|
Chris@350
|
57 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
|
Chris@350
|
58 as_echo_n_body='eval
|
Chris@350
|
59 arg=$1;
|
Chris@350
|
60 case $arg in #(
|
Chris@350
|
61 *"$as_nl"*)
|
Chris@350
|
62 expr "X$arg" : "X\\(.*\\)$as_nl";
|
Chris@350
|
63 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
|
Chris@350
|
64 esac;
|
Chris@350
|
65 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
|
Chris@350
|
66 '
|
Chris@350
|
67 export as_echo_n_body
|
Chris@350
|
68 as_echo_n='sh -c $as_echo_n_body as_echo'
|
Chris@350
|
69 fi
|
Chris@350
|
70 export as_echo_body
|
Chris@350
|
71 as_echo='sh -c $as_echo_body as_echo'
|
Chris@350
|
72 fi
|
Chris@350
|
73
|
Chris@350
|
74 # The user is always right.
|
Chris@350
|
75 if test "${PATH_SEPARATOR+set}" != set; then
|
Chris@350
|
76 PATH_SEPARATOR=:
|
Chris@350
|
77 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
|
Chris@350
|
78 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
|
Chris@350
|
79 PATH_SEPARATOR=';'
|
Chris@350
|
80 }
|
Chris@350
|
81 fi
|
Chris@350
|
82
|
Chris@350
|
83
|
Chris@350
|
84 # IFS
|
Chris@350
|
85 # We need space, tab and new line, in precisely that order. Quoting is
|
Chris@350
|
86 # there to prevent editors from complaining about space-tab.
|
Chris@350
|
87 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
|
Chris@350
|
88 # splitting by setting IFS to empty value.)
|
Chris@350
|
89 IFS=" "" $as_nl"
|
Chris@350
|
90
|
Chris@350
|
91 # Find who we are. Look in the path if we contain no directory separator.
|
Chris@594
|
92 as_myself=
|
Chris@350
|
93 case $0 in #((
|
Chris@350
|
94 *[\\/]* ) as_myself=$0 ;;
|
Chris@350
|
95 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
96 for as_dir in $PATH
|
Chris@350
|
97 do
|
Chris@350
|
98 IFS=$as_save_IFS
|
Chris@350
|
99 test -z "$as_dir" && as_dir=.
|
Chris@350
|
100 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
|
Chris@350
|
101 done
|
Chris@350
|
102 IFS=$as_save_IFS
|
Chris@350
|
103
|
Chris@350
|
104 ;;
|
Chris@350
|
105 esac
|
Chris@350
|
106 # We did not find ourselves, most probably we were run as `sh COMMAND'
|
Chris@350
|
107 # in which case we are not to be found in the path.
|
Chris@350
|
108 if test "x$as_myself" = x; then
|
Chris@350
|
109 as_myself=$0
|
Chris@350
|
110 fi
|
Chris@350
|
111 if test ! -f "$as_myself"; then
|
Chris@350
|
112 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
|
Chris@350
|
113 exit 1
|
Chris@350
|
114 fi
|
Chris@350
|
115
|
Chris@350
|
116 # Unset variables that we do not need and which cause bugs (e.g. in
|
Chris@350
|
117 # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
|
Chris@350
|
118 # suppresses any "Segmentation fault" message there. '((' could
|
Chris@350
|
119 # trigger a bug in pdksh 5.2.14.
|
Chris@350
|
120 for as_var in BASH_ENV ENV MAIL MAILPATH
|
Chris@350
|
121 do eval test x\${$as_var+set} = xset \
|
Chris@350
|
122 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
|
Chris@350
|
123 done
|
Chris@350
|
124 PS1='$ '
|
Chris@350
|
125 PS2='> '
|
Chris@350
|
126 PS4='+ '
|
Chris@350
|
127
|
Chris@350
|
128 # NLS nuisances.
|
Chris@350
|
129 LC_ALL=C
|
Chris@350
|
130 export LC_ALL
|
Chris@350
|
131 LANGUAGE=C
|
Chris@350
|
132 export LANGUAGE
|
Chris@350
|
133
|
Chris@350
|
134 # CDPATH.
|
Chris@350
|
135 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
|
Chris@350
|
136
|
Chris@594
|
137 # Use a proper internal environment variable to ensure we don't fall
|
Chris@594
|
138 # into an infinite loop, continuously re-executing ourselves.
|
Chris@594
|
139 if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
|
Chris@594
|
140 _as_can_reexec=no; export _as_can_reexec;
|
Chris@594
|
141 # We cannot yet assume a decent shell, so we have to provide a
|
Chris@594
|
142 # neutralization value for shells without unset; and this also
|
Chris@594
|
143 # works around shells that cannot unset nonexistent variables.
|
Chris@594
|
144 # Preserve -v and -x to the replacement shell.
|
Chris@594
|
145 BASH_ENV=/dev/null
|
Chris@594
|
146 ENV=/dev/null
|
Chris@594
|
147 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
|
Chris@594
|
148 case $- in # ((((
|
Chris@594
|
149 *v*x* | *x*v* ) as_opts=-vx ;;
|
Chris@594
|
150 *v* ) as_opts=-v ;;
|
Chris@594
|
151 *x* ) as_opts=-x ;;
|
Chris@594
|
152 * ) as_opts= ;;
|
Chris@594
|
153 esac
|
Chris@594
|
154 exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
|
Chris@594
|
155 # Admittedly, this is quite paranoid, since all the known shells bail
|
Chris@594
|
156 # out after a failed `exec'.
|
Chris@594
|
157 $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
|
Chris@594
|
158 as_fn_exit 255
|
Chris@594
|
159 fi
|
Chris@594
|
160 # We don't want this to propagate to other subprocesses.
|
Chris@594
|
161 { _as_can_reexec=; unset _as_can_reexec;}
|
Chris@350
|
162 if test "x$CONFIG_SHELL" = x; then
|
Chris@350
|
163 as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
|
Chris@350
|
164 emulate sh
|
Chris@350
|
165 NULLCMD=:
|
Chris@350
|
166 # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
|
Chris@350
|
167 # is contrary to our usage. Disable this feature.
|
Chris@350
|
168 alias -g '\${1+\"\$@\"}'='\"\$@\"'
|
Chris@350
|
169 setopt NO_GLOB_SUBST
|
Chris@350
|
170 else
|
Chris@350
|
171 case \`(set -o) 2>/dev/null\` in #(
|
Chris@350
|
172 *posix*) :
|
Chris@350
|
173 set -o posix ;; #(
|
Chris@350
|
174 *) :
|
Chris@350
|
175 ;;
|
Chris@350
|
176 esac
|
Chris@350
|
177 fi
|
Chris@350
|
178 "
|
Chris@350
|
179 as_required="as_fn_return () { (exit \$1); }
|
Chris@350
|
180 as_fn_success () { as_fn_return 0; }
|
Chris@350
|
181 as_fn_failure () { as_fn_return 1; }
|
Chris@350
|
182 as_fn_ret_success () { return 0; }
|
Chris@350
|
183 as_fn_ret_failure () { return 1; }
|
Chris@350
|
184
|
Chris@350
|
185 exitcode=0
|
Chris@350
|
186 as_fn_success || { exitcode=1; echo as_fn_success failed.; }
|
Chris@350
|
187 as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
|
Chris@350
|
188 as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
|
Chris@350
|
189 as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
|
Chris@350
|
190 if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
|
Chris@350
|
191
|
Chris@350
|
192 else
|
Chris@350
|
193 exitcode=1; echo positional parameters were not saved.
|
Chris@350
|
194 fi
|
Chris@594
|
195 test x\$exitcode = x0 || exit 1
|
Chris@594
|
196 test -x / || exit 1"
|
Chris@350
|
197 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
|
Chris@350
|
198 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
|
Chris@350
|
199 eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
|
Chris@350
|
200 test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
|
Chris@350
|
201 test \$(( 1 + 1 )) = 2 || exit 1"
|
Chris@350
|
202 if (eval "$as_required") 2>/dev/null; then :
|
Chris@350
|
203 as_have_required=yes
|
Chris@350
|
204 else
|
Chris@350
|
205 as_have_required=no
|
Chris@350
|
206 fi
|
Chris@350
|
207 if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
|
Chris@350
|
208
|
Chris@350
|
209 else
|
Chris@350
|
210 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
211 as_found=false
|
Chris@350
|
212 for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
|
Chris@350
|
213 do
|
Chris@350
|
214 IFS=$as_save_IFS
|
Chris@350
|
215 test -z "$as_dir" && as_dir=.
|
Chris@350
|
216 as_found=:
|
Chris@350
|
217 case $as_dir in #(
|
Chris@350
|
218 /*)
|
Chris@350
|
219 for as_base in sh bash ksh sh5; do
|
Chris@350
|
220 # Try only shells that exist, to save several forks.
|
Chris@350
|
221 as_shell=$as_dir/$as_base
|
Chris@350
|
222 if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
|
Chris@350
|
223 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
|
Chris@350
|
224 CONFIG_SHELL=$as_shell as_have_required=yes
|
Chris@350
|
225 if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
|
Chris@350
|
226 break 2
|
Chris@350
|
227 fi
|
Chris@350
|
228 fi
|
Chris@350
|
229 done;;
|
Chris@350
|
230 esac
|
Chris@350
|
231 as_found=false
|
Chris@350
|
232 done
|
Chris@350
|
233 $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
|
Chris@350
|
234 { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
|
Chris@350
|
235 CONFIG_SHELL=$SHELL as_have_required=yes
|
Chris@350
|
236 fi; }
|
Chris@350
|
237 IFS=$as_save_IFS
|
Chris@350
|
238
|
Chris@350
|
239
|
Chris@350
|
240 if test "x$CONFIG_SHELL" != x; then :
|
Chris@594
|
241 export CONFIG_SHELL
|
Chris@594
|
242 # We cannot yet assume a decent shell, so we have to provide a
|
Chris@594
|
243 # neutralization value for shells without unset; and this also
|
Chris@594
|
244 # works around shells that cannot unset nonexistent variables.
|
Chris@594
|
245 # Preserve -v and -x to the replacement shell.
|
Chris@594
|
246 BASH_ENV=/dev/null
|
Chris@594
|
247 ENV=/dev/null
|
Chris@594
|
248 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
|
Chris@594
|
249 case $- in # ((((
|
Chris@594
|
250 *v*x* | *x*v* ) as_opts=-vx ;;
|
Chris@594
|
251 *v* ) as_opts=-v ;;
|
Chris@594
|
252 *x* ) as_opts=-x ;;
|
Chris@594
|
253 * ) as_opts= ;;
|
Chris@594
|
254 esac
|
Chris@594
|
255 exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
|
Chris@594
|
256 # Admittedly, this is quite paranoid, since all the known shells bail
|
Chris@594
|
257 # out after a failed `exec'.
|
Chris@594
|
258 $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
|
Chris@594
|
259 exit 255
|
Chris@350
|
260 fi
|
Chris@350
|
261
|
Chris@350
|
262 if test x$as_have_required = xno; then :
|
Chris@350
|
263 $as_echo "$0: This script requires a shell more modern than all"
|
Chris@350
|
264 $as_echo "$0: the shells that I found on your system."
|
Chris@350
|
265 if test x${ZSH_VERSION+set} = xset ; then
|
Chris@350
|
266 $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
|
Chris@350
|
267 $as_echo "$0: be upgraded to zsh 4.3.4 or later."
|
Chris@350
|
268 else
|
Chris@350
|
269 $as_echo "$0: Please tell bug-autoconf@gnu.org and
|
Chris@350
|
270 $0: cannam@all-day-breakfast.com about your system,
|
Chris@350
|
271 $0: including any error possibly output before this
|
Chris@350
|
272 $0: message. Then install a modern shell, or manually run
|
Chris@350
|
273 $0: the script under such a shell if you do have one."
|
Chris@350
|
274 fi
|
Chris@350
|
275 exit 1
|
Chris@350
|
276 fi
|
Chris@350
|
277 fi
|
Chris@350
|
278 fi
|
Chris@350
|
279 SHELL=${CONFIG_SHELL-/bin/sh}
|
Chris@350
|
280 export SHELL
|
Chris@350
|
281 # Unset more variables known to interfere with behavior of common tools.
|
Chris@350
|
282 CLICOLOR_FORCE= GREP_OPTIONS=
|
Chris@350
|
283 unset CLICOLOR_FORCE GREP_OPTIONS
|
Chris@350
|
284
|
Chris@350
|
285 ## --------------------- ##
|
Chris@350
|
286 ## M4sh Shell Functions. ##
|
Chris@350
|
287 ## --------------------- ##
|
Chris@350
|
288 # as_fn_unset VAR
|
Chris@350
|
289 # ---------------
|
Chris@350
|
290 # Portably unset VAR.
|
Chris@350
|
291 as_fn_unset ()
|
Chris@350
|
292 {
|
Chris@350
|
293 { eval $1=; unset $1;}
|
Chris@350
|
294 }
|
Chris@350
|
295 as_unset=as_fn_unset
|
Chris@350
|
296
|
Chris@350
|
297 # as_fn_set_status STATUS
|
Chris@350
|
298 # -----------------------
|
Chris@350
|
299 # Set $? to STATUS, without forking.
|
Chris@350
|
300 as_fn_set_status ()
|
Chris@350
|
301 {
|
Chris@350
|
302 return $1
|
Chris@350
|
303 } # as_fn_set_status
|
Chris@350
|
304
|
Chris@350
|
305 # as_fn_exit STATUS
|
Chris@350
|
306 # -----------------
|
Chris@350
|
307 # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
|
Chris@350
|
308 as_fn_exit ()
|
Chris@350
|
309 {
|
Chris@350
|
310 set +e
|
Chris@350
|
311 as_fn_set_status $1
|
Chris@350
|
312 exit $1
|
Chris@350
|
313 } # as_fn_exit
|
Chris@350
|
314
|
Chris@350
|
315 # as_fn_mkdir_p
|
Chris@350
|
316 # -------------
|
Chris@350
|
317 # Create "$as_dir" as a directory, including parents if necessary.
|
Chris@350
|
318 as_fn_mkdir_p ()
|
Chris@350
|
319 {
|
Chris@350
|
320
|
Chris@350
|
321 case $as_dir in #(
|
Chris@350
|
322 -*) as_dir=./$as_dir;;
|
Chris@350
|
323 esac
|
Chris@350
|
324 test -d "$as_dir" || eval $as_mkdir_p || {
|
Chris@350
|
325 as_dirs=
|
Chris@350
|
326 while :; do
|
Chris@350
|
327 case $as_dir in #(
|
Chris@350
|
328 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
|
Chris@350
|
329 *) as_qdir=$as_dir;;
|
Chris@350
|
330 esac
|
Chris@350
|
331 as_dirs="'$as_qdir' $as_dirs"
|
Chris@350
|
332 as_dir=`$as_dirname -- "$as_dir" ||
|
Chris@350
|
333 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
Chris@350
|
334 X"$as_dir" : 'X\(//\)[^/]' \| \
|
Chris@350
|
335 X"$as_dir" : 'X\(//\)$' \| \
|
Chris@350
|
336 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
|
Chris@350
|
337 $as_echo X"$as_dir" |
|
Chris@350
|
338 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
Chris@350
|
339 s//\1/
|
Chris@350
|
340 q
|
Chris@350
|
341 }
|
Chris@350
|
342 /^X\(\/\/\)[^/].*/{
|
Chris@350
|
343 s//\1/
|
Chris@350
|
344 q
|
Chris@350
|
345 }
|
Chris@350
|
346 /^X\(\/\/\)$/{
|
Chris@350
|
347 s//\1/
|
Chris@350
|
348 q
|
Chris@350
|
349 }
|
Chris@350
|
350 /^X\(\/\).*/{
|
Chris@350
|
351 s//\1/
|
Chris@350
|
352 q
|
Chris@350
|
353 }
|
Chris@350
|
354 s/.*/./; q'`
|
Chris@350
|
355 test -d "$as_dir" && break
|
Chris@350
|
356 done
|
Chris@350
|
357 test -z "$as_dirs" || eval "mkdir $as_dirs"
|
Chris@594
|
358 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
|
Chris@350
|
359
|
Chris@350
|
360
|
Chris@350
|
361 } # as_fn_mkdir_p
|
Chris@594
|
362
|
Chris@594
|
363 # as_fn_executable_p FILE
|
Chris@594
|
364 # -----------------------
|
Chris@594
|
365 # Test if FILE is an executable regular file.
|
Chris@594
|
366 as_fn_executable_p ()
|
Chris@594
|
367 {
|
Chris@594
|
368 test -f "$1" && test -x "$1"
|
Chris@594
|
369 } # as_fn_executable_p
|
Chris@350
|
370 # as_fn_append VAR VALUE
|
Chris@350
|
371 # ----------------------
|
Chris@350
|
372 # Append the text in VALUE to the end of the definition contained in VAR. Take
|
Chris@350
|
373 # advantage of any shell optimizations that allow amortized linear growth over
|
Chris@350
|
374 # repeated appends, instead of the typical quadratic growth present in naive
|
Chris@350
|
375 # implementations.
|
Chris@350
|
376 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
|
Chris@350
|
377 eval 'as_fn_append ()
|
Chris@350
|
378 {
|
Chris@350
|
379 eval $1+=\$2
|
Chris@350
|
380 }'
|
Chris@350
|
381 else
|
Chris@350
|
382 as_fn_append ()
|
Chris@350
|
383 {
|
Chris@350
|
384 eval $1=\$$1\$2
|
Chris@350
|
385 }
|
Chris@350
|
386 fi # as_fn_append
|
Chris@350
|
387
|
Chris@350
|
388 # as_fn_arith ARG...
|
Chris@350
|
389 # ------------------
|
Chris@350
|
390 # Perform arithmetic evaluation on the ARGs, and store the result in the
|
Chris@350
|
391 # global $as_val. Take advantage of shells that can avoid forks. The arguments
|
Chris@350
|
392 # must be portable across $(()) and expr.
|
Chris@350
|
393 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
|
Chris@350
|
394 eval 'as_fn_arith ()
|
Chris@350
|
395 {
|
Chris@350
|
396 as_val=$(( $* ))
|
Chris@350
|
397 }'
|
Chris@350
|
398 else
|
Chris@350
|
399 as_fn_arith ()
|
Chris@350
|
400 {
|
Chris@350
|
401 as_val=`expr "$@" || test $? -eq 1`
|
Chris@350
|
402 }
|
Chris@350
|
403 fi # as_fn_arith
|
Chris@350
|
404
|
Chris@350
|
405
|
Chris@594
|
406 # as_fn_error STATUS ERROR [LINENO LOG_FD]
|
Chris@594
|
407 # ----------------------------------------
|
Chris@350
|
408 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
|
Chris@350
|
409 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
|
Chris@594
|
410 # script with STATUS, using 1 if that was 0.
|
Chris@350
|
411 as_fn_error ()
|
Chris@350
|
412 {
|
Chris@594
|
413 as_status=$1; test $as_status -eq 0 && as_status=1
|
Chris@594
|
414 if test "$4"; then
|
Chris@594
|
415 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
|
Chris@594
|
416 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
|
Chris@350
|
417 fi
|
Chris@594
|
418 $as_echo "$as_me: error: $2" >&2
|
Chris@350
|
419 as_fn_exit $as_status
|
Chris@350
|
420 } # as_fn_error
|
Chris@350
|
421
|
Chris@350
|
422 if expr a : '\(a\)' >/dev/null 2>&1 &&
|
Chris@350
|
423 test "X`expr 00001 : '.*\(...\)'`" = X001; then
|
Chris@350
|
424 as_expr=expr
|
Chris@350
|
425 else
|
Chris@350
|
426 as_expr=false
|
Chris@350
|
427 fi
|
Chris@350
|
428
|
Chris@350
|
429 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
|
Chris@350
|
430 as_basename=basename
|
Chris@350
|
431 else
|
Chris@350
|
432 as_basename=false
|
Chris@350
|
433 fi
|
Chris@350
|
434
|
Chris@350
|
435 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
|
Chris@350
|
436 as_dirname=dirname
|
Chris@350
|
437 else
|
Chris@350
|
438 as_dirname=false
|
Chris@350
|
439 fi
|
Chris@350
|
440
|
Chris@350
|
441 as_me=`$as_basename -- "$0" ||
|
Chris@350
|
442 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
|
Chris@350
|
443 X"$0" : 'X\(//\)$' \| \
|
Chris@350
|
444 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
|
Chris@350
|
445 $as_echo X/"$0" |
|
Chris@350
|
446 sed '/^.*\/\([^/][^/]*\)\/*$/{
|
Chris@350
|
447 s//\1/
|
Chris@350
|
448 q
|
Chris@350
|
449 }
|
Chris@350
|
450 /^X\/\(\/\/\)$/{
|
Chris@350
|
451 s//\1/
|
Chris@350
|
452 q
|
Chris@350
|
453 }
|
Chris@350
|
454 /^X\/\(\/\).*/{
|
Chris@350
|
455 s//\1/
|
Chris@350
|
456 q
|
Chris@350
|
457 }
|
Chris@350
|
458 s/.*/./; q'`
|
Chris@350
|
459
|
Chris@350
|
460 # Avoid depending upon Character Ranges.
|
Chris@350
|
461 as_cr_letters='abcdefghijklmnopqrstuvwxyz'
|
Chris@350
|
462 as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
Chris@350
|
463 as_cr_Letters=$as_cr_letters$as_cr_LETTERS
|
Chris@350
|
464 as_cr_digits='0123456789'
|
Chris@350
|
465 as_cr_alnum=$as_cr_Letters$as_cr_digits
|
Chris@350
|
466
|
Chris@350
|
467
|
Chris@350
|
468 as_lineno_1=$LINENO as_lineno_1a=$LINENO
|
Chris@350
|
469 as_lineno_2=$LINENO as_lineno_2a=$LINENO
|
Chris@350
|
470 eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
|
Chris@350
|
471 test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
|
Chris@350
|
472 # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-)
|
Chris@350
|
473 sed -n '
|
Chris@350
|
474 p
|
Chris@350
|
475 /[$]LINENO/=
|
Chris@350
|
476 ' <$as_myself |
|
Chris@350
|
477 sed '
|
Chris@350
|
478 s/[$]LINENO.*/&-/
|
Chris@350
|
479 t lineno
|
Chris@350
|
480 b
|
Chris@350
|
481 :lineno
|
Chris@350
|
482 N
|
Chris@350
|
483 :loop
|
Chris@350
|
484 s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
|
Chris@350
|
485 t loop
|
Chris@350
|
486 s/-\n.*//
|
Chris@350
|
487 ' >$as_me.lineno &&
|
Chris@350
|
488 chmod +x "$as_me.lineno" ||
|
Chris@350
|
489 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
|
Chris@350
|
490
|
Chris@594
|
491 # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
|
Chris@594
|
492 # already done that, so ensure we don't try to do so again and fall
|
Chris@594
|
493 # in an infinite loop. This has already happened in practice.
|
Chris@594
|
494 _as_can_reexec=no; export _as_can_reexec
|
Chris@350
|
495 # Don't try to exec as it changes $[0], causing all sort of problems
|
Chris@350
|
496 # (the dirname of $[0] is not the place where we might find the
|
Chris@350
|
497 # original and so on. Autoconf is especially sensitive to this).
|
Chris@350
|
498 . "./$as_me.lineno"
|
Chris@350
|
499 # Exit status is that of the last command.
|
Chris@350
|
500 exit
|
Chris@350
|
501 }
|
Chris@350
|
502
|
Chris@350
|
503 ECHO_C= ECHO_N= ECHO_T=
|
Chris@350
|
504 case `echo -n x` in #(((((
|
Chris@350
|
505 -n*)
|
Chris@350
|
506 case `echo 'xy\c'` in
|
Chris@350
|
507 *c*) ECHO_T=' ';; # ECHO_T is single tab character.
|
Chris@350
|
508 xy) ECHO_C='\c';;
|
Chris@350
|
509 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
|
Chris@350
|
510 ECHO_T=' ';;
|
Chris@350
|
511 esac;;
|
Chris@350
|
512 *)
|
Chris@350
|
513 ECHO_N='-n';;
|
Chris@350
|
514 esac
|
Chris@350
|
515
|
Chris@350
|
516 rm -f conf$$ conf$$.exe conf$$.file
|
Chris@350
|
517 if test -d conf$$.dir; then
|
Chris@350
|
518 rm -f conf$$.dir/conf$$.file
|
Chris@350
|
519 else
|
Chris@350
|
520 rm -f conf$$.dir
|
Chris@350
|
521 mkdir conf$$.dir 2>/dev/null
|
Chris@350
|
522 fi
|
Chris@350
|
523 if (echo >conf$$.file) 2>/dev/null; then
|
Chris@350
|
524 if ln -s conf$$.file conf$$ 2>/dev/null; then
|
Chris@350
|
525 as_ln_s='ln -s'
|
Chris@350
|
526 # ... but there are two gotchas:
|
Chris@350
|
527 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
|
Chris@350
|
528 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
|
Chris@594
|
529 # In both cases, we have to default to `cp -pR'.
|
Chris@350
|
530 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
|
Chris@594
|
531 as_ln_s='cp -pR'
|
Chris@350
|
532 elif ln conf$$.file conf$$ 2>/dev/null; then
|
Chris@350
|
533 as_ln_s=ln
|
Chris@350
|
534 else
|
Chris@594
|
535 as_ln_s='cp -pR'
|
Chris@350
|
536 fi
|
Chris@350
|
537 else
|
Chris@594
|
538 as_ln_s='cp -pR'
|
Chris@350
|
539 fi
|
Chris@350
|
540 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
|
Chris@350
|
541 rmdir conf$$.dir 2>/dev/null
|
Chris@350
|
542
|
Chris@350
|
543 if mkdir -p . 2>/dev/null; then
|
Chris@350
|
544 as_mkdir_p='mkdir -p "$as_dir"'
|
Chris@350
|
545 else
|
Chris@350
|
546 test -d ./-p && rmdir ./-p
|
Chris@350
|
547 as_mkdir_p=false
|
Chris@350
|
548 fi
|
Chris@350
|
549
|
Chris@594
|
550 as_test_x='test -x'
|
Chris@594
|
551 as_executable_p=as_fn_executable_p
|
Chris@350
|
552
|
Chris@350
|
553 # Sed expression to map a string onto a valid CPP name.
|
Chris@350
|
554 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
|
Chris@350
|
555
|
Chris@350
|
556 # Sed expression to map a string onto a valid variable name.
|
Chris@350
|
557 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
|
Chris@350
|
558
|
Chris@350
|
559
|
Chris@350
|
560 test -n "$DJDIR" || exec 7<&0 </dev/null
|
Chris@350
|
561 exec 6>&1
|
Chris@350
|
562
|
Chris@350
|
563 # Name of the host.
|
Chris@594
|
564 # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
|
Chris@350
|
565 # so uname gets run too.
|
Chris@350
|
566 ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
|
Chris@350
|
567
|
Chris@350
|
568 #
|
Chris@350
|
569 # Initializations.
|
Chris@350
|
570 #
|
Chris@350
|
571 ac_default_prefix=/usr/local
|
Chris@350
|
572 ac_clean_files=
|
Chris@350
|
573 ac_config_libobj_dir=.
|
Chris@350
|
574 LIBOBJS=
|
Chris@350
|
575 cross_compiling=no
|
Chris@350
|
576 subdirs=
|
Chris@350
|
577 MFLAGS=
|
Chris@350
|
578 MAKEFLAGS=
|
Chris@350
|
579
|
Chris@350
|
580 # Identity of this package.
|
Chris@351
|
581 PACKAGE_NAME='Sonic Visualiser'
|
Chris@351
|
582 PACKAGE_TARNAME='sonic-visualiser'
|
Chris@884
|
583 PACKAGE_VERSION='2.4.1'
|
Chris@884
|
584 PACKAGE_STRING='Sonic Visualiser 2.4.1'
|
Chris@350
|
585 PACKAGE_BUGREPORT='cannam@all-day-breakfast.com'
|
Chris@350
|
586 PACKAGE_URL=''
|
Chris@350
|
587
|
Chris@351
|
588 ac_unique_file="main/main.cpp"
|
Chris@350
|
589 # Factoring default headers for most tests.
|
Chris@350
|
590 ac_includes_default="\
|
Chris@350
|
591 #include <stdio.h>
|
Chris@350
|
592 #ifdef HAVE_SYS_TYPES_H
|
Chris@350
|
593 # include <sys/types.h>
|
Chris@350
|
594 #endif
|
Chris@350
|
595 #ifdef HAVE_SYS_STAT_H
|
Chris@350
|
596 # include <sys/stat.h>
|
Chris@350
|
597 #endif
|
Chris@350
|
598 #ifdef STDC_HEADERS
|
Chris@350
|
599 # include <stdlib.h>
|
Chris@350
|
600 # include <stddef.h>
|
Chris@350
|
601 #else
|
Chris@350
|
602 # ifdef HAVE_STDLIB_H
|
Chris@350
|
603 # include <stdlib.h>
|
Chris@350
|
604 # endif
|
Chris@350
|
605 #endif
|
Chris@350
|
606 #ifdef HAVE_STRING_H
|
Chris@350
|
607 # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
|
Chris@350
|
608 # include <memory.h>
|
Chris@350
|
609 # endif
|
Chris@350
|
610 # include <string.h>
|
Chris@350
|
611 #endif
|
Chris@350
|
612 #ifdef HAVE_STRINGS_H
|
Chris@350
|
613 # include <strings.h>
|
Chris@350
|
614 #endif
|
Chris@350
|
615 #ifdef HAVE_INTTYPES_H
|
Chris@350
|
616 # include <inttypes.h>
|
Chris@350
|
617 #endif
|
Chris@350
|
618 #ifdef HAVE_STDINT_H
|
Chris@350
|
619 # include <stdint.h>
|
Chris@350
|
620 #endif
|
Chris@350
|
621 #ifdef HAVE_UNISTD_H
|
Chris@350
|
622 # include <unistd.h>
|
Chris@350
|
623 #endif"
|
Chris@350
|
624
|
Chris@517
|
625 enable_option_checking=no
|
Chris@350
|
626 ac_subst_vars='LTLIBOBJS
|
Chris@350
|
627 LIBOBJS
|
Chris@517
|
628 subdirs
|
Chris@361
|
629 QMAKE_CONFIG
|
Chris@350
|
630 HAVES
|
Chris@350
|
631 CXXFLAGS_MINIMAL
|
Chris@350
|
632 CUT
|
Chris@350
|
633 SHA1SUM
|
Chris@350
|
634 MAKEDEPEND
|
Chris@350
|
635 XARGS
|
Chris@350
|
636 PERL
|
Chris@488
|
637 X11_LIBS
|
Chris@488
|
638 X11_CFLAGS
|
Chris@350
|
639 id3tag_LIBS
|
Chris@350
|
640 id3tag_CFLAGS
|
Chris@350
|
641 mad_LIBS
|
Chris@350
|
642 mad_CFLAGS
|
Chris@350
|
643 fishsound_LIBS
|
Chris@350
|
644 fishsound_CFLAGS
|
Chris@350
|
645 oggz_LIBS
|
Chris@350
|
646 oggz_CFLAGS
|
Chris@350
|
647 lrdf_LIBS
|
Chris@350
|
648 lrdf_CFLAGS
|
Chris@350
|
649 libpulse_LIBS
|
Chris@350
|
650 libpulse_CFLAGS
|
Chris@350
|
651 JACK_LIBS
|
Chris@350
|
652 JACK_CFLAGS
|
Chris@358
|
653 portaudio_2_0_LIBS
|
Chris@358
|
654 portaudio_2_0_CFLAGS
|
Chris@350
|
655 liblo_LIBS
|
Chris@350
|
656 liblo_CFLAGS
|
Chris@572
|
657 serd_LIBS
|
Chris@572
|
658 serd_CFLAGS
|
Chris@572
|
659 sord_LIBS
|
Chris@572
|
660 sord_CFLAGS
|
Chris@350
|
661 rubberband_LIBS
|
Chris@350
|
662 rubberband_CFLAGS
|
Chris@350
|
663 vamphostsdk_LIBS
|
Chris@350
|
664 vamphostsdk_CFLAGS
|
Chris@350
|
665 vamp_LIBS
|
Chris@350
|
666 vamp_CFLAGS
|
Chris@350
|
667 samplerate_LIBS
|
Chris@350
|
668 samplerate_CFLAGS
|
Chris@350
|
669 sndfile_LIBS
|
Chris@350
|
670 sndfile_CFLAGS
|
Chris@350
|
671 fftw3f_LIBS
|
Chris@350
|
672 fftw3f_CFLAGS
|
Chris@350
|
673 fftw3_LIBS
|
Chris@350
|
674 fftw3_CFLAGS
|
Chris@350
|
675 bz2_LIBS
|
Chris@350
|
676 bz2_CFLAGS
|
Chris@350
|
677 QMAKE
|
Chris@594
|
678 PKG_CONFIG_LIBDIR
|
Chris@594
|
679 PKG_CONFIG_PATH
|
Chris@350
|
680 PKG_CONFIG
|
Chris@350
|
681 EGREP
|
Chris@350
|
682 GREP
|
Chris@350
|
683 CXXCPP
|
Chris@884
|
684 HAVE_CXX11
|
Chris@350
|
685 MKDIR_P
|
Chris@350
|
686 INSTALL_DATA
|
Chris@350
|
687 INSTALL_SCRIPT
|
Chris@350
|
688 INSTALL_PROGRAM
|
Chris@350
|
689 ac_ct_CXX
|
Chris@350
|
690 CXXFLAGS
|
Chris@350
|
691 CXX
|
Chris@350
|
692 OBJEXT
|
Chris@350
|
693 EXEEXT
|
Chris@350
|
694 ac_ct_CC
|
Chris@350
|
695 CPPFLAGS
|
Chris@350
|
696 LDFLAGS
|
Chris@350
|
697 CFLAGS
|
Chris@350
|
698 CC
|
Chris@350
|
699 target_alias
|
Chris@350
|
700 host_alias
|
Chris@350
|
701 build_alias
|
Chris@350
|
702 LIBS
|
Chris@350
|
703 ECHO_T
|
Chris@350
|
704 ECHO_N
|
Chris@350
|
705 ECHO_C
|
Chris@350
|
706 DEFS
|
Chris@350
|
707 mandir
|
Chris@350
|
708 localedir
|
Chris@350
|
709 libdir
|
Chris@350
|
710 psdir
|
Chris@350
|
711 pdfdir
|
Chris@350
|
712 dvidir
|
Chris@350
|
713 htmldir
|
Chris@350
|
714 infodir
|
Chris@350
|
715 docdir
|
Chris@350
|
716 oldincludedir
|
Chris@350
|
717 includedir
|
Chris@350
|
718 localstatedir
|
Chris@350
|
719 sharedstatedir
|
Chris@350
|
720 sysconfdir
|
Chris@350
|
721 datadir
|
Chris@350
|
722 datarootdir
|
Chris@350
|
723 libexecdir
|
Chris@350
|
724 sbindir
|
Chris@350
|
725 bindir
|
Chris@350
|
726 program_transform_name
|
Chris@350
|
727 prefix
|
Chris@350
|
728 exec_prefix
|
Chris@350
|
729 PACKAGE_URL
|
Chris@350
|
730 PACKAGE_BUGREPORT
|
Chris@350
|
731 PACKAGE_STRING
|
Chris@350
|
732 PACKAGE_VERSION
|
Chris@350
|
733 PACKAGE_TARNAME
|
Chris@350
|
734 PACKAGE_NAME
|
Chris@350
|
735 PATH_SEPARATOR
|
Chris@350
|
736 SHELL'
|
Chris@350
|
737 ac_subst_files=''
|
Chris@350
|
738 ac_user_opts='
|
Chris@350
|
739 enable_option_checking
|
Chris@350
|
740 enable_debug
|
Chris@350
|
741 '
|
Chris@350
|
742 ac_precious_vars='build_alias
|
Chris@350
|
743 host_alias
|
Chris@350
|
744 target_alias
|
Chris@350
|
745 CC
|
Chris@350
|
746 CFLAGS
|
Chris@350
|
747 LDFLAGS
|
Chris@350
|
748 LIBS
|
Chris@350
|
749 CPPFLAGS
|
Chris@350
|
750 CXX
|
Chris@350
|
751 CXXFLAGS
|
Chris@350
|
752 CCC
|
Chris@350
|
753 CXXCPP
|
Chris@350
|
754 PKG_CONFIG
|
Chris@594
|
755 PKG_CONFIG_PATH
|
Chris@594
|
756 PKG_CONFIG_LIBDIR
|
Chris@350
|
757 bz2_CFLAGS
|
Chris@350
|
758 bz2_LIBS
|
Chris@350
|
759 fftw3_CFLAGS
|
Chris@350
|
760 fftw3_LIBS
|
Chris@350
|
761 fftw3f_CFLAGS
|
Chris@350
|
762 fftw3f_LIBS
|
Chris@350
|
763 sndfile_CFLAGS
|
Chris@350
|
764 sndfile_LIBS
|
Chris@350
|
765 samplerate_CFLAGS
|
Chris@350
|
766 samplerate_LIBS
|
Chris@350
|
767 vamp_CFLAGS
|
Chris@350
|
768 vamp_LIBS
|
Chris@350
|
769 vamphostsdk_CFLAGS
|
Chris@350
|
770 vamphostsdk_LIBS
|
Chris@350
|
771 rubberband_CFLAGS
|
Chris@350
|
772 rubberband_LIBS
|
Chris@572
|
773 sord_CFLAGS
|
Chris@572
|
774 sord_LIBS
|
Chris@572
|
775 serd_CFLAGS
|
Chris@572
|
776 serd_LIBS
|
Chris@350
|
777 liblo_CFLAGS
|
Chris@350
|
778 liblo_LIBS
|
Chris@358
|
779 portaudio_2_0_CFLAGS
|
Chris@358
|
780 portaudio_2_0_LIBS
|
Chris@350
|
781 JACK_CFLAGS
|
Chris@350
|
782 JACK_LIBS
|
Chris@350
|
783 libpulse_CFLAGS
|
Chris@350
|
784 libpulse_LIBS
|
Chris@350
|
785 lrdf_CFLAGS
|
Chris@350
|
786 lrdf_LIBS
|
Chris@350
|
787 oggz_CFLAGS
|
Chris@350
|
788 oggz_LIBS
|
Chris@350
|
789 fishsound_CFLAGS
|
Chris@350
|
790 fishsound_LIBS
|
Chris@350
|
791 mad_CFLAGS
|
Chris@350
|
792 mad_LIBS
|
Chris@350
|
793 id3tag_CFLAGS
|
Chris@488
|
794 id3tag_LIBS
|
Chris@488
|
795 X11_CFLAGS
|
Chris@488
|
796 X11_LIBS'
|
Chris@517
|
797 ac_subdirs_all='svcore svgui svapp'
|
Chris@350
|
798
|
Chris@350
|
799 # Initialize some variables set by options.
|
Chris@350
|
800 ac_init_help=
|
Chris@350
|
801 ac_init_version=false
|
Chris@350
|
802 ac_unrecognized_opts=
|
Chris@350
|
803 ac_unrecognized_sep=
|
Chris@350
|
804 # The variables have the same names as the options, with
|
Chris@350
|
805 # dashes changed to underlines.
|
Chris@350
|
806 cache_file=/dev/null
|
Chris@350
|
807 exec_prefix=NONE
|
Chris@350
|
808 no_create=
|
Chris@350
|
809 no_recursion=
|
Chris@350
|
810 prefix=NONE
|
Chris@350
|
811 program_prefix=NONE
|
Chris@350
|
812 program_suffix=NONE
|
Chris@350
|
813 program_transform_name=s,x,x,
|
Chris@350
|
814 silent=
|
Chris@350
|
815 site=
|
Chris@350
|
816 srcdir=
|
Chris@350
|
817 verbose=
|
Chris@350
|
818 x_includes=NONE
|
Chris@350
|
819 x_libraries=NONE
|
Chris@350
|
820
|
Chris@350
|
821 # Installation directory options.
|
Chris@350
|
822 # These are left unexpanded so users can "make install exec_prefix=/foo"
|
Chris@350
|
823 # and all the variables that are supposed to be based on exec_prefix
|
Chris@350
|
824 # by default will actually change.
|
Chris@350
|
825 # Use braces instead of parens because sh, perl, etc. also accept them.
|
Chris@350
|
826 # (The list follows the same order as the GNU Coding Standards.)
|
Chris@350
|
827 bindir='${exec_prefix}/bin'
|
Chris@350
|
828 sbindir='${exec_prefix}/sbin'
|
Chris@350
|
829 libexecdir='${exec_prefix}/libexec'
|
Chris@350
|
830 datarootdir='${prefix}/share'
|
Chris@350
|
831 datadir='${datarootdir}'
|
Chris@350
|
832 sysconfdir='${prefix}/etc'
|
Chris@350
|
833 sharedstatedir='${prefix}/com'
|
Chris@350
|
834 localstatedir='${prefix}/var'
|
Chris@350
|
835 includedir='${prefix}/include'
|
Chris@350
|
836 oldincludedir='/usr/include'
|
Chris@350
|
837 docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
|
Chris@350
|
838 infodir='${datarootdir}/info'
|
Chris@350
|
839 htmldir='${docdir}'
|
Chris@350
|
840 dvidir='${docdir}'
|
Chris@350
|
841 pdfdir='${docdir}'
|
Chris@350
|
842 psdir='${docdir}'
|
Chris@350
|
843 libdir='${exec_prefix}/lib'
|
Chris@350
|
844 localedir='${datarootdir}/locale'
|
Chris@350
|
845 mandir='${datarootdir}/man'
|
Chris@350
|
846
|
Chris@350
|
847 ac_prev=
|
Chris@350
|
848 ac_dashdash=
|
Chris@350
|
849 for ac_option
|
Chris@350
|
850 do
|
Chris@350
|
851 # If the previous option needs an argument, assign it.
|
Chris@350
|
852 if test -n "$ac_prev"; then
|
Chris@350
|
853 eval $ac_prev=\$ac_option
|
Chris@350
|
854 ac_prev=
|
Chris@350
|
855 continue
|
Chris@350
|
856 fi
|
Chris@350
|
857
|
Chris@350
|
858 case $ac_option in
|
Chris@594
|
859 *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
|
Chris@594
|
860 *=) ac_optarg= ;;
|
Chris@594
|
861 *) ac_optarg=yes ;;
|
Chris@350
|
862 esac
|
Chris@350
|
863
|
Chris@350
|
864 # Accept the important Cygnus configure options, so we can diagnose typos.
|
Chris@350
|
865
|
Chris@350
|
866 case $ac_dashdash$ac_option in
|
Chris@350
|
867 --)
|
Chris@350
|
868 ac_dashdash=yes ;;
|
Chris@350
|
869
|
Chris@350
|
870 -bindir | --bindir | --bindi | --bind | --bin | --bi)
|
Chris@350
|
871 ac_prev=bindir ;;
|
Chris@350
|
872 -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
|
Chris@350
|
873 bindir=$ac_optarg ;;
|
Chris@350
|
874
|
Chris@350
|
875 -build | --build | --buil | --bui | --bu)
|
Chris@350
|
876 ac_prev=build_alias ;;
|
Chris@350
|
877 -build=* | --build=* | --buil=* | --bui=* | --bu=*)
|
Chris@350
|
878 build_alias=$ac_optarg ;;
|
Chris@350
|
879
|
Chris@350
|
880 -cache-file | --cache-file | --cache-fil | --cache-fi \
|
Chris@350
|
881 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
|
Chris@350
|
882 ac_prev=cache_file ;;
|
Chris@350
|
883 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
|
Chris@350
|
884 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
|
Chris@350
|
885 cache_file=$ac_optarg ;;
|
Chris@350
|
886
|
Chris@350
|
887 --config-cache | -C)
|
Chris@350
|
888 cache_file=config.cache ;;
|
Chris@350
|
889
|
Chris@350
|
890 -datadir | --datadir | --datadi | --datad)
|
Chris@350
|
891 ac_prev=datadir ;;
|
Chris@350
|
892 -datadir=* | --datadir=* | --datadi=* | --datad=*)
|
Chris@350
|
893 datadir=$ac_optarg ;;
|
Chris@350
|
894
|
Chris@350
|
895 -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
|
Chris@350
|
896 | --dataroo | --dataro | --datar)
|
Chris@350
|
897 ac_prev=datarootdir ;;
|
Chris@350
|
898 -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
|
Chris@350
|
899 | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
|
Chris@350
|
900 datarootdir=$ac_optarg ;;
|
Chris@350
|
901
|
Chris@350
|
902 -disable-* | --disable-*)
|
Chris@350
|
903 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
|
Chris@350
|
904 # Reject names that are not valid shell variable names.
|
Chris@350
|
905 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
|
Chris@594
|
906 as_fn_error $? "invalid feature name: $ac_useropt"
|
Chris@350
|
907 ac_useropt_orig=$ac_useropt
|
Chris@350
|
908 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
|
Chris@350
|
909 case $ac_user_opts in
|
Chris@350
|
910 *"
|
Chris@350
|
911 "enable_$ac_useropt"
|
Chris@350
|
912 "*) ;;
|
Chris@350
|
913 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
|
Chris@350
|
914 ac_unrecognized_sep=', ';;
|
Chris@350
|
915 esac
|
Chris@350
|
916 eval enable_$ac_useropt=no ;;
|
Chris@350
|
917
|
Chris@350
|
918 -docdir | --docdir | --docdi | --doc | --do)
|
Chris@350
|
919 ac_prev=docdir ;;
|
Chris@350
|
920 -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
|
Chris@350
|
921 docdir=$ac_optarg ;;
|
Chris@350
|
922
|
Chris@350
|
923 -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
|
Chris@350
|
924 ac_prev=dvidir ;;
|
Chris@350
|
925 -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
|
Chris@350
|
926 dvidir=$ac_optarg ;;
|
Chris@350
|
927
|
Chris@350
|
928 -enable-* | --enable-*)
|
Chris@350
|
929 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
|
Chris@350
|
930 # Reject names that are not valid shell variable names.
|
Chris@350
|
931 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
|
Chris@594
|
932 as_fn_error $? "invalid feature name: $ac_useropt"
|
Chris@350
|
933 ac_useropt_orig=$ac_useropt
|
Chris@350
|
934 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
|
Chris@350
|
935 case $ac_user_opts in
|
Chris@350
|
936 *"
|
Chris@350
|
937 "enable_$ac_useropt"
|
Chris@350
|
938 "*) ;;
|
Chris@350
|
939 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
|
Chris@350
|
940 ac_unrecognized_sep=', ';;
|
Chris@350
|
941 esac
|
Chris@350
|
942 eval enable_$ac_useropt=\$ac_optarg ;;
|
Chris@350
|
943
|
Chris@350
|
944 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
|
Chris@350
|
945 | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
|
Chris@350
|
946 | --exec | --exe | --ex)
|
Chris@350
|
947 ac_prev=exec_prefix ;;
|
Chris@350
|
948 -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
|
Chris@350
|
949 | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
|
Chris@350
|
950 | --exec=* | --exe=* | --ex=*)
|
Chris@350
|
951 exec_prefix=$ac_optarg ;;
|
Chris@350
|
952
|
Chris@350
|
953 -gas | --gas | --ga | --g)
|
Chris@350
|
954 # Obsolete; use --with-gas.
|
Chris@350
|
955 with_gas=yes ;;
|
Chris@350
|
956
|
Chris@350
|
957 -help | --help | --hel | --he | -h)
|
Chris@350
|
958 ac_init_help=long ;;
|
Chris@350
|
959 -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
|
Chris@350
|
960 ac_init_help=recursive ;;
|
Chris@350
|
961 -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
|
Chris@350
|
962 ac_init_help=short ;;
|
Chris@350
|
963
|
Chris@350
|
964 -host | --host | --hos | --ho)
|
Chris@350
|
965 ac_prev=host_alias ;;
|
Chris@350
|
966 -host=* | --host=* | --hos=* | --ho=*)
|
Chris@350
|
967 host_alias=$ac_optarg ;;
|
Chris@350
|
968
|
Chris@350
|
969 -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
|
Chris@350
|
970 ac_prev=htmldir ;;
|
Chris@350
|
971 -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
|
Chris@350
|
972 | --ht=*)
|
Chris@350
|
973 htmldir=$ac_optarg ;;
|
Chris@350
|
974
|
Chris@350
|
975 -includedir | --includedir | --includedi | --included | --include \
|
Chris@350
|
976 | --includ | --inclu | --incl | --inc)
|
Chris@350
|
977 ac_prev=includedir ;;
|
Chris@350
|
978 -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
|
Chris@350
|
979 | --includ=* | --inclu=* | --incl=* | --inc=*)
|
Chris@350
|
980 includedir=$ac_optarg ;;
|
Chris@350
|
981
|
Chris@350
|
982 -infodir | --infodir | --infodi | --infod | --info | --inf)
|
Chris@350
|
983 ac_prev=infodir ;;
|
Chris@350
|
984 -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
|
Chris@350
|
985 infodir=$ac_optarg ;;
|
Chris@350
|
986
|
Chris@350
|
987 -libdir | --libdir | --libdi | --libd)
|
Chris@350
|
988 ac_prev=libdir ;;
|
Chris@350
|
989 -libdir=* | --libdir=* | --libdi=* | --libd=*)
|
Chris@350
|
990 libdir=$ac_optarg ;;
|
Chris@350
|
991
|
Chris@350
|
992 -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
|
Chris@350
|
993 | --libexe | --libex | --libe)
|
Chris@350
|
994 ac_prev=libexecdir ;;
|
Chris@350
|
995 -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
|
Chris@350
|
996 | --libexe=* | --libex=* | --libe=*)
|
Chris@350
|
997 libexecdir=$ac_optarg ;;
|
Chris@350
|
998
|
Chris@350
|
999 -localedir | --localedir | --localedi | --localed | --locale)
|
Chris@350
|
1000 ac_prev=localedir ;;
|
Chris@350
|
1001 -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
|
Chris@350
|
1002 localedir=$ac_optarg ;;
|
Chris@350
|
1003
|
Chris@350
|
1004 -localstatedir | --localstatedir | --localstatedi | --localstated \
|
Chris@350
|
1005 | --localstate | --localstat | --localsta | --localst | --locals)
|
Chris@350
|
1006 ac_prev=localstatedir ;;
|
Chris@350
|
1007 -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
|
Chris@350
|
1008 | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
|
Chris@350
|
1009 localstatedir=$ac_optarg ;;
|
Chris@350
|
1010
|
Chris@350
|
1011 -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
|
Chris@350
|
1012 ac_prev=mandir ;;
|
Chris@350
|
1013 -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
|
Chris@350
|
1014 mandir=$ac_optarg ;;
|
Chris@350
|
1015
|
Chris@350
|
1016 -nfp | --nfp | --nf)
|
Chris@350
|
1017 # Obsolete; use --without-fp.
|
Chris@350
|
1018 with_fp=no ;;
|
Chris@350
|
1019
|
Chris@350
|
1020 -no-create | --no-create | --no-creat | --no-crea | --no-cre \
|
Chris@350
|
1021 | --no-cr | --no-c | -n)
|
Chris@350
|
1022 no_create=yes ;;
|
Chris@350
|
1023
|
Chris@350
|
1024 -no-recursion | --no-recursion | --no-recursio | --no-recursi \
|
Chris@350
|
1025 | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
|
Chris@350
|
1026 no_recursion=yes ;;
|
Chris@350
|
1027
|
Chris@350
|
1028 -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
|
Chris@350
|
1029 | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
|
Chris@350
|
1030 | --oldin | --oldi | --old | --ol | --o)
|
Chris@350
|
1031 ac_prev=oldincludedir ;;
|
Chris@350
|
1032 -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
|
Chris@350
|
1033 | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
|
Chris@350
|
1034 | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
|
Chris@350
|
1035 oldincludedir=$ac_optarg ;;
|
Chris@350
|
1036
|
Chris@350
|
1037 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
|
Chris@350
|
1038 ac_prev=prefix ;;
|
Chris@350
|
1039 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
|
Chris@350
|
1040 prefix=$ac_optarg ;;
|
Chris@350
|
1041
|
Chris@350
|
1042 -program-prefix | --program-prefix | --program-prefi | --program-pref \
|
Chris@350
|
1043 | --program-pre | --program-pr | --program-p)
|
Chris@350
|
1044 ac_prev=program_prefix ;;
|
Chris@350
|
1045 -program-prefix=* | --program-prefix=* | --program-prefi=* \
|
Chris@350
|
1046 | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
|
Chris@350
|
1047 program_prefix=$ac_optarg ;;
|
Chris@350
|
1048
|
Chris@350
|
1049 -program-suffix | --program-suffix | --program-suffi | --program-suff \
|
Chris@350
|
1050 | --program-suf | --program-su | --program-s)
|
Chris@350
|
1051 ac_prev=program_suffix ;;
|
Chris@350
|
1052 -program-suffix=* | --program-suffix=* | --program-suffi=* \
|
Chris@350
|
1053 | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
|
Chris@350
|
1054 program_suffix=$ac_optarg ;;
|
Chris@350
|
1055
|
Chris@350
|
1056 -program-transform-name | --program-transform-name \
|
Chris@350
|
1057 | --program-transform-nam | --program-transform-na \
|
Chris@350
|
1058 | --program-transform-n | --program-transform- \
|
Chris@350
|
1059 | --program-transform | --program-transfor \
|
Chris@350
|
1060 | --program-transfo | --program-transf \
|
Chris@350
|
1061 | --program-trans | --program-tran \
|
Chris@350
|
1062 | --progr-tra | --program-tr | --program-t)
|
Chris@350
|
1063 ac_prev=program_transform_name ;;
|
Chris@350
|
1064 -program-transform-name=* | --program-transform-name=* \
|
Chris@350
|
1065 | --program-transform-nam=* | --program-transform-na=* \
|
Chris@350
|
1066 | --program-transform-n=* | --program-transform-=* \
|
Chris@350
|
1067 | --program-transform=* | --program-transfor=* \
|
Chris@350
|
1068 | --program-transfo=* | --program-transf=* \
|
Chris@350
|
1069 | --program-trans=* | --program-tran=* \
|
Chris@350
|
1070 | --progr-tra=* | --program-tr=* | --program-t=*)
|
Chris@350
|
1071 program_transform_name=$ac_optarg ;;
|
Chris@350
|
1072
|
Chris@350
|
1073 -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
|
Chris@350
|
1074 ac_prev=pdfdir ;;
|
Chris@350
|
1075 -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
|
Chris@350
|
1076 pdfdir=$ac_optarg ;;
|
Chris@350
|
1077
|
Chris@350
|
1078 -psdir | --psdir | --psdi | --psd | --ps)
|
Chris@350
|
1079 ac_prev=psdir ;;
|
Chris@350
|
1080 -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
|
Chris@350
|
1081 psdir=$ac_optarg ;;
|
Chris@350
|
1082
|
Chris@350
|
1083 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
Chris@350
|
1084 | -silent | --silent | --silen | --sile | --sil)
|
Chris@350
|
1085 silent=yes ;;
|
Chris@350
|
1086
|
Chris@350
|
1087 -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
|
Chris@350
|
1088 ac_prev=sbindir ;;
|
Chris@350
|
1089 -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
|
Chris@350
|
1090 | --sbi=* | --sb=*)
|
Chris@350
|
1091 sbindir=$ac_optarg ;;
|
Chris@350
|
1092
|
Chris@350
|
1093 -sharedstatedir | --sharedstatedir | --sharedstatedi \
|
Chris@350
|
1094 | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
|
Chris@350
|
1095 | --sharedst | --shareds | --shared | --share | --shar \
|
Chris@350
|
1096 | --sha | --sh)
|
Chris@350
|
1097 ac_prev=sharedstatedir ;;
|
Chris@350
|
1098 -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
|
Chris@350
|
1099 | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
|
Chris@350
|
1100 | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
|
Chris@350
|
1101 | --sha=* | --sh=*)
|
Chris@350
|
1102 sharedstatedir=$ac_optarg ;;
|
Chris@350
|
1103
|
Chris@350
|
1104 -site | --site | --sit)
|
Chris@350
|
1105 ac_prev=site ;;
|
Chris@350
|
1106 -site=* | --site=* | --sit=*)
|
Chris@350
|
1107 site=$ac_optarg ;;
|
Chris@350
|
1108
|
Chris@350
|
1109 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
|
Chris@350
|
1110 ac_prev=srcdir ;;
|
Chris@350
|
1111 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
|
Chris@350
|
1112 srcdir=$ac_optarg ;;
|
Chris@350
|
1113
|
Chris@350
|
1114 -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
|
Chris@350
|
1115 | --syscon | --sysco | --sysc | --sys | --sy)
|
Chris@350
|
1116 ac_prev=sysconfdir ;;
|
Chris@350
|
1117 -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
|
Chris@350
|
1118 | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
|
Chris@350
|
1119 sysconfdir=$ac_optarg ;;
|
Chris@350
|
1120
|
Chris@350
|
1121 -target | --target | --targe | --targ | --tar | --ta | --t)
|
Chris@350
|
1122 ac_prev=target_alias ;;
|
Chris@350
|
1123 -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
|
Chris@350
|
1124 target_alias=$ac_optarg ;;
|
Chris@350
|
1125
|
Chris@350
|
1126 -v | -verbose | --verbose | --verbos | --verbo | --verb)
|
Chris@350
|
1127 verbose=yes ;;
|
Chris@350
|
1128
|
Chris@350
|
1129 -version | --version | --versio | --versi | --vers | -V)
|
Chris@350
|
1130 ac_init_version=: ;;
|
Chris@350
|
1131
|
Chris@350
|
1132 -with-* | --with-*)
|
Chris@350
|
1133 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
|
Chris@350
|
1134 # Reject names that are not valid shell variable names.
|
Chris@350
|
1135 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
|
Chris@594
|
1136 as_fn_error $? "invalid package name: $ac_useropt"
|
Chris@350
|
1137 ac_useropt_orig=$ac_useropt
|
Chris@350
|
1138 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
|
Chris@350
|
1139 case $ac_user_opts in
|
Chris@350
|
1140 *"
|
Chris@350
|
1141 "with_$ac_useropt"
|
Chris@350
|
1142 "*) ;;
|
Chris@350
|
1143 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
|
Chris@350
|
1144 ac_unrecognized_sep=', ';;
|
Chris@350
|
1145 esac
|
Chris@350
|
1146 eval with_$ac_useropt=\$ac_optarg ;;
|
Chris@350
|
1147
|
Chris@350
|
1148 -without-* | --without-*)
|
Chris@350
|
1149 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
|
Chris@350
|
1150 # Reject names that are not valid shell variable names.
|
Chris@350
|
1151 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
|
Chris@594
|
1152 as_fn_error $? "invalid package name: $ac_useropt"
|
Chris@350
|
1153 ac_useropt_orig=$ac_useropt
|
Chris@350
|
1154 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
|
Chris@350
|
1155 case $ac_user_opts in
|
Chris@350
|
1156 *"
|
Chris@350
|
1157 "with_$ac_useropt"
|
Chris@350
|
1158 "*) ;;
|
Chris@350
|
1159 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
|
Chris@350
|
1160 ac_unrecognized_sep=', ';;
|
Chris@350
|
1161 esac
|
Chris@350
|
1162 eval with_$ac_useropt=no ;;
|
Chris@350
|
1163
|
Chris@350
|
1164 --x)
|
Chris@350
|
1165 # Obsolete; use --with-x.
|
Chris@350
|
1166 with_x=yes ;;
|
Chris@350
|
1167
|
Chris@350
|
1168 -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
|
Chris@350
|
1169 | --x-incl | --x-inc | --x-in | --x-i)
|
Chris@350
|
1170 ac_prev=x_includes ;;
|
Chris@350
|
1171 -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
|
Chris@350
|
1172 | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
|
Chris@350
|
1173 x_includes=$ac_optarg ;;
|
Chris@350
|
1174
|
Chris@350
|
1175 -x-libraries | --x-libraries | --x-librarie | --x-librari \
|
Chris@350
|
1176 | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
|
Chris@350
|
1177 ac_prev=x_libraries ;;
|
Chris@350
|
1178 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
|
Chris@350
|
1179 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
|
Chris@350
|
1180 x_libraries=$ac_optarg ;;
|
Chris@350
|
1181
|
Chris@594
|
1182 -*) as_fn_error $? "unrecognized option: \`$ac_option'
|
Chris@594
|
1183 Try \`$0 --help' for more information"
|
Chris@350
|
1184 ;;
|
Chris@350
|
1185
|
Chris@350
|
1186 *=*)
|
Chris@350
|
1187 ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
|
Chris@350
|
1188 # Reject names that are not valid shell variable names.
|
Chris@350
|
1189 case $ac_envvar in #(
|
Chris@350
|
1190 '' | [0-9]* | *[!_$as_cr_alnum]* )
|
Chris@594
|
1191 as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
|
Chris@350
|
1192 esac
|
Chris@350
|
1193 eval $ac_envvar=\$ac_optarg
|
Chris@350
|
1194 export $ac_envvar ;;
|
Chris@350
|
1195
|
Chris@350
|
1196 *)
|
Chris@350
|
1197 # FIXME: should be removed in autoconf 3.0.
|
Chris@350
|
1198 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
|
Chris@350
|
1199 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
|
Chris@350
|
1200 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
|
Chris@594
|
1201 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
|
Chris@350
|
1202 ;;
|
Chris@350
|
1203
|
Chris@350
|
1204 esac
|
Chris@350
|
1205 done
|
Chris@350
|
1206
|
Chris@350
|
1207 if test -n "$ac_prev"; then
|
Chris@350
|
1208 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
|
Chris@594
|
1209 as_fn_error $? "missing argument to $ac_option"
|
Chris@350
|
1210 fi
|
Chris@350
|
1211
|
Chris@350
|
1212 if test -n "$ac_unrecognized_opts"; then
|
Chris@350
|
1213 case $enable_option_checking in
|
Chris@350
|
1214 no) ;;
|
Chris@594
|
1215 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
|
Chris@350
|
1216 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
|
Chris@350
|
1217 esac
|
Chris@350
|
1218 fi
|
Chris@350
|
1219
|
Chris@350
|
1220 # Check all directory arguments for consistency.
|
Chris@350
|
1221 for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
|
Chris@350
|
1222 datadir sysconfdir sharedstatedir localstatedir includedir \
|
Chris@350
|
1223 oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
|
Chris@350
|
1224 libdir localedir mandir
|
Chris@350
|
1225 do
|
Chris@350
|
1226 eval ac_val=\$$ac_var
|
Chris@350
|
1227 # Remove trailing slashes.
|
Chris@350
|
1228 case $ac_val in
|
Chris@350
|
1229 */ )
|
Chris@350
|
1230 ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
|
Chris@350
|
1231 eval $ac_var=\$ac_val;;
|
Chris@350
|
1232 esac
|
Chris@350
|
1233 # Be sure to have absolute directory names.
|
Chris@350
|
1234 case $ac_val in
|
Chris@350
|
1235 [\\/$]* | ?:[\\/]* ) continue;;
|
Chris@350
|
1236 NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
|
Chris@350
|
1237 esac
|
Chris@594
|
1238 as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
|
Chris@350
|
1239 done
|
Chris@350
|
1240
|
Chris@350
|
1241 # There might be people who depend on the old broken behavior: `$host'
|
Chris@350
|
1242 # used to hold the argument of --host etc.
|
Chris@350
|
1243 # FIXME: To remove some day.
|
Chris@350
|
1244 build=$build_alias
|
Chris@350
|
1245 host=$host_alias
|
Chris@350
|
1246 target=$target_alias
|
Chris@350
|
1247
|
Chris@350
|
1248 # FIXME: To remove some day.
|
Chris@350
|
1249 if test "x$host_alias" != x; then
|
Chris@350
|
1250 if test "x$build_alias" = x; then
|
Chris@350
|
1251 cross_compiling=maybe
|
Chris@350
|
1252 elif test "x$build_alias" != "x$host_alias"; then
|
Chris@350
|
1253 cross_compiling=yes
|
Chris@350
|
1254 fi
|
Chris@350
|
1255 fi
|
Chris@350
|
1256
|
Chris@350
|
1257 ac_tool_prefix=
|
Chris@350
|
1258 test -n "$host_alias" && ac_tool_prefix=$host_alias-
|
Chris@350
|
1259
|
Chris@350
|
1260 test "$silent" = yes && exec 6>/dev/null
|
Chris@350
|
1261
|
Chris@350
|
1262
|
Chris@350
|
1263 ac_pwd=`pwd` && test -n "$ac_pwd" &&
|
Chris@350
|
1264 ac_ls_di=`ls -di .` &&
|
Chris@350
|
1265 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
|
Chris@594
|
1266 as_fn_error $? "working directory cannot be determined"
|
Chris@350
|
1267 test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
|
Chris@594
|
1268 as_fn_error $? "pwd does not report name of working directory"
|
Chris@350
|
1269
|
Chris@350
|
1270
|
Chris@350
|
1271 # Find the source files, if location was not specified.
|
Chris@350
|
1272 if test -z "$srcdir"; then
|
Chris@350
|
1273 ac_srcdir_defaulted=yes
|
Chris@350
|
1274 # Try the directory containing this script, then the parent directory.
|
Chris@350
|
1275 ac_confdir=`$as_dirname -- "$as_myself" ||
|
Chris@350
|
1276 $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
Chris@350
|
1277 X"$as_myself" : 'X\(//\)[^/]' \| \
|
Chris@350
|
1278 X"$as_myself" : 'X\(//\)$' \| \
|
Chris@350
|
1279 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
|
Chris@350
|
1280 $as_echo X"$as_myself" |
|
Chris@350
|
1281 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
Chris@350
|
1282 s//\1/
|
Chris@350
|
1283 q
|
Chris@350
|
1284 }
|
Chris@350
|
1285 /^X\(\/\/\)[^/].*/{
|
Chris@350
|
1286 s//\1/
|
Chris@350
|
1287 q
|
Chris@350
|
1288 }
|
Chris@350
|
1289 /^X\(\/\/\)$/{
|
Chris@350
|
1290 s//\1/
|
Chris@350
|
1291 q
|
Chris@350
|
1292 }
|
Chris@350
|
1293 /^X\(\/\).*/{
|
Chris@350
|
1294 s//\1/
|
Chris@350
|
1295 q
|
Chris@350
|
1296 }
|
Chris@350
|
1297 s/.*/./; q'`
|
Chris@350
|
1298 srcdir=$ac_confdir
|
Chris@350
|
1299 if test ! -r "$srcdir/$ac_unique_file"; then
|
Chris@350
|
1300 srcdir=..
|
Chris@350
|
1301 fi
|
Chris@350
|
1302 else
|
Chris@350
|
1303 ac_srcdir_defaulted=no
|
Chris@350
|
1304 fi
|
Chris@350
|
1305 if test ! -r "$srcdir/$ac_unique_file"; then
|
Chris@350
|
1306 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
|
Chris@594
|
1307 as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
|
Chris@350
|
1308 fi
|
Chris@350
|
1309 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
|
Chris@350
|
1310 ac_abs_confdir=`(
|
Chris@594
|
1311 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
|
Chris@350
|
1312 pwd)`
|
Chris@350
|
1313 # When building in place, set srcdir=.
|
Chris@350
|
1314 if test "$ac_abs_confdir" = "$ac_pwd"; then
|
Chris@350
|
1315 srcdir=.
|
Chris@350
|
1316 fi
|
Chris@350
|
1317 # Remove unnecessary trailing slashes from srcdir.
|
Chris@350
|
1318 # Double slashes in file names in object file debugging info
|
Chris@350
|
1319 # mess up M-x gdb in Emacs.
|
Chris@350
|
1320 case $srcdir in
|
Chris@350
|
1321 */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
|
Chris@350
|
1322 esac
|
Chris@350
|
1323 for ac_var in $ac_precious_vars; do
|
Chris@350
|
1324 eval ac_env_${ac_var}_set=\${${ac_var}+set}
|
Chris@350
|
1325 eval ac_env_${ac_var}_value=\$${ac_var}
|
Chris@350
|
1326 eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
|
Chris@350
|
1327 eval ac_cv_env_${ac_var}_value=\$${ac_var}
|
Chris@350
|
1328 done
|
Chris@350
|
1329
|
Chris@350
|
1330 #
|
Chris@350
|
1331 # Report the --help message.
|
Chris@350
|
1332 #
|
Chris@350
|
1333 if test "$ac_init_help" = "long"; then
|
Chris@350
|
1334 # Omit some internal or obsolete options to make the list less imposing.
|
Chris@350
|
1335 # This message is too long to be a string in the A/UX 3.1 sh.
|
Chris@350
|
1336 cat <<_ACEOF
|
Chris@884
|
1337 \`configure' configures Sonic Visualiser 2.4.1 to adapt to many kinds of systems.
|
Chris@350
|
1338
|
Chris@350
|
1339 Usage: $0 [OPTION]... [VAR=VALUE]...
|
Chris@350
|
1340
|
Chris@350
|
1341 To assign environment variables (e.g., CC, CFLAGS...), specify them as
|
Chris@350
|
1342 VAR=VALUE. See below for descriptions of some of the useful variables.
|
Chris@350
|
1343
|
Chris@350
|
1344 Defaults for the options are specified in brackets.
|
Chris@350
|
1345
|
Chris@350
|
1346 Configuration:
|
Chris@350
|
1347 -h, --help display this help and exit
|
Chris@350
|
1348 --help=short display options specific to this package
|
Chris@350
|
1349 --help=recursive display the short help of all the included packages
|
Chris@350
|
1350 -V, --version display version information and exit
|
Chris@594
|
1351 -q, --quiet, --silent do not print \`checking ...' messages
|
Chris@350
|
1352 --cache-file=FILE cache test results in FILE [disabled]
|
Chris@350
|
1353 -C, --config-cache alias for \`--cache-file=config.cache'
|
Chris@350
|
1354 -n, --no-create do not create output files
|
Chris@350
|
1355 --srcdir=DIR find the sources in DIR [configure dir or \`..']
|
Chris@350
|
1356
|
Chris@350
|
1357 Installation directories:
|
Chris@350
|
1358 --prefix=PREFIX install architecture-independent files in PREFIX
|
Chris@350
|
1359 [$ac_default_prefix]
|
Chris@350
|
1360 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
|
Chris@350
|
1361 [PREFIX]
|
Chris@350
|
1362
|
Chris@350
|
1363 By default, \`make install' will install all the files in
|
Chris@350
|
1364 \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
|
Chris@350
|
1365 an installation prefix other than \`$ac_default_prefix' using \`--prefix',
|
Chris@350
|
1366 for instance \`--prefix=\$HOME'.
|
Chris@350
|
1367
|
Chris@350
|
1368 For better control, use the options below.
|
Chris@350
|
1369
|
Chris@350
|
1370 Fine tuning of the installation directories:
|
Chris@350
|
1371 --bindir=DIR user executables [EPREFIX/bin]
|
Chris@350
|
1372 --sbindir=DIR system admin executables [EPREFIX/sbin]
|
Chris@350
|
1373 --libexecdir=DIR program executables [EPREFIX/libexec]
|
Chris@350
|
1374 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
|
Chris@350
|
1375 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
|
Chris@350
|
1376 --localstatedir=DIR modifiable single-machine data [PREFIX/var]
|
Chris@350
|
1377 --libdir=DIR object code libraries [EPREFIX/lib]
|
Chris@350
|
1378 --includedir=DIR C header files [PREFIX/include]
|
Chris@350
|
1379 --oldincludedir=DIR C header files for non-gcc [/usr/include]
|
Chris@350
|
1380 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
|
Chris@350
|
1381 --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
|
Chris@350
|
1382 --infodir=DIR info documentation [DATAROOTDIR/info]
|
Chris@350
|
1383 --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
|
Chris@350
|
1384 --mandir=DIR man documentation [DATAROOTDIR/man]
|
Chris@351
|
1385 --docdir=DIR documentation root
|
Chris@351
|
1386 [DATAROOTDIR/doc/sonic-visualiser]
|
Chris@350
|
1387 --htmldir=DIR html documentation [DOCDIR]
|
Chris@350
|
1388 --dvidir=DIR dvi documentation [DOCDIR]
|
Chris@350
|
1389 --pdfdir=DIR pdf documentation [DOCDIR]
|
Chris@350
|
1390 --psdir=DIR ps documentation [DOCDIR]
|
Chris@350
|
1391 _ACEOF
|
Chris@350
|
1392
|
Chris@350
|
1393 cat <<\_ACEOF
|
Chris@350
|
1394 _ACEOF
|
Chris@350
|
1395 fi
|
Chris@350
|
1396
|
Chris@350
|
1397 if test -n "$ac_init_help"; then
|
Chris@350
|
1398 case $ac_init_help in
|
Chris@884
|
1399 short | recursive ) echo "Configuration of Sonic Visualiser 2.4.1:";;
|
Chris@350
|
1400 esac
|
Chris@350
|
1401 cat <<\_ACEOF
|
Chris@350
|
1402
|
Chris@350
|
1403 Optional Features:
|
Chris@350
|
1404 --disable-option-checking ignore unrecognized --enable/--with options
|
Chris@350
|
1405 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
|
Chris@350
|
1406 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
Chris@350
|
1407 --enable-debug enable debug support [default=no]
|
Chris@350
|
1408
|
Chris@350
|
1409 Some influential environment variables:
|
Chris@350
|
1410 CC C compiler command
|
Chris@350
|
1411 CFLAGS C compiler flags
|
Chris@350
|
1412 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
|
Chris@350
|
1413 nonstandard directory <lib dir>
|
Chris@350
|
1414 LIBS libraries to pass to the linker, e.g. -l<library>
|
Chris@350
|
1415 CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
|
Chris@350
|
1416 you have headers in a nonstandard directory <include dir>
|
Chris@350
|
1417 CXX C++ compiler command
|
Chris@350
|
1418 CXXFLAGS C++ compiler flags
|
Chris@350
|
1419 CXXCPP C++ preprocessor
|
Chris@350
|
1420 PKG_CONFIG path to pkg-config utility
|
Chris@594
|
1421 PKG_CONFIG_PATH
|
Chris@594
|
1422 directories to add to pkg-config's search path
|
Chris@594
|
1423 PKG_CONFIG_LIBDIR
|
Chris@594
|
1424 path overriding pkg-config's built-in search path
|
Chris@350
|
1425 bz2_CFLAGS C compiler flags for bz2, overriding pkg-config
|
Chris@350
|
1426 bz2_LIBS linker flags for bz2, overriding pkg-config
|
Chris@350
|
1427 fftw3_CFLAGS
|
Chris@350
|
1428 C compiler flags for fftw3, overriding pkg-config
|
Chris@350
|
1429 fftw3_LIBS linker flags for fftw3, overriding pkg-config
|
Chris@350
|
1430 fftw3f_CFLAGS
|
Chris@350
|
1431 C compiler flags for fftw3f, overriding pkg-config
|
Chris@350
|
1432 fftw3f_LIBS linker flags for fftw3f, overriding pkg-config
|
Chris@350
|
1433 sndfile_CFLAGS
|
Chris@350
|
1434 C compiler flags for sndfile, overriding pkg-config
|
Chris@350
|
1435 sndfile_LIBS
|
Chris@350
|
1436 linker flags for sndfile, overriding pkg-config
|
Chris@350
|
1437 samplerate_CFLAGS
|
Chris@350
|
1438 C compiler flags for samplerate, overriding pkg-config
|
Chris@350
|
1439 samplerate_LIBS
|
Chris@350
|
1440 linker flags for samplerate, overriding pkg-config
|
Chris@350
|
1441 vamp_CFLAGS C compiler flags for vamp, overriding pkg-config
|
Chris@350
|
1442 vamp_LIBS linker flags for vamp, overriding pkg-config
|
Chris@350
|
1443 vamphostsdk_CFLAGS
|
Chris@350
|
1444 C compiler flags for vamphostsdk, overriding pkg-config
|
Chris@350
|
1445 vamphostsdk_LIBS
|
Chris@350
|
1446 linker flags for vamphostsdk, overriding pkg-config
|
Chris@350
|
1447 rubberband_CFLAGS
|
Chris@350
|
1448 C compiler flags for rubberband, overriding pkg-config
|
Chris@350
|
1449 rubberband_LIBS
|
Chris@350
|
1450 linker flags for rubberband, overriding pkg-config
|
Chris@572
|
1451 sord_CFLAGS C compiler flags for sord, overriding pkg-config
|
Chris@572
|
1452 sord_LIBS linker flags for sord, overriding pkg-config
|
Chris@572
|
1453 serd_CFLAGS C compiler flags for serd, overriding pkg-config
|
Chris@572
|
1454 serd_LIBS linker flags for serd, overriding pkg-config
|
Chris@350
|
1455 liblo_CFLAGS
|
Chris@350
|
1456 C compiler flags for liblo, overriding pkg-config
|
Chris@350
|
1457 liblo_LIBS linker flags for liblo, overriding pkg-config
|
Chris@358
|
1458 portaudio_2_0_CFLAGS
|
Chris@358
|
1459 C compiler flags for portaudio_2_0, overriding pkg-config
|
Chris@358
|
1460 portaudio_2_0_LIBS
|
Chris@358
|
1461 linker flags for portaudio_2_0, overriding pkg-config
|
Chris@350
|
1462 JACK_CFLAGS C compiler flags for JACK, overriding pkg-config
|
Chris@350
|
1463 JACK_LIBS linker flags for JACK, overriding pkg-config
|
Chris@350
|
1464 libpulse_CFLAGS
|
Chris@350
|
1465 C compiler flags for libpulse, overriding pkg-config
|
Chris@350
|
1466 libpulse_LIBS
|
Chris@350
|
1467 linker flags for libpulse, overriding pkg-config
|
Chris@350
|
1468 lrdf_CFLAGS C compiler flags for lrdf, overriding pkg-config
|
Chris@350
|
1469 lrdf_LIBS linker flags for lrdf, overriding pkg-config
|
Chris@350
|
1470 oggz_CFLAGS C compiler flags for oggz, overriding pkg-config
|
Chris@350
|
1471 oggz_LIBS linker flags for oggz, overriding pkg-config
|
Chris@350
|
1472 fishsound_CFLAGS
|
Chris@350
|
1473 C compiler flags for fishsound, overriding pkg-config
|
Chris@350
|
1474 fishsound_LIBS
|
Chris@350
|
1475 linker flags for fishsound, overriding pkg-config
|
Chris@350
|
1476 mad_CFLAGS C compiler flags for mad, overriding pkg-config
|
Chris@350
|
1477 mad_LIBS linker flags for mad, overriding pkg-config
|
Chris@350
|
1478 id3tag_CFLAGS
|
Chris@350
|
1479 C compiler flags for id3tag, overriding pkg-config
|
Chris@350
|
1480 id3tag_LIBS linker flags for id3tag, overriding pkg-config
|
Chris@488
|
1481 X11_CFLAGS C compiler flags for X11, overriding pkg-config
|
Chris@488
|
1482 X11_LIBS linker flags for X11, overriding pkg-config
|
Chris@350
|
1483
|
Chris@350
|
1484 Use these variables to override the choices made by `configure' or to help
|
Chris@350
|
1485 it to find libraries and programs with nonstandard names/locations.
|
Chris@350
|
1486
|
Chris@350
|
1487 Report bugs to <cannam@all-day-breakfast.com>.
|
Chris@350
|
1488 _ACEOF
|
Chris@350
|
1489 ac_status=$?
|
Chris@350
|
1490 fi
|
Chris@350
|
1491
|
Chris@350
|
1492 if test "$ac_init_help" = "recursive"; then
|
Chris@350
|
1493 # If there are subdirs, report their specific --help.
|
Chris@350
|
1494 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
|
Chris@350
|
1495 test -d "$ac_dir" ||
|
Chris@350
|
1496 { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
|
Chris@350
|
1497 continue
|
Chris@350
|
1498 ac_builddir=.
|
Chris@350
|
1499
|
Chris@350
|
1500 case "$ac_dir" in
|
Chris@350
|
1501 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
Chris@350
|
1502 *)
|
Chris@350
|
1503 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
|
Chris@350
|
1504 # A ".." for each directory in $ac_dir_suffix.
|
Chris@350
|
1505 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
|
Chris@350
|
1506 case $ac_top_builddir_sub in
|
Chris@350
|
1507 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
Chris@350
|
1508 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
|
Chris@350
|
1509 esac ;;
|
Chris@350
|
1510 esac
|
Chris@350
|
1511 ac_abs_top_builddir=$ac_pwd
|
Chris@350
|
1512 ac_abs_builddir=$ac_pwd$ac_dir_suffix
|
Chris@350
|
1513 # for backward compatibility:
|
Chris@350
|
1514 ac_top_builddir=$ac_top_build_prefix
|
Chris@350
|
1515
|
Chris@350
|
1516 case $srcdir in
|
Chris@350
|
1517 .) # We are building in place.
|
Chris@350
|
1518 ac_srcdir=.
|
Chris@350
|
1519 ac_top_srcdir=$ac_top_builddir_sub
|
Chris@350
|
1520 ac_abs_top_srcdir=$ac_pwd ;;
|
Chris@350
|
1521 [\\/]* | ?:[\\/]* ) # Absolute name.
|
Chris@350
|
1522 ac_srcdir=$srcdir$ac_dir_suffix;
|
Chris@350
|
1523 ac_top_srcdir=$srcdir
|
Chris@350
|
1524 ac_abs_top_srcdir=$srcdir ;;
|
Chris@350
|
1525 *) # Relative name.
|
Chris@350
|
1526 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
|
Chris@350
|
1527 ac_top_srcdir=$ac_top_build_prefix$srcdir
|
Chris@350
|
1528 ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
|
Chris@350
|
1529 esac
|
Chris@350
|
1530 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
|
Chris@350
|
1531
|
Chris@350
|
1532 cd "$ac_dir" || { ac_status=$?; continue; }
|
Chris@350
|
1533 # Check for guested configure.
|
Chris@350
|
1534 if test -f "$ac_srcdir/configure.gnu"; then
|
Chris@350
|
1535 echo &&
|
Chris@350
|
1536 $SHELL "$ac_srcdir/configure.gnu" --help=recursive
|
Chris@350
|
1537 elif test -f "$ac_srcdir/configure"; then
|
Chris@350
|
1538 echo &&
|
Chris@350
|
1539 $SHELL "$ac_srcdir/configure" --help=recursive
|
Chris@350
|
1540 else
|
Chris@350
|
1541 $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
|
Chris@350
|
1542 fi || ac_status=$?
|
Chris@350
|
1543 cd "$ac_pwd" || { ac_status=$?; break; }
|
Chris@350
|
1544 done
|
Chris@350
|
1545 fi
|
Chris@350
|
1546
|
Chris@350
|
1547 test -n "$ac_init_help" && exit $ac_status
|
Chris@350
|
1548 if $ac_init_version; then
|
Chris@350
|
1549 cat <<\_ACEOF
|
Chris@884
|
1550 Sonic Visualiser configure 2.4.1
|
Chris@594
|
1551 generated by GNU Autoconf 2.69
|
Chris@594
|
1552
|
Chris@594
|
1553 Copyright (C) 2012 Free Software Foundation, Inc.
|
Chris@350
|
1554 This configure script is free software; the Free Software Foundation
|
Chris@350
|
1555 gives unlimited permission to copy, distribute and modify it.
|
Chris@350
|
1556 _ACEOF
|
Chris@350
|
1557 exit
|
Chris@350
|
1558 fi
|
Chris@350
|
1559
|
Chris@350
|
1560 ## ------------------------ ##
|
Chris@350
|
1561 ## Autoconf initialization. ##
|
Chris@350
|
1562 ## ------------------------ ##
|
Chris@350
|
1563
|
Chris@350
|
1564 # ac_fn_c_try_compile LINENO
|
Chris@350
|
1565 # --------------------------
|
Chris@350
|
1566 # Try to compile conftest.$ac_ext, and return whether this succeeded.
|
Chris@350
|
1567 ac_fn_c_try_compile ()
|
Chris@350
|
1568 {
|
Chris@350
|
1569 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
|
Chris@350
|
1570 rm -f conftest.$ac_objext
|
Chris@350
|
1571 if { { ac_try="$ac_compile"
|
Chris@350
|
1572 case "(($ac_try" in
|
Chris@350
|
1573 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
1574 *) ac_try_echo=$ac_try;;
|
Chris@350
|
1575 esac
|
Chris@350
|
1576 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
1577 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
1578 (eval "$ac_compile") 2>conftest.err
|
Chris@350
|
1579 ac_status=$?
|
Chris@350
|
1580 if test -s conftest.err; then
|
Chris@350
|
1581 grep -v '^ *+' conftest.err >conftest.er1
|
Chris@350
|
1582 cat conftest.er1 >&5
|
Chris@350
|
1583 mv -f conftest.er1 conftest.err
|
Chris@350
|
1584 fi
|
Chris@350
|
1585 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
1586 test $ac_status = 0; } && {
|
Chris@350
|
1587 test -z "$ac_c_werror_flag" ||
|
Chris@350
|
1588 test ! -s conftest.err
|
Chris@350
|
1589 } && test -s conftest.$ac_objext; then :
|
Chris@350
|
1590 ac_retval=0
|
Chris@350
|
1591 else
|
Chris@350
|
1592 $as_echo "$as_me: failed program was:" >&5
|
Chris@350
|
1593 sed 's/^/| /' conftest.$ac_ext >&5
|
Chris@350
|
1594
|
Chris@350
|
1595 ac_retval=1
|
Chris@350
|
1596 fi
|
Chris@594
|
1597 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
Chris@350
|
1598 as_fn_set_status $ac_retval
|
Chris@350
|
1599
|
Chris@350
|
1600 } # ac_fn_c_try_compile
|
Chris@350
|
1601
|
Chris@350
|
1602 # ac_fn_cxx_try_compile LINENO
|
Chris@350
|
1603 # ----------------------------
|
Chris@350
|
1604 # Try to compile conftest.$ac_ext, and return whether this succeeded.
|
Chris@350
|
1605 ac_fn_cxx_try_compile ()
|
Chris@350
|
1606 {
|
Chris@350
|
1607 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
|
Chris@350
|
1608 rm -f conftest.$ac_objext
|
Chris@350
|
1609 if { { ac_try="$ac_compile"
|
Chris@350
|
1610 case "(($ac_try" in
|
Chris@350
|
1611 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
1612 *) ac_try_echo=$ac_try;;
|
Chris@350
|
1613 esac
|
Chris@350
|
1614 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
1615 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
1616 (eval "$ac_compile") 2>conftest.err
|
Chris@350
|
1617 ac_status=$?
|
Chris@350
|
1618 if test -s conftest.err; then
|
Chris@350
|
1619 grep -v '^ *+' conftest.err >conftest.er1
|
Chris@350
|
1620 cat conftest.er1 >&5
|
Chris@350
|
1621 mv -f conftest.er1 conftest.err
|
Chris@350
|
1622 fi
|
Chris@350
|
1623 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
1624 test $ac_status = 0; } && {
|
Chris@350
|
1625 test -z "$ac_cxx_werror_flag" ||
|
Chris@350
|
1626 test ! -s conftest.err
|
Chris@350
|
1627 } && test -s conftest.$ac_objext; then :
|
Chris@350
|
1628 ac_retval=0
|
Chris@350
|
1629 else
|
Chris@350
|
1630 $as_echo "$as_me: failed program was:" >&5
|
Chris@350
|
1631 sed 's/^/| /' conftest.$ac_ext >&5
|
Chris@350
|
1632
|
Chris@350
|
1633 ac_retval=1
|
Chris@350
|
1634 fi
|
Chris@594
|
1635 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
Chris@350
|
1636 as_fn_set_status $ac_retval
|
Chris@350
|
1637
|
Chris@350
|
1638 } # ac_fn_cxx_try_compile
|
Chris@350
|
1639
|
Chris@350
|
1640 # ac_fn_cxx_try_cpp LINENO
|
Chris@350
|
1641 # ------------------------
|
Chris@350
|
1642 # Try to preprocess conftest.$ac_ext, and return whether this succeeded.
|
Chris@350
|
1643 ac_fn_cxx_try_cpp ()
|
Chris@350
|
1644 {
|
Chris@350
|
1645 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
|
Chris@350
|
1646 if { { ac_try="$ac_cpp conftest.$ac_ext"
|
Chris@350
|
1647 case "(($ac_try" in
|
Chris@350
|
1648 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
1649 *) ac_try_echo=$ac_try;;
|
Chris@350
|
1650 esac
|
Chris@350
|
1651 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
1652 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
1653 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
|
Chris@350
|
1654 ac_status=$?
|
Chris@350
|
1655 if test -s conftest.err; then
|
Chris@350
|
1656 grep -v '^ *+' conftest.err >conftest.er1
|
Chris@350
|
1657 cat conftest.er1 >&5
|
Chris@350
|
1658 mv -f conftest.er1 conftest.err
|
Chris@350
|
1659 fi
|
Chris@350
|
1660 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@594
|
1661 test $ac_status = 0; } > conftest.i && {
|
Chris@350
|
1662 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
|
Chris@350
|
1663 test ! -s conftest.err
|
Chris@350
|
1664 }; then :
|
Chris@350
|
1665 ac_retval=0
|
Chris@350
|
1666 else
|
Chris@350
|
1667 $as_echo "$as_me: failed program was:" >&5
|
Chris@350
|
1668 sed 's/^/| /' conftest.$ac_ext >&5
|
Chris@350
|
1669
|
Chris@350
|
1670 ac_retval=1
|
Chris@350
|
1671 fi
|
Chris@594
|
1672 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
Chris@350
|
1673 as_fn_set_status $ac_retval
|
Chris@350
|
1674
|
Chris@350
|
1675 } # ac_fn_cxx_try_cpp
|
Chris@350
|
1676
|
Chris@350
|
1677 # ac_fn_cxx_try_run LINENO
|
Chris@350
|
1678 # ------------------------
|
Chris@350
|
1679 # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes
|
Chris@350
|
1680 # that executables *can* be run.
|
Chris@350
|
1681 ac_fn_cxx_try_run ()
|
Chris@350
|
1682 {
|
Chris@350
|
1683 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
|
Chris@350
|
1684 if { { ac_try="$ac_link"
|
Chris@350
|
1685 case "(($ac_try" in
|
Chris@350
|
1686 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
1687 *) ac_try_echo=$ac_try;;
|
Chris@350
|
1688 esac
|
Chris@350
|
1689 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
1690 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
1691 (eval "$ac_link") 2>&5
|
Chris@350
|
1692 ac_status=$?
|
Chris@350
|
1693 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
1694 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
|
Chris@350
|
1695 { { case "(($ac_try" in
|
Chris@350
|
1696 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
1697 *) ac_try_echo=$ac_try;;
|
Chris@350
|
1698 esac
|
Chris@350
|
1699 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
1700 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
1701 (eval "$ac_try") 2>&5
|
Chris@350
|
1702 ac_status=$?
|
Chris@350
|
1703 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
1704 test $ac_status = 0; }; }; then :
|
Chris@350
|
1705 ac_retval=0
|
Chris@350
|
1706 else
|
Chris@350
|
1707 $as_echo "$as_me: program exited with status $ac_status" >&5
|
Chris@350
|
1708 $as_echo "$as_me: failed program was:" >&5
|
Chris@350
|
1709 sed 's/^/| /' conftest.$ac_ext >&5
|
Chris@350
|
1710
|
Chris@350
|
1711 ac_retval=$ac_status
|
Chris@350
|
1712 fi
|
Chris@350
|
1713 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
|
Chris@594
|
1714 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
Chris@350
|
1715 as_fn_set_status $ac_retval
|
Chris@350
|
1716
|
Chris@350
|
1717 } # ac_fn_cxx_try_run
|
Chris@350
|
1718
|
Chris@350
|
1719 # ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES
|
Chris@350
|
1720 # ---------------------------------------------------------
|
Chris@350
|
1721 # Tests whether HEADER exists, giving a warning if it cannot be compiled using
|
Chris@350
|
1722 # the include files in INCLUDES and setting the cache variable VAR
|
Chris@350
|
1723 # accordingly.
|
Chris@350
|
1724 ac_fn_cxx_check_header_mongrel ()
|
Chris@350
|
1725 {
|
Chris@350
|
1726 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
|
Chris@594
|
1727 if eval \${$3+:} false; then :
|
Chris@350
|
1728 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
|
Chris@350
|
1729 $as_echo_n "checking for $2... " >&6; }
|
Chris@594
|
1730 if eval \${$3+:} false; then :
|
Chris@350
|
1731 $as_echo_n "(cached) " >&6
|
Chris@350
|
1732 fi
|
Chris@350
|
1733 eval ac_res=\$$3
|
Chris@350
|
1734 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
1735 $as_echo "$ac_res" >&6; }
|
Chris@350
|
1736 else
|
Chris@350
|
1737 # Is the header compilable?
|
Chris@350
|
1738 { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
|
Chris@350
|
1739 $as_echo_n "checking $2 usability... " >&6; }
|
Chris@350
|
1740 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
1741 /* end confdefs.h. */
|
Chris@350
|
1742 $4
|
Chris@350
|
1743 #include <$2>
|
Chris@350
|
1744 _ACEOF
|
Chris@350
|
1745 if ac_fn_cxx_try_compile "$LINENO"; then :
|
Chris@350
|
1746 ac_header_compiler=yes
|
Chris@350
|
1747 else
|
Chris@350
|
1748 ac_header_compiler=no
|
Chris@350
|
1749 fi
|
Chris@350
|
1750 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@350
|
1751 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
|
Chris@350
|
1752 $as_echo "$ac_header_compiler" >&6; }
|
Chris@350
|
1753
|
Chris@350
|
1754 # Is the header present?
|
Chris@350
|
1755 { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
|
Chris@350
|
1756 $as_echo_n "checking $2 presence... " >&6; }
|
Chris@350
|
1757 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
1758 /* end confdefs.h. */
|
Chris@350
|
1759 #include <$2>
|
Chris@350
|
1760 _ACEOF
|
Chris@350
|
1761 if ac_fn_cxx_try_cpp "$LINENO"; then :
|
Chris@350
|
1762 ac_header_preproc=yes
|
Chris@350
|
1763 else
|
Chris@350
|
1764 ac_header_preproc=no
|
Chris@350
|
1765 fi
|
Chris@594
|
1766 rm -f conftest.err conftest.i conftest.$ac_ext
|
Chris@350
|
1767 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
|
Chris@350
|
1768 $as_echo "$ac_header_preproc" >&6; }
|
Chris@350
|
1769
|
Chris@350
|
1770 # So? What about this header?
|
Chris@350
|
1771 case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #((
|
Chris@350
|
1772 yes:no: )
|
Chris@350
|
1773 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
|
Chris@350
|
1774 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
Chris@350
|
1775 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
|
Chris@350
|
1776 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
|
Chris@350
|
1777 ;;
|
Chris@350
|
1778 no:yes:* )
|
Chris@350
|
1779 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
|
Chris@350
|
1780 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
|
Chris@350
|
1781 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
|
Chris@350
|
1782 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
|
Chris@350
|
1783 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
|
Chris@350
|
1784 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
|
Chris@350
|
1785 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5
|
Chris@350
|
1786 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
|
Chris@350
|
1787 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
|
Chris@350
|
1788 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
|
Chris@594
|
1789 ( $as_echo "## ------------------------------------------- ##
|
Chris@350
|
1790 ## Report this to cannam@all-day-breakfast.com ##
|
Chris@594
|
1791 ## ------------------------------------------- ##"
|
Chris@350
|
1792 ) | sed "s/^/$as_me: WARNING: /" >&2
|
Chris@350
|
1793 ;;
|
Chris@350
|
1794 esac
|
Chris@350
|
1795 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
|
Chris@350
|
1796 $as_echo_n "checking for $2... " >&6; }
|
Chris@594
|
1797 if eval \${$3+:} false; then :
|
Chris@350
|
1798 $as_echo_n "(cached) " >&6
|
Chris@350
|
1799 else
|
Chris@350
|
1800 eval "$3=\$ac_header_compiler"
|
Chris@350
|
1801 fi
|
Chris@350
|
1802 eval ac_res=\$$3
|
Chris@350
|
1803 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
1804 $as_echo "$ac_res" >&6; }
|
Chris@350
|
1805 fi
|
Chris@594
|
1806 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
Chris@350
|
1807
|
Chris@350
|
1808 } # ac_fn_cxx_check_header_mongrel
|
Chris@350
|
1809
|
Chris@350
|
1810 # ac_fn_cxx_check_header_compile LINENO HEADER VAR INCLUDES
|
Chris@350
|
1811 # ---------------------------------------------------------
|
Chris@350
|
1812 # Tests whether HEADER exists and can be compiled using the include files in
|
Chris@350
|
1813 # INCLUDES, setting the cache variable VAR accordingly.
|
Chris@350
|
1814 ac_fn_cxx_check_header_compile ()
|
Chris@350
|
1815 {
|
Chris@350
|
1816 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
|
Chris@350
|
1817 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
|
Chris@350
|
1818 $as_echo_n "checking for $2... " >&6; }
|
Chris@594
|
1819 if eval \${$3+:} false; then :
|
Chris@350
|
1820 $as_echo_n "(cached) " >&6
|
Chris@350
|
1821 else
|
Chris@350
|
1822 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
1823 /* end confdefs.h. */
|
Chris@350
|
1824 $4
|
Chris@350
|
1825 #include <$2>
|
Chris@350
|
1826 _ACEOF
|
Chris@350
|
1827 if ac_fn_cxx_try_compile "$LINENO"; then :
|
Chris@350
|
1828 eval "$3=yes"
|
Chris@350
|
1829 else
|
Chris@350
|
1830 eval "$3=no"
|
Chris@350
|
1831 fi
|
Chris@350
|
1832 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@350
|
1833 fi
|
Chris@350
|
1834 eval ac_res=\$$3
|
Chris@350
|
1835 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
1836 $as_echo "$ac_res" >&6; }
|
Chris@594
|
1837 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
Chris@350
|
1838
|
Chris@350
|
1839 } # ac_fn_cxx_check_header_compile
|
Chris@350
|
1840
|
Chris@350
|
1841 # ac_fn_cxx_try_link LINENO
|
Chris@350
|
1842 # -------------------------
|
Chris@350
|
1843 # Try to link conftest.$ac_ext, and return whether this succeeded.
|
Chris@350
|
1844 ac_fn_cxx_try_link ()
|
Chris@350
|
1845 {
|
Chris@350
|
1846 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
|
Chris@350
|
1847 rm -f conftest.$ac_objext conftest$ac_exeext
|
Chris@350
|
1848 if { { ac_try="$ac_link"
|
Chris@350
|
1849 case "(($ac_try" in
|
Chris@350
|
1850 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
1851 *) ac_try_echo=$ac_try;;
|
Chris@350
|
1852 esac
|
Chris@350
|
1853 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
1854 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
1855 (eval "$ac_link") 2>conftest.err
|
Chris@350
|
1856 ac_status=$?
|
Chris@350
|
1857 if test -s conftest.err; then
|
Chris@350
|
1858 grep -v '^ *+' conftest.err >conftest.er1
|
Chris@350
|
1859 cat conftest.er1 >&5
|
Chris@350
|
1860 mv -f conftest.er1 conftest.err
|
Chris@350
|
1861 fi
|
Chris@350
|
1862 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
1863 test $ac_status = 0; } && {
|
Chris@350
|
1864 test -z "$ac_cxx_werror_flag" ||
|
Chris@350
|
1865 test ! -s conftest.err
|
Chris@350
|
1866 } && test -s conftest$ac_exeext && {
|
Chris@350
|
1867 test "$cross_compiling" = yes ||
|
Chris@594
|
1868 test -x conftest$ac_exeext
|
Chris@350
|
1869 }; then :
|
Chris@350
|
1870 ac_retval=0
|
Chris@350
|
1871 else
|
Chris@350
|
1872 $as_echo "$as_me: failed program was:" >&5
|
Chris@350
|
1873 sed 's/^/| /' conftest.$ac_ext >&5
|
Chris@350
|
1874
|
Chris@350
|
1875 ac_retval=1
|
Chris@350
|
1876 fi
|
Chris@350
|
1877 # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
|
Chris@350
|
1878 # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
|
Chris@350
|
1879 # interfere with the next link command; also delete a directory that is
|
Chris@350
|
1880 # left behind by Apple's compiler. We do this before executing the actions.
|
Chris@350
|
1881 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
|
Chris@594
|
1882 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
|
Chris@350
|
1883 as_fn_set_status $ac_retval
|
Chris@350
|
1884
|
Chris@350
|
1885 } # ac_fn_cxx_try_link
|
Chris@350
|
1886 cat >config.log <<_ACEOF
|
Chris@350
|
1887 This file contains any messages produced by compilers while
|
Chris@350
|
1888 running configure, to aid debugging if configure makes a mistake.
|
Chris@350
|
1889
|
Chris@884
|
1890 It was created by Sonic Visualiser $as_me 2.4.1, which was
|
Chris@594
|
1891 generated by GNU Autoconf 2.69. Invocation command line was
|
Chris@350
|
1892
|
Chris@350
|
1893 $ $0 $@
|
Chris@350
|
1894
|
Chris@350
|
1895 _ACEOF
|
Chris@350
|
1896 exec 5>>config.log
|
Chris@350
|
1897 {
|
Chris@350
|
1898 cat <<_ASUNAME
|
Chris@350
|
1899 ## --------- ##
|
Chris@350
|
1900 ## Platform. ##
|
Chris@350
|
1901 ## --------- ##
|
Chris@350
|
1902
|
Chris@350
|
1903 hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
|
Chris@350
|
1904 uname -m = `(uname -m) 2>/dev/null || echo unknown`
|
Chris@350
|
1905 uname -r = `(uname -r) 2>/dev/null || echo unknown`
|
Chris@350
|
1906 uname -s = `(uname -s) 2>/dev/null || echo unknown`
|
Chris@350
|
1907 uname -v = `(uname -v) 2>/dev/null || echo unknown`
|
Chris@350
|
1908
|
Chris@350
|
1909 /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
|
Chris@350
|
1910 /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
|
Chris@350
|
1911
|
Chris@350
|
1912 /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
|
Chris@350
|
1913 /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
|
Chris@350
|
1914 /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
|
Chris@350
|
1915 /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown`
|
Chris@350
|
1916 /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
|
Chris@350
|
1917 /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
|
Chris@350
|
1918 /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
|
Chris@350
|
1919
|
Chris@350
|
1920 _ASUNAME
|
Chris@350
|
1921
|
Chris@350
|
1922 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
1923 for as_dir in $PATH
|
Chris@350
|
1924 do
|
Chris@350
|
1925 IFS=$as_save_IFS
|
Chris@350
|
1926 test -z "$as_dir" && as_dir=.
|
Chris@350
|
1927 $as_echo "PATH: $as_dir"
|
Chris@350
|
1928 done
|
Chris@350
|
1929 IFS=$as_save_IFS
|
Chris@350
|
1930
|
Chris@350
|
1931 } >&5
|
Chris@350
|
1932
|
Chris@350
|
1933 cat >&5 <<_ACEOF
|
Chris@350
|
1934
|
Chris@350
|
1935
|
Chris@350
|
1936 ## ----------- ##
|
Chris@350
|
1937 ## Core tests. ##
|
Chris@350
|
1938 ## ----------- ##
|
Chris@350
|
1939
|
Chris@350
|
1940 _ACEOF
|
Chris@350
|
1941
|
Chris@350
|
1942
|
Chris@350
|
1943 # Keep a trace of the command line.
|
Chris@350
|
1944 # Strip out --no-create and --no-recursion so they do not pile up.
|
Chris@350
|
1945 # Strip out --silent because we don't want to record it for future runs.
|
Chris@350
|
1946 # Also quote any args containing shell meta-characters.
|
Chris@350
|
1947 # Make two passes to allow for proper duplicate-argument suppression.
|
Chris@350
|
1948 ac_configure_args=
|
Chris@350
|
1949 ac_configure_args0=
|
Chris@350
|
1950 ac_configure_args1=
|
Chris@350
|
1951 ac_must_keep_next=false
|
Chris@350
|
1952 for ac_pass in 1 2
|
Chris@350
|
1953 do
|
Chris@350
|
1954 for ac_arg
|
Chris@350
|
1955 do
|
Chris@350
|
1956 case $ac_arg in
|
Chris@350
|
1957 -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
|
Chris@350
|
1958 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
Chris@350
|
1959 | -silent | --silent | --silen | --sile | --sil)
|
Chris@350
|
1960 continue ;;
|
Chris@350
|
1961 *\'*)
|
Chris@350
|
1962 ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
|
Chris@350
|
1963 esac
|
Chris@350
|
1964 case $ac_pass in
|
Chris@350
|
1965 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
|
Chris@350
|
1966 2)
|
Chris@350
|
1967 as_fn_append ac_configure_args1 " '$ac_arg'"
|
Chris@350
|
1968 if test $ac_must_keep_next = true; then
|
Chris@350
|
1969 ac_must_keep_next=false # Got value, back to normal.
|
Chris@350
|
1970 else
|
Chris@350
|
1971 case $ac_arg in
|
Chris@350
|
1972 *=* | --config-cache | -C | -disable-* | --disable-* \
|
Chris@350
|
1973 | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
|
Chris@350
|
1974 | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
|
Chris@350
|
1975 | -with-* | --with-* | -without-* | --without-* | --x)
|
Chris@350
|
1976 case "$ac_configure_args0 " in
|
Chris@350
|
1977 "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
|
Chris@350
|
1978 esac
|
Chris@350
|
1979 ;;
|
Chris@350
|
1980 -* ) ac_must_keep_next=true ;;
|
Chris@350
|
1981 esac
|
Chris@350
|
1982 fi
|
Chris@350
|
1983 as_fn_append ac_configure_args " '$ac_arg'"
|
Chris@350
|
1984 ;;
|
Chris@350
|
1985 esac
|
Chris@350
|
1986 done
|
Chris@350
|
1987 done
|
Chris@350
|
1988 { ac_configure_args0=; unset ac_configure_args0;}
|
Chris@350
|
1989 { ac_configure_args1=; unset ac_configure_args1;}
|
Chris@350
|
1990
|
Chris@350
|
1991 # When interrupted or exit'd, cleanup temporary files, and complete
|
Chris@350
|
1992 # config.log. We remove comments because anyway the quotes in there
|
Chris@350
|
1993 # would cause problems or look ugly.
|
Chris@350
|
1994 # WARNING: Use '\'' to represent an apostrophe within the trap.
|
Chris@350
|
1995 # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
|
Chris@350
|
1996 trap 'exit_status=$?
|
Chris@350
|
1997 # Save into config.log some information that might help in debugging.
|
Chris@350
|
1998 {
|
Chris@350
|
1999 echo
|
Chris@350
|
2000
|
Chris@594
|
2001 $as_echo "## ---------------- ##
|
Chris@350
|
2002 ## Cache variables. ##
|
Chris@594
|
2003 ## ---------------- ##"
|
Chris@350
|
2004 echo
|
Chris@350
|
2005 # The following way of writing the cache mishandles newlines in values,
|
Chris@350
|
2006 (
|
Chris@350
|
2007 for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
|
Chris@350
|
2008 eval ac_val=\$$ac_var
|
Chris@350
|
2009 case $ac_val in #(
|
Chris@350
|
2010 *${as_nl}*)
|
Chris@350
|
2011 case $ac_var in #(
|
Chris@350
|
2012 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
|
Chris@350
|
2013 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
|
Chris@350
|
2014 esac
|
Chris@350
|
2015 case $ac_var in #(
|
Chris@350
|
2016 _ | IFS | as_nl) ;; #(
|
Chris@350
|
2017 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
|
Chris@350
|
2018 *) { eval $ac_var=; unset $ac_var;} ;;
|
Chris@350
|
2019 esac ;;
|
Chris@350
|
2020 esac
|
Chris@350
|
2021 done
|
Chris@350
|
2022 (set) 2>&1 |
|
Chris@350
|
2023 case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
|
Chris@350
|
2024 *${as_nl}ac_space=\ *)
|
Chris@350
|
2025 sed -n \
|
Chris@350
|
2026 "s/'\''/'\''\\\\'\'''\''/g;
|
Chris@350
|
2027 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
|
Chris@350
|
2028 ;; #(
|
Chris@350
|
2029 *)
|
Chris@350
|
2030 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
|
Chris@350
|
2031 ;;
|
Chris@350
|
2032 esac |
|
Chris@350
|
2033 sort
|
Chris@350
|
2034 )
|
Chris@350
|
2035 echo
|
Chris@350
|
2036
|
Chris@594
|
2037 $as_echo "## ----------------- ##
|
Chris@350
|
2038 ## Output variables. ##
|
Chris@594
|
2039 ## ----------------- ##"
|
Chris@350
|
2040 echo
|
Chris@350
|
2041 for ac_var in $ac_subst_vars
|
Chris@350
|
2042 do
|
Chris@350
|
2043 eval ac_val=\$$ac_var
|
Chris@350
|
2044 case $ac_val in
|
Chris@350
|
2045 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
|
Chris@350
|
2046 esac
|
Chris@350
|
2047 $as_echo "$ac_var='\''$ac_val'\''"
|
Chris@350
|
2048 done | sort
|
Chris@350
|
2049 echo
|
Chris@350
|
2050
|
Chris@350
|
2051 if test -n "$ac_subst_files"; then
|
Chris@594
|
2052 $as_echo "## ------------------- ##
|
Chris@350
|
2053 ## File substitutions. ##
|
Chris@594
|
2054 ## ------------------- ##"
|
Chris@350
|
2055 echo
|
Chris@350
|
2056 for ac_var in $ac_subst_files
|
Chris@350
|
2057 do
|
Chris@350
|
2058 eval ac_val=\$$ac_var
|
Chris@350
|
2059 case $ac_val in
|
Chris@350
|
2060 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
|
Chris@350
|
2061 esac
|
Chris@350
|
2062 $as_echo "$ac_var='\''$ac_val'\''"
|
Chris@350
|
2063 done | sort
|
Chris@350
|
2064 echo
|
Chris@350
|
2065 fi
|
Chris@350
|
2066
|
Chris@350
|
2067 if test -s confdefs.h; then
|
Chris@594
|
2068 $as_echo "## ----------- ##
|
Chris@350
|
2069 ## confdefs.h. ##
|
Chris@594
|
2070 ## ----------- ##"
|
Chris@350
|
2071 echo
|
Chris@350
|
2072 cat confdefs.h
|
Chris@350
|
2073 echo
|
Chris@350
|
2074 fi
|
Chris@350
|
2075 test "$ac_signal" != 0 &&
|
Chris@350
|
2076 $as_echo "$as_me: caught signal $ac_signal"
|
Chris@350
|
2077 $as_echo "$as_me: exit $exit_status"
|
Chris@350
|
2078 } >&5
|
Chris@350
|
2079 rm -f core *.core core.conftest.* &&
|
Chris@350
|
2080 rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
|
Chris@350
|
2081 exit $exit_status
|
Chris@350
|
2082 ' 0
|
Chris@350
|
2083 for ac_signal in 1 2 13 15; do
|
Chris@350
|
2084 trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
|
Chris@350
|
2085 done
|
Chris@350
|
2086 ac_signal=0
|
Chris@350
|
2087
|
Chris@350
|
2088 # confdefs.h avoids OS command line length limits that DEFS can exceed.
|
Chris@350
|
2089 rm -f -r conftest* confdefs.h
|
Chris@350
|
2090
|
Chris@350
|
2091 $as_echo "/* confdefs.h */" > confdefs.h
|
Chris@350
|
2092
|
Chris@350
|
2093 # Predefined preprocessor variables.
|
Chris@350
|
2094
|
Chris@350
|
2095 cat >>confdefs.h <<_ACEOF
|
Chris@350
|
2096 #define PACKAGE_NAME "$PACKAGE_NAME"
|
Chris@350
|
2097 _ACEOF
|
Chris@350
|
2098
|
Chris@350
|
2099 cat >>confdefs.h <<_ACEOF
|
Chris@350
|
2100 #define PACKAGE_TARNAME "$PACKAGE_TARNAME"
|
Chris@350
|
2101 _ACEOF
|
Chris@350
|
2102
|
Chris@350
|
2103 cat >>confdefs.h <<_ACEOF
|
Chris@350
|
2104 #define PACKAGE_VERSION "$PACKAGE_VERSION"
|
Chris@350
|
2105 _ACEOF
|
Chris@350
|
2106
|
Chris@350
|
2107 cat >>confdefs.h <<_ACEOF
|
Chris@350
|
2108 #define PACKAGE_STRING "$PACKAGE_STRING"
|
Chris@350
|
2109 _ACEOF
|
Chris@350
|
2110
|
Chris@350
|
2111 cat >>confdefs.h <<_ACEOF
|
Chris@350
|
2112 #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
|
Chris@350
|
2113 _ACEOF
|
Chris@350
|
2114
|
Chris@350
|
2115 cat >>confdefs.h <<_ACEOF
|
Chris@350
|
2116 #define PACKAGE_URL "$PACKAGE_URL"
|
Chris@350
|
2117 _ACEOF
|
Chris@350
|
2118
|
Chris@350
|
2119
|
Chris@350
|
2120 # Let the site file select an alternate cache file if it wants to.
|
Chris@350
|
2121 # Prefer an explicitly selected file to automatically selected ones.
|
Chris@350
|
2122 ac_site_file1=NONE
|
Chris@350
|
2123 ac_site_file2=NONE
|
Chris@350
|
2124 if test -n "$CONFIG_SITE"; then
|
Chris@594
|
2125 # We do not want a PATH search for config.site.
|
Chris@594
|
2126 case $CONFIG_SITE in #((
|
Chris@594
|
2127 -*) ac_site_file1=./$CONFIG_SITE;;
|
Chris@594
|
2128 */*) ac_site_file1=$CONFIG_SITE;;
|
Chris@594
|
2129 *) ac_site_file1=./$CONFIG_SITE;;
|
Chris@594
|
2130 esac
|
Chris@350
|
2131 elif test "x$prefix" != xNONE; then
|
Chris@350
|
2132 ac_site_file1=$prefix/share/config.site
|
Chris@350
|
2133 ac_site_file2=$prefix/etc/config.site
|
Chris@350
|
2134 else
|
Chris@350
|
2135 ac_site_file1=$ac_default_prefix/share/config.site
|
Chris@350
|
2136 ac_site_file2=$ac_default_prefix/etc/config.site
|
Chris@350
|
2137 fi
|
Chris@350
|
2138 for ac_site_file in "$ac_site_file1" "$ac_site_file2"
|
Chris@350
|
2139 do
|
Chris@350
|
2140 test "x$ac_site_file" = xNONE && continue
|
Chris@350
|
2141 if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
|
Chris@350
|
2142 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
|
Chris@350
|
2143 $as_echo "$as_me: loading site script $ac_site_file" >&6;}
|
Chris@350
|
2144 sed 's/^/| /' "$ac_site_file" >&5
|
Chris@594
|
2145 . "$ac_site_file" \
|
Chris@594
|
2146 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
Chris@594
|
2147 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
Chris@594
|
2148 as_fn_error $? "failed to load site script $ac_site_file
|
Chris@594
|
2149 See \`config.log' for more details" "$LINENO" 5; }
|
Chris@350
|
2150 fi
|
Chris@350
|
2151 done
|
Chris@350
|
2152
|
Chris@350
|
2153 if test -r "$cache_file"; then
|
Chris@350
|
2154 # Some versions of bash will fail to source /dev/null (special files
|
Chris@350
|
2155 # actually), so we avoid doing that. DJGPP emulates it as a regular file.
|
Chris@350
|
2156 if test /dev/null != "$cache_file" && test -f "$cache_file"; then
|
Chris@350
|
2157 { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
|
Chris@350
|
2158 $as_echo "$as_me: loading cache $cache_file" >&6;}
|
Chris@350
|
2159 case $cache_file in
|
Chris@350
|
2160 [\\/]* | ?:[\\/]* ) . "$cache_file";;
|
Chris@350
|
2161 *) . "./$cache_file";;
|
Chris@350
|
2162 esac
|
Chris@350
|
2163 fi
|
Chris@350
|
2164 else
|
Chris@350
|
2165 { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
|
Chris@350
|
2166 $as_echo "$as_me: creating cache $cache_file" >&6;}
|
Chris@350
|
2167 >$cache_file
|
Chris@350
|
2168 fi
|
Chris@350
|
2169
|
Chris@350
|
2170 # Check that the precious variables saved in the cache have kept the same
|
Chris@350
|
2171 # value.
|
Chris@350
|
2172 ac_cache_corrupted=false
|
Chris@350
|
2173 for ac_var in $ac_precious_vars; do
|
Chris@350
|
2174 eval ac_old_set=\$ac_cv_env_${ac_var}_set
|
Chris@350
|
2175 eval ac_new_set=\$ac_env_${ac_var}_set
|
Chris@350
|
2176 eval ac_old_val=\$ac_cv_env_${ac_var}_value
|
Chris@350
|
2177 eval ac_new_val=\$ac_env_${ac_var}_value
|
Chris@350
|
2178 case $ac_old_set,$ac_new_set in
|
Chris@350
|
2179 set,)
|
Chris@350
|
2180 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
|
Chris@350
|
2181 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
|
Chris@350
|
2182 ac_cache_corrupted=: ;;
|
Chris@350
|
2183 ,set)
|
Chris@350
|
2184 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
|
Chris@350
|
2185 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
|
Chris@350
|
2186 ac_cache_corrupted=: ;;
|
Chris@350
|
2187 ,);;
|
Chris@350
|
2188 *)
|
Chris@350
|
2189 if test "x$ac_old_val" != "x$ac_new_val"; then
|
Chris@350
|
2190 # differences in whitespace do not lead to failure.
|
Chris@350
|
2191 ac_old_val_w=`echo x $ac_old_val`
|
Chris@350
|
2192 ac_new_val_w=`echo x $ac_new_val`
|
Chris@350
|
2193 if test "$ac_old_val_w" != "$ac_new_val_w"; then
|
Chris@350
|
2194 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
|
Chris@350
|
2195 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
|
Chris@350
|
2196 ac_cache_corrupted=:
|
Chris@350
|
2197 else
|
Chris@350
|
2198 { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
|
Chris@350
|
2199 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
|
Chris@350
|
2200 eval $ac_var=\$ac_old_val
|
Chris@350
|
2201 fi
|
Chris@350
|
2202 { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
|
Chris@350
|
2203 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
|
Chris@350
|
2204 { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
|
Chris@350
|
2205 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
|
Chris@350
|
2206 fi;;
|
Chris@350
|
2207 esac
|
Chris@350
|
2208 # Pass precious variables to config.status.
|
Chris@350
|
2209 if test "$ac_new_set" = set; then
|
Chris@350
|
2210 case $ac_new_val in
|
Chris@350
|
2211 *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
|
Chris@350
|
2212 *) ac_arg=$ac_var=$ac_new_val ;;
|
Chris@350
|
2213 esac
|
Chris@350
|
2214 case " $ac_configure_args " in
|
Chris@350
|
2215 *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
|
Chris@350
|
2216 *) as_fn_append ac_configure_args " '$ac_arg'" ;;
|
Chris@350
|
2217 esac
|
Chris@350
|
2218 fi
|
Chris@350
|
2219 done
|
Chris@350
|
2220 if $ac_cache_corrupted; then
|
Chris@350
|
2221 { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
Chris@350
|
2222 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
Chris@350
|
2223 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
|
Chris@350
|
2224 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
|
Chris@594
|
2225 as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
|
Chris@350
|
2226 fi
|
Chris@350
|
2227 ## -------------------- ##
|
Chris@350
|
2228 ## Main body of script. ##
|
Chris@350
|
2229 ## -------------------- ##
|
Chris@350
|
2230
|
Chris@350
|
2231 ac_ext=c
|
Chris@350
|
2232 ac_cpp='$CPP $CPPFLAGS'
|
Chris@350
|
2233 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
Chris@350
|
2234 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
Chris@350
|
2235 ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
Chris@350
|
2236
|
Chris@350
|
2237
|
Chris@350
|
2238
|
Chris@350
|
2239
|
Chris@350
|
2240
|
Chris@350
|
2241 # Autoconf will set CXXFLAGS; we don't usually want it to, because we
|
Chris@350
|
2242 # either define our own flags (at least if GCC is in use) or else use
|
Chris@350
|
2243 # the user's preferences. We need to ensure CXXFLAGS is only set if
|
Chris@350
|
2244 # the user has expressly set it. So, save the user's (or empty)
|
Chris@350
|
2245 # setting now and restore it after Autoconf has done its bit of
|
Chris@350
|
2246 # piddling about.
|
Chris@350
|
2247 USER_CXXFLAGS="$CXXFLAGS"
|
Chris@350
|
2248
|
Chris@405
|
2249 # If the user supplied CFLAGS but not CXXFLAGS, use CFLAGS instead
|
Chris@405
|
2250 if test x"$USER_CXXFLAGS" = x; then
|
Chris@405
|
2251 if test x"$CFLAGS" != x; then
|
Chris@405
|
2252 USER_CXXFLAGS="$CFLAGS"
|
Chris@405
|
2253 fi
|
Chris@405
|
2254 fi
|
Chris@405
|
2255
|
Chris@350
|
2256 ac_ext=cpp
|
Chris@350
|
2257 ac_cpp='$CXXCPP $CPPFLAGS'
|
Chris@350
|
2258 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
Chris@350
|
2259 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
Chris@350
|
2260 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
Chris@350
|
2261
|
Chris@350
|
2262
|
Chris@350
|
2263 ac_ext=c
|
Chris@350
|
2264 ac_cpp='$CPP $CPPFLAGS'
|
Chris@350
|
2265 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
Chris@350
|
2266 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
Chris@350
|
2267 ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
Chris@350
|
2268 if test -n "$ac_tool_prefix"; then
|
Chris@350
|
2269 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
|
Chris@350
|
2270 set dummy ${ac_tool_prefix}gcc; ac_word=$2
|
Chris@350
|
2271 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
2272 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
2273 if ${ac_cv_prog_CC+:} false; then :
|
Chris@350
|
2274 $as_echo_n "(cached) " >&6
|
Chris@350
|
2275 else
|
Chris@350
|
2276 if test -n "$CC"; then
|
Chris@350
|
2277 ac_cv_prog_CC="$CC" # Let the user override the test.
|
Chris@350
|
2278 else
|
Chris@350
|
2279 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
2280 for as_dir in $PATH
|
Chris@350
|
2281 do
|
Chris@350
|
2282 IFS=$as_save_IFS
|
Chris@350
|
2283 test -z "$as_dir" && as_dir=.
|
Chris@350
|
2284 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
2285 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@350
|
2286 ac_cv_prog_CC="${ac_tool_prefix}gcc"
|
Chris@350
|
2287 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
2288 break 2
|
Chris@350
|
2289 fi
|
Chris@350
|
2290 done
|
Chris@350
|
2291 done
|
Chris@350
|
2292 IFS=$as_save_IFS
|
Chris@350
|
2293
|
Chris@350
|
2294 fi
|
Chris@350
|
2295 fi
|
Chris@350
|
2296 CC=$ac_cv_prog_CC
|
Chris@350
|
2297 if test -n "$CC"; then
|
Chris@350
|
2298 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
|
Chris@350
|
2299 $as_echo "$CC" >&6; }
|
Chris@350
|
2300 else
|
Chris@350
|
2301 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
2302 $as_echo "no" >&6; }
|
Chris@350
|
2303 fi
|
Chris@350
|
2304
|
Chris@350
|
2305
|
Chris@350
|
2306 fi
|
Chris@350
|
2307 if test -z "$ac_cv_prog_CC"; then
|
Chris@350
|
2308 ac_ct_CC=$CC
|
Chris@350
|
2309 # Extract the first word of "gcc", so it can be a program name with args.
|
Chris@350
|
2310 set dummy gcc; ac_word=$2
|
Chris@350
|
2311 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
2312 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
2313 if ${ac_cv_prog_ac_ct_CC+:} false; then :
|
Chris@350
|
2314 $as_echo_n "(cached) " >&6
|
Chris@350
|
2315 else
|
Chris@350
|
2316 if test -n "$ac_ct_CC"; then
|
Chris@350
|
2317 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
|
Chris@350
|
2318 else
|
Chris@350
|
2319 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
2320 for as_dir in $PATH
|
Chris@350
|
2321 do
|
Chris@350
|
2322 IFS=$as_save_IFS
|
Chris@350
|
2323 test -z "$as_dir" && as_dir=.
|
Chris@350
|
2324 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
2325 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@350
|
2326 ac_cv_prog_ac_ct_CC="gcc"
|
Chris@350
|
2327 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
2328 break 2
|
Chris@350
|
2329 fi
|
Chris@350
|
2330 done
|
Chris@350
|
2331 done
|
Chris@350
|
2332 IFS=$as_save_IFS
|
Chris@350
|
2333
|
Chris@350
|
2334 fi
|
Chris@350
|
2335 fi
|
Chris@350
|
2336 ac_ct_CC=$ac_cv_prog_ac_ct_CC
|
Chris@350
|
2337 if test -n "$ac_ct_CC"; then
|
Chris@350
|
2338 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
|
Chris@350
|
2339 $as_echo "$ac_ct_CC" >&6; }
|
Chris@350
|
2340 else
|
Chris@350
|
2341 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
2342 $as_echo "no" >&6; }
|
Chris@350
|
2343 fi
|
Chris@350
|
2344
|
Chris@350
|
2345 if test "x$ac_ct_CC" = x; then
|
Chris@350
|
2346 CC=""
|
Chris@350
|
2347 else
|
Chris@350
|
2348 case $cross_compiling:$ac_tool_warned in
|
Chris@350
|
2349 yes:)
|
Chris@350
|
2350 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
|
Chris@350
|
2351 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
|
Chris@350
|
2352 ac_tool_warned=yes ;;
|
Chris@350
|
2353 esac
|
Chris@350
|
2354 CC=$ac_ct_CC
|
Chris@350
|
2355 fi
|
Chris@350
|
2356 else
|
Chris@350
|
2357 CC="$ac_cv_prog_CC"
|
Chris@350
|
2358 fi
|
Chris@350
|
2359
|
Chris@350
|
2360 if test -z "$CC"; then
|
Chris@350
|
2361 if test -n "$ac_tool_prefix"; then
|
Chris@350
|
2362 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
|
Chris@350
|
2363 set dummy ${ac_tool_prefix}cc; ac_word=$2
|
Chris@350
|
2364 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
2365 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
2366 if ${ac_cv_prog_CC+:} false; then :
|
Chris@350
|
2367 $as_echo_n "(cached) " >&6
|
Chris@350
|
2368 else
|
Chris@350
|
2369 if test -n "$CC"; then
|
Chris@350
|
2370 ac_cv_prog_CC="$CC" # Let the user override the test.
|
Chris@350
|
2371 else
|
Chris@350
|
2372 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
2373 for as_dir in $PATH
|
Chris@350
|
2374 do
|
Chris@350
|
2375 IFS=$as_save_IFS
|
Chris@350
|
2376 test -z "$as_dir" && as_dir=.
|
Chris@350
|
2377 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
2378 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@350
|
2379 ac_cv_prog_CC="${ac_tool_prefix}cc"
|
Chris@350
|
2380 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
2381 break 2
|
Chris@350
|
2382 fi
|
Chris@350
|
2383 done
|
Chris@350
|
2384 done
|
Chris@350
|
2385 IFS=$as_save_IFS
|
Chris@350
|
2386
|
Chris@350
|
2387 fi
|
Chris@350
|
2388 fi
|
Chris@350
|
2389 CC=$ac_cv_prog_CC
|
Chris@350
|
2390 if test -n "$CC"; then
|
Chris@350
|
2391 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
|
Chris@350
|
2392 $as_echo "$CC" >&6; }
|
Chris@350
|
2393 else
|
Chris@350
|
2394 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
2395 $as_echo "no" >&6; }
|
Chris@350
|
2396 fi
|
Chris@350
|
2397
|
Chris@350
|
2398
|
Chris@350
|
2399 fi
|
Chris@350
|
2400 fi
|
Chris@350
|
2401 if test -z "$CC"; then
|
Chris@350
|
2402 # Extract the first word of "cc", so it can be a program name with args.
|
Chris@350
|
2403 set dummy cc; ac_word=$2
|
Chris@350
|
2404 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
2405 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
2406 if ${ac_cv_prog_CC+:} false; then :
|
Chris@350
|
2407 $as_echo_n "(cached) " >&6
|
Chris@350
|
2408 else
|
Chris@350
|
2409 if test -n "$CC"; then
|
Chris@350
|
2410 ac_cv_prog_CC="$CC" # Let the user override the test.
|
Chris@350
|
2411 else
|
Chris@350
|
2412 ac_prog_rejected=no
|
Chris@350
|
2413 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
2414 for as_dir in $PATH
|
Chris@350
|
2415 do
|
Chris@350
|
2416 IFS=$as_save_IFS
|
Chris@350
|
2417 test -z "$as_dir" && as_dir=.
|
Chris@350
|
2418 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
2419 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@350
|
2420 if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
|
Chris@350
|
2421 ac_prog_rejected=yes
|
Chris@350
|
2422 continue
|
Chris@350
|
2423 fi
|
Chris@350
|
2424 ac_cv_prog_CC="cc"
|
Chris@350
|
2425 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
2426 break 2
|
Chris@350
|
2427 fi
|
Chris@350
|
2428 done
|
Chris@350
|
2429 done
|
Chris@350
|
2430 IFS=$as_save_IFS
|
Chris@350
|
2431
|
Chris@350
|
2432 if test $ac_prog_rejected = yes; then
|
Chris@350
|
2433 # We found a bogon in the path, so make sure we never use it.
|
Chris@350
|
2434 set dummy $ac_cv_prog_CC
|
Chris@350
|
2435 shift
|
Chris@350
|
2436 if test $# != 0; then
|
Chris@350
|
2437 # We chose a different compiler from the bogus one.
|
Chris@350
|
2438 # However, it has the same basename, so the bogon will be chosen
|
Chris@350
|
2439 # first if we set CC to just the basename; use the full file name.
|
Chris@350
|
2440 shift
|
Chris@350
|
2441 ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
|
Chris@350
|
2442 fi
|
Chris@350
|
2443 fi
|
Chris@350
|
2444 fi
|
Chris@350
|
2445 fi
|
Chris@350
|
2446 CC=$ac_cv_prog_CC
|
Chris@350
|
2447 if test -n "$CC"; then
|
Chris@350
|
2448 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
|
Chris@350
|
2449 $as_echo "$CC" >&6; }
|
Chris@350
|
2450 else
|
Chris@350
|
2451 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
2452 $as_echo "no" >&6; }
|
Chris@350
|
2453 fi
|
Chris@350
|
2454
|
Chris@350
|
2455
|
Chris@350
|
2456 fi
|
Chris@350
|
2457 if test -z "$CC"; then
|
Chris@350
|
2458 if test -n "$ac_tool_prefix"; then
|
Chris@350
|
2459 for ac_prog in cl.exe
|
Chris@350
|
2460 do
|
Chris@350
|
2461 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
|
Chris@350
|
2462 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
|
Chris@350
|
2463 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
2464 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
2465 if ${ac_cv_prog_CC+:} false; then :
|
Chris@350
|
2466 $as_echo_n "(cached) " >&6
|
Chris@350
|
2467 else
|
Chris@350
|
2468 if test -n "$CC"; then
|
Chris@350
|
2469 ac_cv_prog_CC="$CC" # Let the user override the test.
|
Chris@350
|
2470 else
|
Chris@350
|
2471 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
2472 for as_dir in $PATH
|
Chris@350
|
2473 do
|
Chris@350
|
2474 IFS=$as_save_IFS
|
Chris@350
|
2475 test -z "$as_dir" && as_dir=.
|
Chris@350
|
2476 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
2477 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@350
|
2478 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
|
Chris@350
|
2479 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
2480 break 2
|
Chris@350
|
2481 fi
|
Chris@350
|
2482 done
|
Chris@350
|
2483 done
|
Chris@350
|
2484 IFS=$as_save_IFS
|
Chris@350
|
2485
|
Chris@350
|
2486 fi
|
Chris@350
|
2487 fi
|
Chris@350
|
2488 CC=$ac_cv_prog_CC
|
Chris@350
|
2489 if test -n "$CC"; then
|
Chris@350
|
2490 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
|
Chris@350
|
2491 $as_echo "$CC" >&6; }
|
Chris@350
|
2492 else
|
Chris@350
|
2493 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
2494 $as_echo "no" >&6; }
|
Chris@350
|
2495 fi
|
Chris@350
|
2496
|
Chris@350
|
2497
|
Chris@350
|
2498 test -n "$CC" && break
|
Chris@350
|
2499 done
|
Chris@350
|
2500 fi
|
Chris@350
|
2501 if test -z "$CC"; then
|
Chris@350
|
2502 ac_ct_CC=$CC
|
Chris@350
|
2503 for ac_prog in cl.exe
|
Chris@350
|
2504 do
|
Chris@350
|
2505 # Extract the first word of "$ac_prog", so it can be a program name with args.
|
Chris@350
|
2506 set dummy $ac_prog; ac_word=$2
|
Chris@350
|
2507 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
2508 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
2509 if ${ac_cv_prog_ac_ct_CC+:} false; then :
|
Chris@350
|
2510 $as_echo_n "(cached) " >&6
|
Chris@350
|
2511 else
|
Chris@350
|
2512 if test -n "$ac_ct_CC"; then
|
Chris@350
|
2513 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
|
Chris@350
|
2514 else
|
Chris@350
|
2515 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
2516 for as_dir in $PATH
|
Chris@350
|
2517 do
|
Chris@350
|
2518 IFS=$as_save_IFS
|
Chris@350
|
2519 test -z "$as_dir" && as_dir=.
|
Chris@350
|
2520 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
2521 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@350
|
2522 ac_cv_prog_ac_ct_CC="$ac_prog"
|
Chris@350
|
2523 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
2524 break 2
|
Chris@350
|
2525 fi
|
Chris@350
|
2526 done
|
Chris@350
|
2527 done
|
Chris@350
|
2528 IFS=$as_save_IFS
|
Chris@350
|
2529
|
Chris@350
|
2530 fi
|
Chris@350
|
2531 fi
|
Chris@350
|
2532 ac_ct_CC=$ac_cv_prog_ac_ct_CC
|
Chris@350
|
2533 if test -n "$ac_ct_CC"; then
|
Chris@350
|
2534 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
|
Chris@350
|
2535 $as_echo "$ac_ct_CC" >&6; }
|
Chris@350
|
2536 else
|
Chris@350
|
2537 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
2538 $as_echo "no" >&6; }
|
Chris@350
|
2539 fi
|
Chris@350
|
2540
|
Chris@350
|
2541
|
Chris@350
|
2542 test -n "$ac_ct_CC" && break
|
Chris@350
|
2543 done
|
Chris@350
|
2544
|
Chris@350
|
2545 if test "x$ac_ct_CC" = x; then
|
Chris@350
|
2546 CC=""
|
Chris@350
|
2547 else
|
Chris@350
|
2548 case $cross_compiling:$ac_tool_warned in
|
Chris@350
|
2549 yes:)
|
Chris@350
|
2550 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
|
Chris@350
|
2551 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
|
Chris@350
|
2552 ac_tool_warned=yes ;;
|
Chris@350
|
2553 esac
|
Chris@350
|
2554 CC=$ac_ct_CC
|
Chris@350
|
2555 fi
|
Chris@350
|
2556 fi
|
Chris@350
|
2557
|
Chris@350
|
2558 fi
|
Chris@350
|
2559
|
Chris@350
|
2560
|
Chris@350
|
2561 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
Chris@350
|
2562 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
Chris@594
|
2563 as_fn_error $? "no acceptable C compiler found in \$PATH
|
Chris@594
|
2564 See \`config.log' for more details" "$LINENO" 5; }
|
Chris@350
|
2565
|
Chris@350
|
2566 # Provide some information about the compiler.
|
Chris@350
|
2567 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
|
Chris@350
|
2568 set X $ac_compile
|
Chris@350
|
2569 ac_compiler=$2
|
Chris@350
|
2570 for ac_option in --version -v -V -qversion; do
|
Chris@350
|
2571 { { ac_try="$ac_compiler $ac_option >&5"
|
Chris@350
|
2572 case "(($ac_try" in
|
Chris@350
|
2573 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
2574 *) ac_try_echo=$ac_try;;
|
Chris@350
|
2575 esac
|
Chris@350
|
2576 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
2577 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
2578 (eval "$ac_compiler $ac_option >&5") 2>conftest.err
|
Chris@350
|
2579 ac_status=$?
|
Chris@350
|
2580 if test -s conftest.err; then
|
Chris@350
|
2581 sed '10a\
|
Chris@350
|
2582 ... rest of stderr output deleted ...
|
Chris@350
|
2583 10q' conftest.err >conftest.er1
|
Chris@350
|
2584 cat conftest.er1 >&5
|
Chris@350
|
2585 fi
|
Chris@350
|
2586 rm -f conftest.er1 conftest.err
|
Chris@350
|
2587 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
2588 test $ac_status = 0; }
|
Chris@350
|
2589 done
|
Chris@350
|
2590
|
Chris@350
|
2591 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
2592 /* end confdefs.h. */
|
Chris@350
|
2593
|
Chris@350
|
2594 int
|
Chris@350
|
2595 main ()
|
Chris@350
|
2596 {
|
Chris@350
|
2597
|
Chris@350
|
2598 ;
|
Chris@350
|
2599 return 0;
|
Chris@350
|
2600 }
|
Chris@350
|
2601 _ACEOF
|
Chris@350
|
2602 ac_clean_files_save=$ac_clean_files
|
Chris@350
|
2603 ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
|
Chris@350
|
2604 # Try to create an executable without -o first, disregard a.out.
|
Chris@350
|
2605 # It will help us diagnose broken compilers, and finding out an intuition
|
Chris@350
|
2606 # of exeext.
|
Chris@350
|
2607 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
|
Chris@350
|
2608 $as_echo_n "checking whether the C compiler works... " >&6; }
|
Chris@350
|
2609 ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
|
Chris@350
|
2610
|
Chris@350
|
2611 # The possible output files:
|
Chris@350
|
2612 ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
|
Chris@350
|
2613
|
Chris@350
|
2614 ac_rmfiles=
|
Chris@350
|
2615 for ac_file in $ac_files
|
Chris@350
|
2616 do
|
Chris@350
|
2617 case $ac_file in
|
Chris@350
|
2618 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
|
Chris@350
|
2619 * ) ac_rmfiles="$ac_rmfiles $ac_file";;
|
Chris@350
|
2620 esac
|
Chris@350
|
2621 done
|
Chris@350
|
2622 rm -f $ac_rmfiles
|
Chris@350
|
2623
|
Chris@350
|
2624 if { { ac_try="$ac_link_default"
|
Chris@350
|
2625 case "(($ac_try" in
|
Chris@350
|
2626 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
2627 *) ac_try_echo=$ac_try;;
|
Chris@350
|
2628 esac
|
Chris@350
|
2629 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
2630 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
2631 (eval "$ac_link_default") 2>&5
|
Chris@350
|
2632 ac_status=$?
|
Chris@350
|
2633 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
2634 test $ac_status = 0; }; then :
|
Chris@350
|
2635 # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
|
Chris@350
|
2636 # So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
|
Chris@350
|
2637 # in a Makefile. We should not override ac_cv_exeext if it was cached,
|
Chris@350
|
2638 # so that the user can short-circuit this test for compilers unknown to
|
Chris@350
|
2639 # Autoconf.
|
Chris@350
|
2640 for ac_file in $ac_files ''
|
Chris@350
|
2641 do
|
Chris@350
|
2642 test -f "$ac_file" || continue
|
Chris@350
|
2643 case $ac_file in
|
Chris@350
|
2644 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
|
Chris@350
|
2645 ;;
|
Chris@350
|
2646 [ab].out )
|
Chris@350
|
2647 # We found the default executable, but exeext='' is most
|
Chris@350
|
2648 # certainly right.
|
Chris@350
|
2649 break;;
|
Chris@350
|
2650 *.* )
|
Chris@350
|
2651 if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
|
Chris@350
|
2652 then :; else
|
Chris@350
|
2653 ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
|
Chris@350
|
2654 fi
|
Chris@350
|
2655 # We set ac_cv_exeext here because the later test for it is not
|
Chris@350
|
2656 # safe: cross compilers may not add the suffix if given an `-o'
|
Chris@350
|
2657 # argument, so we may need to know it at that point already.
|
Chris@350
|
2658 # Even if this section looks crufty: it has the advantage of
|
Chris@350
|
2659 # actually working.
|
Chris@350
|
2660 break;;
|
Chris@350
|
2661 * )
|
Chris@350
|
2662 break;;
|
Chris@350
|
2663 esac
|
Chris@350
|
2664 done
|
Chris@350
|
2665 test "$ac_cv_exeext" = no && ac_cv_exeext=
|
Chris@350
|
2666
|
Chris@350
|
2667 else
|
Chris@350
|
2668 ac_file=''
|
Chris@350
|
2669 fi
|
Chris@350
|
2670 if test -z "$ac_file"; then :
|
Chris@350
|
2671 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
2672 $as_echo "no" >&6; }
|
Chris@350
|
2673 $as_echo "$as_me: failed program was:" >&5
|
Chris@350
|
2674 sed 's/^/| /' conftest.$ac_ext >&5
|
Chris@350
|
2675
|
Chris@350
|
2676 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
Chris@350
|
2677 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
Chris@594
|
2678 as_fn_error 77 "C compiler cannot create executables
|
Chris@594
|
2679 See \`config.log' for more details" "$LINENO" 5; }
|
Chris@350
|
2680 else
|
Chris@350
|
2681 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
2682 $as_echo "yes" >&6; }
|
Chris@350
|
2683 fi
|
Chris@350
|
2684 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
|
Chris@350
|
2685 $as_echo_n "checking for C compiler default output file name... " >&6; }
|
Chris@350
|
2686 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
|
Chris@350
|
2687 $as_echo "$ac_file" >&6; }
|
Chris@350
|
2688 ac_exeext=$ac_cv_exeext
|
Chris@350
|
2689
|
Chris@350
|
2690 rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
|
Chris@350
|
2691 ac_clean_files=$ac_clean_files_save
|
Chris@350
|
2692 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
|
Chris@350
|
2693 $as_echo_n "checking for suffix of executables... " >&6; }
|
Chris@350
|
2694 if { { ac_try="$ac_link"
|
Chris@350
|
2695 case "(($ac_try" in
|
Chris@350
|
2696 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
2697 *) ac_try_echo=$ac_try;;
|
Chris@350
|
2698 esac
|
Chris@350
|
2699 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
2700 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
2701 (eval "$ac_link") 2>&5
|
Chris@350
|
2702 ac_status=$?
|
Chris@350
|
2703 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
2704 test $ac_status = 0; }; then :
|
Chris@350
|
2705 # If both `conftest.exe' and `conftest' are `present' (well, observable)
|
Chris@350
|
2706 # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
|
Chris@350
|
2707 # work properly (i.e., refer to `conftest.exe'), while it won't with
|
Chris@350
|
2708 # `rm'.
|
Chris@350
|
2709 for ac_file in conftest.exe conftest conftest.*; do
|
Chris@350
|
2710 test -f "$ac_file" || continue
|
Chris@350
|
2711 case $ac_file in
|
Chris@350
|
2712 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
|
Chris@350
|
2713 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
|
Chris@350
|
2714 break;;
|
Chris@350
|
2715 * ) break;;
|
Chris@350
|
2716 esac
|
Chris@350
|
2717 done
|
Chris@350
|
2718 else
|
Chris@350
|
2719 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
Chris@350
|
2720 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
Chris@594
|
2721 as_fn_error $? "cannot compute suffix of executables: cannot compile and link
|
Chris@594
|
2722 See \`config.log' for more details" "$LINENO" 5; }
|
Chris@350
|
2723 fi
|
Chris@350
|
2724 rm -f conftest conftest$ac_cv_exeext
|
Chris@350
|
2725 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
|
Chris@350
|
2726 $as_echo "$ac_cv_exeext" >&6; }
|
Chris@350
|
2727
|
Chris@350
|
2728 rm -f conftest.$ac_ext
|
Chris@350
|
2729 EXEEXT=$ac_cv_exeext
|
Chris@350
|
2730 ac_exeext=$EXEEXT
|
Chris@350
|
2731 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
2732 /* end confdefs.h. */
|
Chris@350
|
2733 #include <stdio.h>
|
Chris@350
|
2734 int
|
Chris@350
|
2735 main ()
|
Chris@350
|
2736 {
|
Chris@350
|
2737 FILE *f = fopen ("conftest.out", "w");
|
Chris@350
|
2738 return ferror (f) || fclose (f) != 0;
|
Chris@350
|
2739
|
Chris@350
|
2740 ;
|
Chris@350
|
2741 return 0;
|
Chris@350
|
2742 }
|
Chris@350
|
2743 _ACEOF
|
Chris@350
|
2744 ac_clean_files="$ac_clean_files conftest.out"
|
Chris@350
|
2745 # Check that the compiler produces executables we can run. If not, either
|
Chris@350
|
2746 # the compiler is broken, or we cross compile.
|
Chris@350
|
2747 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
|
Chris@350
|
2748 $as_echo_n "checking whether we are cross compiling... " >&6; }
|
Chris@350
|
2749 if test "$cross_compiling" != yes; then
|
Chris@350
|
2750 { { ac_try="$ac_link"
|
Chris@350
|
2751 case "(($ac_try" in
|
Chris@350
|
2752 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
2753 *) ac_try_echo=$ac_try;;
|
Chris@350
|
2754 esac
|
Chris@350
|
2755 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
2756 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
2757 (eval "$ac_link") 2>&5
|
Chris@350
|
2758 ac_status=$?
|
Chris@350
|
2759 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
2760 test $ac_status = 0; }
|
Chris@350
|
2761 if { ac_try='./conftest$ac_cv_exeext'
|
Chris@350
|
2762 { { case "(($ac_try" in
|
Chris@350
|
2763 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
2764 *) ac_try_echo=$ac_try;;
|
Chris@350
|
2765 esac
|
Chris@350
|
2766 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
2767 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
2768 (eval "$ac_try") 2>&5
|
Chris@350
|
2769 ac_status=$?
|
Chris@350
|
2770 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
2771 test $ac_status = 0; }; }; then
|
Chris@350
|
2772 cross_compiling=no
|
Chris@350
|
2773 else
|
Chris@350
|
2774 if test "$cross_compiling" = maybe; then
|
Chris@350
|
2775 cross_compiling=yes
|
Chris@350
|
2776 else
|
Chris@350
|
2777 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
Chris@350
|
2778 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
Chris@594
|
2779 as_fn_error $? "cannot run C compiled programs.
|
Chris@350
|
2780 If you meant to cross compile, use \`--host'.
|
Chris@594
|
2781 See \`config.log' for more details" "$LINENO" 5; }
|
Chris@350
|
2782 fi
|
Chris@350
|
2783 fi
|
Chris@350
|
2784 fi
|
Chris@350
|
2785 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
|
Chris@350
|
2786 $as_echo "$cross_compiling" >&6; }
|
Chris@350
|
2787
|
Chris@350
|
2788 rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
|
Chris@350
|
2789 ac_clean_files=$ac_clean_files_save
|
Chris@350
|
2790 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
|
Chris@350
|
2791 $as_echo_n "checking for suffix of object files... " >&6; }
|
Chris@594
|
2792 if ${ac_cv_objext+:} false; then :
|
Chris@350
|
2793 $as_echo_n "(cached) " >&6
|
Chris@350
|
2794 else
|
Chris@350
|
2795 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
2796 /* end confdefs.h. */
|
Chris@350
|
2797
|
Chris@350
|
2798 int
|
Chris@350
|
2799 main ()
|
Chris@350
|
2800 {
|
Chris@350
|
2801
|
Chris@350
|
2802 ;
|
Chris@350
|
2803 return 0;
|
Chris@350
|
2804 }
|
Chris@350
|
2805 _ACEOF
|
Chris@350
|
2806 rm -f conftest.o conftest.obj
|
Chris@350
|
2807 if { { ac_try="$ac_compile"
|
Chris@350
|
2808 case "(($ac_try" in
|
Chris@350
|
2809 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
2810 *) ac_try_echo=$ac_try;;
|
Chris@350
|
2811 esac
|
Chris@350
|
2812 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
2813 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
2814 (eval "$ac_compile") 2>&5
|
Chris@350
|
2815 ac_status=$?
|
Chris@350
|
2816 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
2817 test $ac_status = 0; }; then :
|
Chris@350
|
2818 for ac_file in conftest.o conftest.obj conftest.*; do
|
Chris@350
|
2819 test -f "$ac_file" || continue;
|
Chris@350
|
2820 case $ac_file in
|
Chris@350
|
2821 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
|
Chris@350
|
2822 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
|
Chris@350
|
2823 break;;
|
Chris@350
|
2824 esac
|
Chris@350
|
2825 done
|
Chris@350
|
2826 else
|
Chris@350
|
2827 $as_echo "$as_me: failed program was:" >&5
|
Chris@350
|
2828 sed 's/^/| /' conftest.$ac_ext >&5
|
Chris@350
|
2829
|
Chris@350
|
2830 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
Chris@350
|
2831 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
Chris@594
|
2832 as_fn_error $? "cannot compute suffix of object files: cannot compile
|
Chris@594
|
2833 See \`config.log' for more details" "$LINENO" 5; }
|
Chris@350
|
2834 fi
|
Chris@350
|
2835 rm -f conftest.$ac_cv_objext conftest.$ac_ext
|
Chris@350
|
2836 fi
|
Chris@350
|
2837 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
|
Chris@350
|
2838 $as_echo "$ac_cv_objext" >&6; }
|
Chris@350
|
2839 OBJEXT=$ac_cv_objext
|
Chris@350
|
2840 ac_objext=$OBJEXT
|
Chris@350
|
2841 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
|
Chris@350
|
2842 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
|
Chris@594
|
2843 if ${ac_cv_c_compiler_gnu+:} false; then :
|
Chris@350
|
2844 $as_echo_n "(cached) " >&6
|
Chris@350
|
2845 else
|
Chris@350
|
2846 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
2847 /* end confdefs.h. */
|
Chris@350
|
2848
|
Chris@350
|
2849 int
|
Chris@350
|
2850 main ()
|
Chris@350
|
2851 {
|
Chris@350
|
2852 #ifndef __GNUC__
|
Chris@350
|
2853 choke me
|
Chris@350
|
2854 #endif
|
Chris@350
|
2855
|
Chris@350
|
2856 ;
|
Chris@350
|
2857 return 0;
|
Chris@350
|
2858 }
|
Chris@350
|
2859 _ACEOF
|
Chris@350
|
2860 if ac_fn_c_try_compile "$LINENO"; then :
|
Chris@350
|
2861 ac_compiler_gnu=yes
|
Chris@350
|
2862 else
|
Chris@350
|
2863 ac_compiler_gnu=no
|
Chris@350
|
2864 fi
|
Chris@350
|
2865 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@350
|
2866 ac_cv_c_compiler_gnu=$ac_compiler_gnu
|
Chris@350
|
2867
|
Chris@350
|
2868 fi
|
Chris@350
|
2869 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
|
Chris@350
|
2870 $as_echo "$ac_cv_c_compiler_gnu" >&6; }
|
Chris@350
|
2871 if test $ac_compiler_gnu = yes; then
|
Chris@350
|
2872 GCC=yes
|
Chris@350
|
2873 else
|
Chris@350
|
2874 GCC=
|
Chris@350
|
2875 fi
|
Chris@350
|
2876 ac_test_CFLAGS=${CFLAGS+set}
|
Chris@350
|
2877 ac_save_CFLAGS=$CFLAGS
|
Chris@350
|
2878 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
|
Chris@350
|
2879 $as_echo_n "checking whether $CC accepts -g... " >&6; }
|
Chris@594
|
2880 if ${ac_cv_prog_cc_g+:} false; then :
|
Chris@350
|
2881 $as_echo_n "(cached) " >&6
|
Chris@350
|
2882 else
|
Chris@350
|
2883 ac_save_c_werror_flag=$ac_c_werror_flag
|
Chris@350
|
2884 ac_c_werror_flag=yes
|
Chris@350
|
2885 ac_cv_prog_cc_g=no
|
Chris@350
|
2886 CFLAGS="-g"
|
Chris@350
|
2887 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
2888 /* end confdefs.h. */
|
Chris@350
|
2889
|
Chris@350
|
2890 int
|
Chris@350
|
2891 main ()
|
Chris@350
|
2892 {
|
Chris@350
|
2893
|
Chris@350
|
2894 ;
|
Chris@350
|
2895 return 0;
|
Chris@350
|
2896 }
|
Chris@350
|
2897 _ACEOF
|
Chris@350
|
2898 if ac_fn_c_try_compile "$LINENO"; then :
|
Chris@350
|
2899 ac_cv_prog_cc_g=yes
|
Chris@350
|
2900 else
|
Chris@350
|
2901 CFLAGS=""
|
Chris@350
|
2902 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
2903 /* end confdefs.h. */
|
Chris@350
|
2904
|
Chris@350
|
2905 int
|
Chris@350
|
2906 main ()
|
Chris@350
|
2907 {
|
Chris@350
|
2908
|
Chris@350
|
2909 ;
|
Chris@350
|
2910 return 0;
|
Chris@350
|
2911 }
|
Chris@350
|
2912 _ACEOF
|
Chris@350
|
2913 if ac_fn_c_try_compile "$LINENO"; then :
|
Chris@350
|
2914
|
Chris@350
|
2915 else
|
Chris@350
|
2916 ac_c_werror_flag=$ac_save_c_werror_flag
|
Chris@350
|
2917 CFLAGS="-g"
|
Chris@350
|
2918 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
2919 /* end confdefs.h. */
|
Chris@350
|
2920
|
Chris@350
|
2921 int
|
Chris@350
|
2922 main ()
|
Chris@350
|
2923 {
|
Chris@350
|
2924
|
Chris@350
|
2925 ;
|
Chris@350
|
2926 return 0;
|
Chris@350
|
2927 }
|
Chris@350
|
2928 _ACEOF
|
Chris@350
|
2929 if ac_fn_c_try_compile "$LINENO"; then :
|
Chris@350
|
2930 ac_cv_prog_cc_g=yes
|
Chris@350
|
2931 fi
|
Chris@350
|
2932 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@350
|
2933 fi
|
Chris@350
|
2934 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@350
|
2935 fi
|
Chris@350
|
2936 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@350
|
2937 ac_c_werror_flag=$ac_save_c_werror_flag
|
Chris@350
|
2938 fi
|
Chris@350
|
2939 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
|
Chris@350
|
2940 $as_echo "$ac_cv_prog_cc_g" >&6; }
|
Chris@350
|
2941 if test "$ac_test_CFLAGS" = set; then
|
Chris@350
|
2942 CFLAGS=$ac_save_CFLAGS
|
Chris@350
|
2943 elif test $ac_cv_prog_cc_g = yes; then
|
Chris@350
|
2944 if test "$GCC" = yes; then
|
Chris@350
|
2945 CFLAGS="-g -O2"
|
Chris@350
|
2946 else
|
Chris@350
|
2947 CFLAGS="-g"
|
Chris@350
|
2948 fi
|
Chris@350
|
2949 else
|
Chris@350
|
2950 if test "$GCC" = yes; then
|
Chris@350
|
2951 CFLAGS="-O2"
|
Chris@350
|
2952 else
|
Chris@350
|
2953 CFLAGS=
|
Chris@350
|
2954 fi
|
Chris@350
|
2955 fi
|
Chris@350
|
2956 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
|
Chris@350
|
2957 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
|
Chris@594
|
2958 if ${ac_cv_prog_cc_c89+:} false; then :
|
Chris@350
|
2959 $as_echo_n "(cached) " >&6
|
Chris@350
|
2960 else
|
Chris@350
|
2961 ac_cv_prog_cc_c89=no
|
Chris@350
|
2962 ac_save_CC=$CC
|
Chris@350
|
2963 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
2964 /* end confdefs.h. */
|
Chris@350
|
2965 #include <stdarg.h>
|
Chris@350
|
2966 #include <stdio.h>
|
Chris@594
|
2967 struct stat;
|
Chris@350
|
2968 /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
|
Chris@350
|
2969 struct buf { int x; };
|
Chris@350
|
2970 FILE * (*rcsopen) (struct buf *, struct stat *, int);
|
Chris@350
|
2971 static char *e (p, i)
|
Chris@350
|
2972 char **p;
|
Chris@350
|
2973 int i;
|
Chris@350
|
2974 {
|
Chris@350
|
2975 return p[i];
|
Chris@350
|
2976 }
|
Chris@350
|
2977 static char *f (char * (*g) (char **, int), char **p, ...)
|
Chris@350
|
2978 {
|
Chris@350
|
2979 char *s;
|
Chris@350
|
2980 va_list v;
|
Chris@350
|
2981 va_start (v,p);
|
Chris@350
|
2982 s = g (p, va_arg (v,int));
|
Chris@350
|
2983 va_end (v);
|
Chris@350
|
2984 return s;
|
Chris@350
|
2985 }
|
Chris@350
|
2986
|
Chris@350
|
2987 /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
|
Chris@350
|
2988 function prototypes and stuff, but not '\xHH' hex character constants.
|
Chris@350
|
2989 These don't provoke an error unfortunately, instead are silently treated
|
Chris@350
|
2990 as 'x'. The following induces an error, until -std is added to get
|
Chris@350
|
2991 proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
|
Chris@350
|
2992 array size at least. It's necessary to write '\x00'==0 to get something
|
Chris@350
|
2993 that's true only with -std. */
|
Chris@350
|
2994 int osf4_cc_array ['\x00' == 0 ? 1 : -1];
|
Chris@350
|
2995
|
Chris@350
|
2996 /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
|
Chris@350
|
2997 inside strings and character constants. */
|
Chris@350
|
2998 #define FOO(x) 'x'
|
Chris@350
|
2999 int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
|
Chris@350
|
3000
|
Chris@350
|
3001 int test (int i, double x);
|
Chris@350
|
3002 struct s1 {int (*f) (int a);};
|
Chris@350
|
3003 struct s2 {int (*f) (double a);};
|
Chris@350
|
3004 int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
|
Chris@350
|
3005 int argc;
|
Chris@350
|
3006 char **argv;
|
Chris@350
|
3007 int
|
Chris@350
|
3008 main ()
|
Chris@350
|
3009 {
|
Chris@350
|
3010 return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
|
Chris@350
|
3011 ;
|
Chris@350
|
3012 return 0;
|
Chris@350
|
3013 }
|
Chris@350
|
3014 _ACEOF
|
Chris@350
|
3015 for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
|
Chris@350
|
3016 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
|
Chris@350
|
3017 do
|
Chris@350
|
3018 CC="$ac_save_CC $ac_arg"
|
Chris@350
|
3019 if ac_fn_c_try_compile "$LINENO"; then :
|
Chris@350
|
3020 ac_cv_prog_cc_c89=$ac_arg
|
Chris@350
|
3021 fi
|
Chris@350
|
3022 rm -f core conftest.err conftest.$ac_objext
|
Chris@350
|
3023 test "x$ac_cv_prog_cc_c89" != "xno" && break
|
Chris@350
|
3024 done
|
Chris@350
|
3025 rm -f conftest.$ac_ext
|
Chris@350
|
3026 CC=$ac_save_CC
|
Chris@350
|
3027
|
Chris@350
|
3028 fi
|
Chris@350
|
3029 # AC_CACHE_VAL
|
Chris@350
|
3030 case "x$ac_cv_prog_cc_c89" in
|
Chris@350
|
3031 x)
|
Chris@350
|
3032 { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
|
Chris@350
|
3033 $as_echo "none needed" >&6; } ;;
|
Chris@350
|
3034 xno)
|
Chris@350
|
3035 { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
|
Chris@350
|
3036 $as_echo "unsupported" >&6; } ;;
|
Chris@350
|
3037 *)
|
Chris@350
|
3038 CC="$CC $ac_cv_prog_cc_c89"
|
Chris@350
|
3039 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
|
Chris@350
|
3040 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
|
Chris@350
|
3041 esac
|
Chris@350
|
3042 if test "x$ac_cv_prog_cc_c89" != xno; then :
|
Chris@350
|
3043
|
Chris@350
|
3044 fi
|
Chris@350
|
3045
|
Chris@350
|
3046 ac_ext=cpp
|
Chris@350
|
3047 ac_cpp='$CXXCPP $CPPFLAGS'
|
Chris@350
|
3048 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
Chris@350
|
3049 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
Chris@350
|
3050 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
Chris@350
|
3051
|
Chris@350
|
3052 ac_ext=cpp
|
Chris@350
|
3053 ac_cpp='$CXXCPP $CPPFLAGS'
|
Chris@350
|
3054 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
Chris@350
|
3055 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
Chris@350
|
3056 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
Chris@350
|
3057 if test -z "$CXX"; then
|
Chris@350
|
3058 if test -n "$CCC"; then
|
Chris@350
|
3059 CXX=$CCC
|
Chris@350
|
3060 else
|
Chris@350
|
3061 if test -n "$ac_tool_prefix"; then
|
Chris@350
|
3062 for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
|
Chris@350
|
3063 do
|
Chris@350
|
3064 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
|
Chris@350
|
3065 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
|
Chris@350
|
3066 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
3067 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
3068 if ${ac_cv_prog_CXX+:} false; then :
|
Chris@350
|
3069 $as_echo_n "(cached) " >&6
|
Chris@350
|
3070 else
|
Chris@350
|
3071 if test -n "$CXX"; then
|
Chris@350
|
3072 ac_cv_prog_CXX="$CXX" # Let the user override the test.
|
Chris@350
|
3073 else
|
Chris@350
|
3074 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
3075 for as_dir in $PATH
|
Chris@350
|
3076 do
|
Chris@350
|
3077 IFS=$as_save_IFS
|
Chris@350
|
3078 test -z "$as_dir" && as_dir=.
|
Chris@350
|
3079 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
3080 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@350
|
3081 ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
|
Chris@350
|
3082 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
3083 break 2
|
Chris@350
|
3084 fi
|
Chris@350
|
3085 done
|
Chris@350
|
3086 done
|
Chris@350
|
3087 IFS=$as_save_IFS
|
Chris@350
|
3088
|
Chris@350
|
3089 fi
|
Chris@350
|
3090 fi
|
Chris@350
|
3091 CXX=$ac_cv_prog_CXX
|
Chris@350
|
3092 if test -n "$CXX"; then
|
Chris@350
|
3093 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5
|
Chris@350
|
3094 $as_echo "$CXX" >&6; }
|
Chris@350
|
3095 else
|
Chris@350
|
3096 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
3097 $as_echo "no" >&6; }
|
Chris@350
|
3098 fi
|
Chris@350
|
3099
|
Chris@350
|
3100
|
Chris@350
|
3101 test -n "$CXX" && break
|
Chris@350
|
3102 done
|
Chris@350
|
3103 fi
|
Chris@350
|
3104 if test -z "$CXX"; then
|
Chris@350
|
3105 ac_ct_CXX=$CXX
|
Chris@350
|
3106 for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC
|
Chris@350
|
3107 do
|
Chris@350
|
3108 # Extract the first word of "$ac_prog", so it can be a program name with args.
|
Chris@350
|
3109 set dummy $ac_prog; ac_word=$2
|
Chris@350
|
3110 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
3111 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
3112 if ${ac_cv_prog_ac_ct_CXX+:} false; then :
|
Chris@350
|
3113 $as_echo_n "(cached) " >&6
|
Chris@350
|
3114 else
|
Chris@350
|
3115 if test -n "$ac_ct_CXX"; then
|
Chris@350
|
3116 ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test.
|
Chris@350
|
3117 else
|
Chris@350
|
3118 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
3119 for as_dir in $PATH
|
Chris@350
|
3120 do
|
Chris@350
|
3121 IFS=$as_save_IFS
|
Chris@350
|
3122 test -z "$as_dir" && as_dir=.
|
Chris@350
|
3123 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
3124 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@350
|
3125 ac_cv_prog_ac_ct_CXX="$ac_prog"
|
Chris@350
|
3126 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
3127 break 2
|
Chris@350
|
3128 fi
|
Chris@350
|
3129 done
|
Chris@350
|
3130 done
|
Chris@350
|
3131 IFS=$as_save_IFS
|
Chris@350
|
3132
|
Chris@350
|
3133 fi
|
Chris@350
|
3134 fi
|
Chris@350
|
3135 ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
|
Chris@350
|
3136 if test -n "$ac_ct_CXX"; then
|
Chris@350
|
3137 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5
|
Chris@350
|
3138 $as_echo "$ac_ct_CXX" >&6; }
|
Chris@350
|
3139 else
|
Chris@350
|
3140 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
3141 $as_echo "no" >&6; }
|
Chris@350
|
3142 fi
|
Chris@350
|
3143
|
Chris@350
|
3144
|
Chris@350
|
3145 test -n "$ac_ct_CXX" && break
|
Chris@350
|
3146 done
|
Chris@350
|
3147
|
Chris@350
|
3148 if test "x$ac_ct_CXX" = x; then
|
Chris@350
|
3149 CXX="g++"
|
Chris@350
|
3150 else
|
Chris@350
|
3151 case $cross_compiling:$ac_tool_warned in
|
Chris@350
|
3152 yes:)
|
Chris@350
|
3153 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
|
Chris@350
|
3154 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
|
Chris@350
|
3155 ac_tool_warned=yes ;;
|
Chris@350
|
3156 esac
|
Chris@350
|
3157 CXX=$ac_ct_CXX
|
Chris@350
|
3158 fi
|
Chris@350
|
3159 fi
|
Chris@350
|
3160
|
Chris@350
|
3161 fi
|
Chris@350
|
3162 fi
|
Chris@350
|
3163 # Provide some information about the compiler.
|
Chris@350
|
3164 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5
|
Chris@350
|
3165 set X $ac_compile
|
Chris@350
|
3166 ac_compiler=$2
|
Chris@350
|
3167 for ac_option in --version -v -V -qversion; do
|
Chris@350
|
3168 { { ac_try="$ac_compiler $ac_option >&5"
|
Chris@350
|
3169 case "(($ac_try" in
|
Chris@350
|
3170 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
Chris@350
|
3171 *) ac_try_echo=$ac_try;;
|
Chris@350
|
3172 esac
|
Chris@350
|
3173 eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
Chris@350
|
3174 $as_echo "$ac_try_echo"; } >&5
|
Chris@350
|
3175 (eval "$ac_compiler $ac_option >&5") 2>conftest.err
|
Chris@350
|
3176 ac_status=$?
|
Chris@350
|
3177 if test -s conftest.err; then
|
Chris@350
|
3178 sed '10a\
|
Chris@350
|
3179 ... rest of stderr output deleted ...
|
Chris@350
|
3180 10q' conftest.err >conftest.er1
|
Chris@350
|
3181 cat conftest.er1 >&5
|
Chris@350
|
3182 fi
|
Chris@350
|
3183 rm -f conftest.er1 conftest.err
|
Chris@350
|
3184 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
3185 test $ac_status = 0; }
|
Chris@350
|
3186 done
|
Chris@350
|
3187
|
Chris@350
|
3188 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5
|
Chris@350
|
3189 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
|
Chris@594
|
3190 if ${ac_cv_cxx_compiler_gnu+:} false; then :
|
Chris@350
|
3191 $as_echo_n "(cached) " >&6
|
Chris@350
|
3192 else
|
Chris@350
|
3193 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
3194 /* end confdefs.h. */
|
Chris@350
|
3195
|
Chris@350
|
3196 int
|
Chris@350
|
3197 main ()
|
Chris@350
|
3198 {
|
Chris@350
|
3199 #ifndef __GNUC__
|
Chris@350
|
3200 choke me
|
Chris@350
|
3201 #endif
|
Chris@350
|
3202
|
Chris@350
|
3203 ;
|
Chris@350
|
3204 return 0;
|
Chris@350
|
3205 }
|
Chris@350
|
3206 _ACEOF
|
Chris@350
|
3207 if ac_fn_cxx_try_compile "$LINENO"; then :
|
Chris@350
|
3208 ac_compiler_gnu=yes
|
Chris@350
|
3209 else
|
Chris@350
|
3210 ac_compiler_gnu=no
|
Chris@350
|
3211 fi
|
Chris@350
|
3212 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@350
|
3213 ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
|
Chris@350
|
3214
|
Chris@350
|
3215 fi
|
Chris@350
|
3216 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5
|
Chris@350
|
3217 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; }
|
Chris@350
|
3218 if test $ac_compiler_gnu = yes; then
|
Chris@350
|
3219 GXX=yes
|
Chris@350
|
3220 else
|
Chris@350
|
3221 GXX=
|
Chris@350
|
3222 fi
|
Chris@350
|
3223 ac_test_CXXFLAGS=${CXXFLAGS+set}
|
Chris@350
|
3224 ac_save_CXXFLAGS=$CXXFLAGS
|
Chris@350
|
3225 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5
|
Chris@350
|
3226 $as_echo_n "checking whether $CXX accepts -g... " >&6; }
|
Chris@594
|
3227 if ${ac_cv_prog_cxx_g+:} false; then :
|
Chris@350
|
3228 $as_echo_n "(cached) " >&6
|
Chris@350
|
3229 else
|
Chris@350
|
3230 ac_save_cxx_werror_flag=$ac_cxx_werror_flag
|
Chris@350
|
3231 ac_cxx_werror_flag=yes
|
Chris@350
|
3232 ac_cv_prog_cxx_g=no
|
Chris@350
|
3233 CXXFLAGS="-g"
|
Chris@350
|
3234 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
3235 /* end confdefs.h. */
|
Chris@350
|
3236
|
Chris@350
|
3237 int
|
Chris@350
|
3238 main ()
|
Chris@350
|
3239 {
|
Chris@350
|
3240
|
Chris@350
|
3241 ;
|
Chris@350
|
3242 return 0;
|
Chris@350
|
3243 }
|
Chris@350
|
3244 _ACEOF
|
Chris@350
|
3245 if ac_fn_cxx_try_compile "$LINENO"; then :
|
Chris@350
|
3246 ac_cv_prog_cxx_g=yes
|
Chris@350
|
3247 else
|
Chris@350
|
3248 CXXFLAGS=""
|
Chris@350
|
3249 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
3250 /* end confdefs.h. */
|
Chris@350
|
3251
|
Chris@350
|
3252 int
|
Chris@350
|
3253 main ()
|
Chris@350
|
3254 {
|
Chris@350
|
3255
|
Chris@350
|
3256 ;
|
Chris@350
|
3257 return 0;
|
Chris@350
|
3258 }
|
Chris@350
|
3259 _ACEOF
|
Chris@350
|
3260 if ac_fn_cxx_try_compile "$LINENO"; then :
|
Chris@350
|
3261
|
Chris@350
|
3262 else
|
Chris@350
|
3263 ac_cxx_werror_flag=$ac_save_cxx_werror_flag
|
Chris@350
|
3264 CXXFLAGS="-g"
|
Chris@350
|
3265 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
3266 /* end confdefs.h. */
|
Chris@350
|
3267
|
Chris@350
|
3268 int
|
Chris@350
|
3269 main ()
|
Chris@350
|
3270 {
|
Chris@350
|
3271
|
Chris@350
|
3272 ;
|
Chris@350
|
3273 return 0;
|
Chris@350
|
3274 }
|
Chris@350
|
3275 _ACEOF
|
Chris@350
|
3276 if ac_fn_cxx_try_compile "$LINENO"; then :
|
Chris@350
|
3277 ac_cv_prog_cxx_g=yes
|
Chris@350
|
3278 fi
|
Chris@350
|
3279 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@350
|
3280 fi
|
Chris@350
|
3281 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@350
|
3282 fi
|
Chris@350
|
3283 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@350
|
3284 ac_cxx_werror_flag=$ac_save_cxx_werror_flag
|
Chris@350
|
3285 fi
|
Chris@350
|
3286 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5
|
Chris@350
|
3287 $as_echo "$ac_cv_prog_cxx_g" >&6; }
|
Chris@350
|
3288 if test "$ac_test_CXXFLAGS" = set; then
|
Chris@350
|
3289 CXXFLAGS=$ac_save_CXXFLAGS
|
Chris@350
|
3290 elif test $ac_cv_prog_cxx_g = yes; then
|
Chris@350
|
3291 if test "$GXX" = yes; then
|
Chris@350
|
3292 CXXFLAGS="-g -O2"
|
Chris@350
|
3293 else
|
Chris@350
|
3294 CXXFLAGS="-g"
|
Chris@350
|
3295 fi
|
Chris@350
|
3296 else
|
Chris@350
|
3297 if test "$GXX" = yes; then
|
Chris@350
|
3298 CXXFLAGS="-O2"
|
Chris@350
|
3299 else
|
Chris@350
|
3300 CXXFLAGS=
|
Chris@350
|
3301 fi
|
Chris@350
|
3302 fi
|
Chris@350
|
3303 ac_ext=cpp
|
Chris@350
|
3304 ac_cpp='$CXXCPP $CPPFLAGS'
|
Chris@350
|
3305 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
Chris@350
|
3306 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
Chris@350
|
3307 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
Chris@350
|
3308
|
Chris@350
|
3309 ac_aux_dir=
|
Chris@350
|
3310 for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
|
Chris@594
|
3311 if test -f "$ac_dir/install-sh"; then
|
Chris@594
|
3312 ac_aux_dir=$ac_dir
|
Chris@594
|
3313 ac_install_sh="$ac_aux_dir/install-sh -c"
|
Chris@594
|
3314 break
|
Chris@594
|
3315 elif test -f "$ac_dir/install.sh"; then
|
Chris@594
|
3316 ac_aux_dir=$ac_dir
|
Chris@594
|
3317 ac_install_sh="$ac_aux_dir/install.sh -c"
|
Chris@594
|
3318 break
|
Chris@594
|
3319 elif test -f "$ac_dir/shtool"; then
|
Chris@594
|
3320 ac_aux_dir=$ac_dir
|
Chris@594
|
3321 ac_install_sh="$ac_aux_dir/shtool install -c"
|
Chris@594
|
3322 break
|
Chris@594
|
3323 fi
|
Chris@350
|
3324 done
|
Chris@350
|
3325 if test -z "$ac_aux_dir"; then
|
Chris@594
|
3326 as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
|
Chris@350
|
3327 fi
|
Chris@350
|
3328
|
Chris@350
|
3329 # These three variables are undocumented and unsupported,
|
Chris@350
|
3330 # and are intended to be withdrawn in a future Autoconf release.
|
Chris@350
|
3331 # They can cause serious problems if a builder's source tree is in a directory
|
Chris@350
|
3332 # whose full name contains unusual characters.
|
Chris@350
|
3333 ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
|
Chris@350
|
3334 ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
|
Chris@350
|
3335 ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
|
Chris@350
|
3336
|
Chris@350
|
3337
|
Chris@350
|
3338 # Find a good install program. We prefer a C program (faster),
|
Chris@350
|
3339 # so one script is as good as another. But avoid the broken or
|
Chris@350
|
3340 # incompatible versions:
|
Chris@350
|
3341 # SysV /etc/install, /usr/sbin/install
|
Chris@350
|
3342 # SunOS /usr/etc/install
|
Chris@350
|
3343 # IRIX /sbin/install
|
Chris@350
|
3344 # AIX /bin/install
|
Chris@350
|
3345 # AmigaOS /C/install, which installs bootblocks on floppy discs
|
Chris@350
|
3346 # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
|
Chris@350
|
3347 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
|
Chris@350
|
3348 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
Chris@350
|
3349 # OS/2's system install, which has a completely different semantic
|
Chris@350
|
3350 # ./install, which can be erroneously created by make from ./install.sh.
|
Chris@350
|
3351 # Reject install programs that cannot install multiple files.
|
Chris@350
|
3352 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
|
Chris@350
|
3353 $as_echo_n "checking for a BSD-compatible install... " >&6; }
|
Chris@350
|
3354 if test -z "$INSTALL"; then
|
Chris@594
|
3355 if ${ac_cv_path_install+:} false; then :
|
Chris@350
|
3356 $as_echo_n "(cached) " >&6
|
Chris@350
|
3357 else
|
Chris@350
|
3358 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
3359 for as_dir in $PATH
|
Chris@350
|
3360 do
|
Chris@350
|
3361 IFS=$as_save_IFS
|
Chris@350
|
3362 test -z "$as_dir" && as_dir=.
|
Chris@350
|
3363 # Account for people who put trailing slashes in PATH elements.
|
Chris@350
|
3364 case $as_dir/ in #((
|
Chris@350
|
3365 ./ | .// | /[cC]/* | \
|
Chris@350
|
3366 /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
|
Chris@350
|
3367 ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
|
Chris@350
|
3368 /usr/ucb/* ) ;;
|
Chris@350
|
3369 *)
|
Chris@350
|
3370 # OSF1 and SCO ODT 3.0 have their own names for install.
|
Chris@350
|
3371 # Don't use installbsd from OSF since it installs stuff as root
|
Chris@350
|
3372 # by default.
|
Chris@350
|
3373 for ac_prog in ginstall scoinst install; do
|
Chris@350
|
3374 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
3375 if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
|
Chris@350
|
3376 if test $ac_prog = install &&
|
Chris@350
|
3377 grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
|
Chris@350
|
3378 # AIX install. It has an incompatible calling convention.
|
Chris@350
|
3379 :
|
Chris@350
|
3380 elif test $ac_prog = install &&
|
Chris@350
|
3381 grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
|
Chris@350
|
3382 # program-specific install script used by HP pwplus--don't use.
|
Chris@350
|
3383 :
|
Chris@350
|
3384 else
|
Chris@350
|
3385 rm -rf conftest.one conftest.two conftest.dir
|
Chris@350
|
3386 echo one > conftest.one
|
Chris@350
|
3387 echo two > conftest.two
|
Chris@350
|
3388 mkdir conftest.dir
|
Chris@350
|
3389 if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
|
Chris@350
|
3390 test -s conftest.one && test -s conftest.two &&
|
Chris@350
|
3391 test -s conftest.dir/conftest.one &&
|
Chris@350
|
3392 test -s conftest.dir/conftest.two
|
Chris@350
|
3393 then
|
Chris@350
|
3394 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
|
Chris@350
|
3395 break 3
|
Chris@350
|
3396 fi
|
Chris@350
|
3397 fi
|
Chris@350
|
3398 fi
|
Chris@350
|
3399 done
|
Chris@350
|
3400 done
|
Chris@350
|
3401 ;;
|
Chris@350
|
3402 esac
|
Chris@350
|
3403
|
Chris@350
|
3404 done
|
Chris@350
|
3405 IFS=$as_save_IFS
|
Chris@350
|
3406
|
Chris@350
|
3407 rm -rf conftest.one conftest.two conftest.dir
|
Chris@350
|
3408
|
Chris@350
|
3409 fi
|
Chris@350
|
3410 if test "${ac_cv_path_install+set}" = set; then
|
Chris@350
|
3411 INSTALL=$ac_cv_path_install
|
Chris@350
|
3412 else
|
Chris@350
|
3413 # As a last resort, use the slow shell script. Don't cache a
|
Chris@350
|
3414 # value for INSTALL within a source directory, because that will
|
Chris@350
|
3415 # break other packages using the cache if that directory is
|
Chris@350
|
3416 # removed, or if the value is a relative name.
|
Chris@350
|
3417 INSTALL=$ac_install_sh
|
Chris@350
|
3418 fi
|
Chris@350
|
3419 fi
|
Chris@350
|
3420 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
|
Chris@350
|
3421 $as_echo "$INSTALL" >&6; }
|
Chris@350
|
3422
|
Chris@350
|
3423 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
|
Chris@350
|
3424 # It thinks the first close brace ends the variable substitution.
|
Chris@350
|
3425 test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
|
Chris@350
|
3426
|
Chris@350
|
3427 test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
|
Chris@350
|
3428
|
Chris@350
|
3429 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
Chris@350
|
3430
|
Chris@350
|
3431 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
|
Chris@350
|
3432 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
|
Chris@350
|
3433 if test -z "$MKDIR_P"; then
|
Chris@594
|
3434 if ${ac_cv_path_mkdir+:} false; then :
|
Chris@350
|
3435 $as_echo_n "(cached) " >&6
|
Chris@350
|
3436 else
|
Chris@350
|
3437 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
3438 for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
|
Chris@350
|
3439 do
|
Chris@350
|
3440 IFS=$as_save_IFS
|
Chris@350
|
3441 test -z "$as_dir" && as_dir=.
|
Chris@350
|
3442 for ac_prog in mkdir gmkdir; do
|
Chris@350
|
3443 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
3444 as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
|
Chris@350
|
3445 case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
|
Chris@350
|
3446 'mkdir (GNU coreutils) '* | \
|
Chris@350
|
3447 'mkdir (coreutils) '* | \
|
Chris@350
|
3448 'mkdir (fileutils) '4.1*)
|
Chris@350
|
3449 ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
|
Chris@350
|
3450 break 3;;
|
Chris@350
|
3451 esac
|
Chris@350
|
3452 done
|
Chris@350
|
3453 done
|
Chris@350
|
3454 done
|
Chris@350
|
3455 IFS=$as_save_IFS
|
Chris@350
|
3456
|
Chris@350
|
3457 fi
|
Chris@350
|
3458
|
Chris@350
|
3459 test -d ./--version && rmdir ./--version
|
Chris@350
|
3460 if test "${ac_cv_path_mkdir+set}" = set; then
|
Chris@350
|
3461 MKDIR_P="$ac_cv_path_mkdir -p"
|
Chris@350
|
3462 else
|
Chris@350
|
3463 # As a last resort, use the slow shell script. Don't cache a
|
Chris@350
|
3464 # value for MKDIR_P within a source directory, because that will
|
Chris@350
|
3465 # break other packages using the cache if that directory is
|
Chris@350
|
3466 # removed, or if the value is a relative name.
|
Chris@350
|
3467 MKDIR_P="$ac_install_sh -d"
|
Chris@350
|
3468 fi
|
Chris@350
|
3469 fi
|
Chris@350
|
3470 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
|
Chris@350
|
3471 $as_echo "$MKDIR_P" >&6; }
|
Chris@350
|
3472
|
Chris@350
|
3473
|
Chris@884
|
3474 # We are daringly making use of C++11 now
|
Chris@884
|
3475
|
Chris@884
|
3476 ax_cxx_compile_cxx11_required=true
|
Chris@884
|
3477 ac_ext=cpp
|
Chris@884
|
3478 ac_cpp='$CXXCPP $CPPFLAGS'
|
Chris@884
|
3479 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
Chris@884
|
3480 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
Chris@884
|
3481 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
Chris@884
|
3482 ac_success=no
|
Chris@884
|
3483 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features by default" >&5
|
Chris@884
|
3484 $as_echo_n "checking whether $CXX supports C++11 features by default... " >&6; }
|
Chris@884
|
3485 if ${ax_cv_cxx_compile_cxx11+:} false; then :
|
Chris@884
|
3486 $as_echo_n "(cached) " >&6
|
Chris@884
|
3487 else
|
Chris@884
|
3488 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@884
|
3489 /* end confdefs.h. */
|
Chris@884
|
3490
|
Chris@884
|
3491 template <typename T>
|
Chris@884
|
3492 struct check
|
Chris@884
|
3493 {
|
Chris@884
|
3494 static_assert(sizeof(int) <= sizeof(T), "not big enough");
|
Chris@884
|
3495 };
|
Chris@884
|
3496
|
Chris@884
|
3497 struct Base {
|
Chris@884
|
3498 virtual void f() {}
|
Chris@884
|
3499 };
|
Chris@884
|
3500 struct Child : public Base {
|
Chris@884
|
3501 virtual void f() override {}
|
Chris@884
|
3502 };
|
Chris@884
|
3503
|
Chris@884
|
3504 typedef check<check<bool>> right_angle_brackets;
|
Chris@884
|
3505
|
Chris@884
|
3506 int a;
|
Chris@884
|
3507 decltype(a) b;
|
Chris@884
|
3508
|
Chris@884
|
3509 typedef check<int> check_type;
|
Chris@884
|
3510 check_type c;
|
Chris@884
|
3511 check_type&& cr = static_cast<check_type&&>(c);
|
Chris@884
|
3512
|
Chris@884
|
3513 auto d = a;
|
Chris@884
|
3514 auto l = [](){};
|
Chris@884
|
3515
|
Chris@884
|
3516 _ACEOF
|
Chris@884
|
3517 if ac_fn_cxx_try_compile "$LINENO"; then :
|
Chris@884
|
3518 ax_cv_cxx_compile_cxx11=yes
|
Chris@884
|
3519 else
|
Chris@884
|
3520 ax_cv_cxx_compile_cxx11=no
|
Chris@884
|
3521 fi
|
Chris@884
|
3522 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@884
|
3523 fi
|
Chris@884
|
3524 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_cxx_compile_cxx11" >&5
|
Chris@884
|
3525 $as_echo "$ax_cv_cxx_compile_cxx11" >&6; }
|
Chris@884
|
3526 if test x$ax_cv_cxx_compile_cxx11 = xyes; then
|
Chris@884
|
3527 ac_success=yes
|
Chris@884
|
3528 fi
|
Chris@884
|
3529
|
Chris@884
|
3530
|
Chris@884
|
3531
|
Chris@884
|
3532 if test x$ac_success = xno; then
|
Chris@884
|
3533 for switch in -std=c++11 -std=c++0x; do
|
Chris@884
|
3534 cachevar=`$as_echo "ax_cv_cxx_compile_cxx11_$switch" | $as_tr_sh`
|
Chris@884
|
3535 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features with $switch" >&5
|
Chris@884
|
3536 $as_echo_n "checking whether $CXX supports C++11 features with $switch... " >&6; }
|
Chris@884
|
3537 if eval \${$cachevar+:} false; then :
|
Chris@884
|
3538 $as_echo_n "(cached) " >&6
|
Chris@884
|
3539 else
|
Chris@884
|
3540 ac_save_CXXFLAGS="$CXXFLAGS"
|
Chris@884
|
3541 CXXFLAGS="$CXXFLAGS $switch"
|
Chris@884
|
3542 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@884
|
3543 /* end confdefs.h. */
|
Chris@884
|
3544
|
Chris@884
|
3545 template <typename T>
|
Chris@884
|
3546 struct check
|
Chris@884
|
3547 {
|
Chris@884
|
3548 static_assert(sizeof(int) <= sizeof(T), "not big enough");
|
Chris@884
|
3549 };
|
Chris@884
|
3550
|
Chris@884
|
3551 struct Base {
|
Chris@884
|
3552 virtual void f() {}
|
Chris@884
|
3553 };
|
Chris@884
|
3554 struct Child : public Base {
|
Chris@884
|
3555 virtual void f() override {}
|
Chris@884
|
3556 };
|
Chris@884
|
3557
|
Chris@884
|
3558 typedef check<check<bool>> right_angle_brackets;
|
Chris@884
|
3559
|
Chris@884
|
3560 int a;
|
Chris@884
|
3561 decltype(a) b;
|
Chris@884
|
3562
|
Chris@884
|
3563 typedef check<int> check_type;
|
Chris@884
|
3564 check_type c;
|
Chris@884
|
3565 check_type&& cr = static_cast<check_type&&>(c);
|
Chris@884
|
3566
|
Chris@884
|
3567 auto d = a;
|
Chris@884
|
3568 auto l = [](){};
|
Chris@884
|
3569
|
Chris@884
|
3570 _ACEOF
|
Chris@884
|
3571 if ac_fn_cxx_try_compile "$LINENO"; then :
|
Chris@884
|
3572 eval $cachevar=yes
|
Chris@884
|
3573 else
|
Chris@884
|
3574 eval $cachevar=no
|
Chris@884
|
3575 fi
|
Chris@884
|
3576 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@884
|
3577 CXXFLAGS="$ac_save_CXXFLAGS"
|
Chris@884
|
3578 fi
|
Chris@884
|
3579 eval ac_res=\$$cachevar
|
Chris@884
|
3580 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@884
|
3581 $as_echo "$ac_res" >&6; }
|
Chris@884
|
3582 if eval test x\$$cachevar = xyes; then
|
Chris@884
|
3583 CXXFLAGS="$CXXFLAGS $switch"
|
Chris@884
|
3584 ac_success=yes
|
Chris@884
|
3585 break
|
Chris@884
|
3586 fi
|
Chris@884
|
3587 done
|
Chris@884
|
3588 fi
|
Chris@884
|
3589 ac_ext=cpp
|
Chris@884
|
3590 ac_cpp='$CXXCPP $CPPFLAGS'
|
Chris@884
|
3591 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
Chris@884
|
3592 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
Chris@884
|
3593 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
Chris@884
|
3594
|
Chris@884
|
3595 if test x$ax_cxx_compile_cxx11_required = xtrue; then
|
Chris@884
|
3596 if test x$ac_success = xno; then
|
Chris@884
|
3597 as_fn_error $? "*** A compiler with support for C++11 language features is required." "$LINENO" 5
|
Chris@884
|
3598 fi
|
Chris@884
|
3599 else
|
Chris@884
|
3600 if test x$ac_success = xno; then
|
Chris@884
|
3601 HAVE_CXX11=0
|
Chris@884
|
3602 { $as_echo "$as_me:${as_lineno-$LINENO}: No compiler with C++11 support was found" >&5
|
Chris@884
|
3603 $as_echo "$as_me: No compiler with C++11 support was found" >&6;}
|
Chris@884
|
3604 else
|
Chris@884
|
3605 HAVE_CXX11=1
|
Chris@884
|
3606
|
Chris@884
|
3607 $as_echo "#define HAVE_CXX11 1" >>confdefs.h
|
Chris@884
|
3608
|
Chris@884
|
3609 fi
|
Chris@884
|
3610
|
Chris@884
|
3611
|
Chris@884
|
3612 fi
|
Chris@884
|
3613
|
Chris@350
|
3614
|
Chris@350
|
3615 ac_ext=cpp
|
Chris@350
|
3616 ac_cpp='$CXXCPP $CPPFLAGS'
|
Chris@350
|
3617 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
Chris@350
|
3618 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
Chris@350
|
3619 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
Chris@350
|
3620 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5
|
Chris@350
|
3621 $as_echo_n "checking how to run the C++ preprocessor... " >&6; }
|
Chris@350
|
3622 if test -z "$CXXCPP"; then
|
Chris@594
|
3623 if ${ac_cv_prog_CXXCPP+:} false; then :
|
Chris@350
|
3624 $as_echo_n "(cached) " >&6
|
Chris@350
|
3625 else
|
Chris@350
|
3626 # Double quotes because CXXCPP needs to be expanded
|
Chris@350
|
3627 for CXXCPP in "$CXX -E" "/lib/cpp"
|
Chris@350
|
3628 do
|
Chris@350
|
3629 ac_preproc_ok=false
|
Chris@350
|
3630 for ac_cxx_preproc_warn_flag in '' yes
|
Chris@350
|
3631 do
|
Chris@350
|
3632 # Use a header file that comes with gcc, so configuring glibc
|
Chris@350
|
3633 # with a fresh cross-compiler works.
|
Chris@350
|
3634 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
Chris@350
|
3635 # <limits.h> exists even on freestanding compilers.
|
Chris@350
|
3636 # On the NeXT, cc -E runs the code through the compiler's parser,
|
Chris@350
|
3637 # not just through cpp. "Syntax error" is here to catch this case.
|
Chris@350
|
3638 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
3639 /* end confdefs.h. */
|
Chris@350
|
3640 #ifdef __STDC__
|
Chris@350
|
3641 # include <limits.h>
|
Chris@350
|
3642 #else
|
Chris@350
|
3643 # include <assert.h>
|
Chris@350
|
3644 #endif
|
Chris@350
|
3645 Syntax error
|
Chris@350
|
3646 _ACEOF
|
Chris@350
|
3647 if ac_fn_cxx_try_cpp "$LINENO"; then :
|
Chris@350
|
3648
|
Chris@350
|
3649 else
|
Chris@350
|
3650 # Broken: fails on valid input.
|
Chris@350
|
3651 continue
|
Chris@350
|
3652 fi
|
Chris@594
|
3653 rm -f conftest.err conftest.i conftest.$ac_ext
|
Chris@350
|
3654
|
Chris@350
|
3655 # OK, works on sane cases. Now check whether nonexistent headers
|
Chris@350
|
3656 # can be detected and how.
|
Chris@350
|
3657 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
3658 /* end confdefs.h. */
|
Chris@350
|
3659 #include <ac_nonexistent.h>
|
Chris@350
|
3660 _ACEOF
|
Chris@350
|
3661 if ac_fn_cxx_try_cpp "$LINENO"; then :
|
Chris@350
|
3662 # Broken: success on invalid input.
|
Chris@350
|
3663 continue
|
Chris@350
|
3664 else
|
Chris@350
|
3665 # Passes both tests.
|
Chris@350
|
3666 ac_preproc_ok=:
|
Chris@350
|
3667 break
|
Chris@350
|
3668 fi
|
Chris@594
|
3669 rm -f conftest.err conftest.i conftest.$ac_ext
|
Chris@350
|
3670
|
Chris@350
|
3671 done
|
Chris@350
|
3672 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
|
Chris@594
|
3673 rm -f conftest.i conftest.err conftest.$ac_ext
|
Chris@350
|
3674 if $ac_preproc_ok; then :
|
Chris@350
|
3675 break
|
Chris@350
|
3676 fi
|
Chris@350
|
3677
|
Chris@350
|
3678 done
|
Chris@350
|
3679 ac_cv_prog_CXXCPP=$CXXCPP
|
Chris@350
|
3680
|
Chris@350
|
3681 fi
|
Chris@350
|
3682 CXXCPP=$ac_cv_prog_CXXCPP
|
Chris@350
|
3683 else
|
Chris@350
|
3684 ac_cv_prog_CXXCPP=$CXXCPP
|
Chris@350
|
3685 fi
|
Chris@350
|
3686 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5
|
Chris@350
|
3687 $as_echo "$CXXCPP" >&6; }
|
Chris@350
|
3688 ac_preproc_ok=false
|
Chris@350
|
3689 for ac_cxx_preproc_warn_flag in '' yes
|
Chris@350
|
3690 do
|
Chris@350
|
3691 # Use a header file that comes with gcc, so configuring glibc
|
Chris@350
|
3692 # with a fresh cross-compiler works.
|
Chris@350
|
3693 # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
Chris@350
|
3694 # <limits.h> exists even on freestanding compilers.
|
Chris@350
|
3695 # On the NeXT, cc -E runs the code through the compiler's parser,
|
Chris@350
|
3696 # not just through cpp. "Syntax error" is here to catch this case.
|
Chris@350
|
3697 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
3698 /* end confdefs.h. */
|
Chris@350
|
3699 #ifdef __STDC__
|
Chris@350
|
3700 # include <limits.h>
|
Chris@350
|
3701 #else
|
Chris@350
|
3702 # include <assert.h>
|
Chris@350
|
3703 #endif
|
Chris@350
|
3704 Syntax error
|
Chris@350
|
3705 _ACEOF
|
Chris@350
|
3706 if ac_fn_cxx_try_cpp "$LINENO"; then :
|
Chris@350
|
3707
|
Chris@350
|
3708 else
|
Chris@350
|
3709 # Broken: fails on valid input.
|
Chris@350
|
3710 continue
|
Chris@350
|
3711 fi
|
Chris@594
|
3712 rm -f conftest.err conftest.i conftest.$ac_ext
|
Chris@350
|
3713
|
Chris@350
|
3714 # OK, works on sane cases. Now check whether nonexistent headers
|
Chris@350
|
3715 # can be detected and how.
|
Chris@350
|
3716 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
3717 /* end confdefs.h. */
|
Chris@350
|
3718 #include <ac_nonexistent.h>
|
Chris@350
|
3719 _ACEOF
|
Chris@350
|
3720 if ac_fn_cxx_try_cpp "$LINENO"; then :
|
Chris@350
|
3721 # Broken: success on invalid input.
|
Chris@350
|
3722 continue
|
Chris@350
|
3723 else
|
Chris@350
|
3724 # Passes both tests.
|
Chris@350
|
3725 ac_preproc_ok=:
|
Chris@350
|
3726 break
|
Chris@350
|
3727 fi
|
Chris@594
|
3728 rm -f conftest.err conftest.i conftest.$ac_ext
|
Chris@350
|
3729
|
Chris@350
|
3730 done
|
Chris@350
|
3731 # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
|
Chris@594
|
3732 rm -f conftest.i conftest.err conftest.$ac_ext
|
Chris@350
|
3733 if $ac_preproc_ok; then :
|
Chris@350
|
3734
|
Chris@350
|
3735 else
|
Chris@350
|
3736 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
Chris@350
|
3737 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
Chris@594
|
3738 as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check
|
Chris@594
|
3739 See \`config.log' for more details" "$LINENO" 5; }
|
Chris@350
|
3740 fi
|
Chris@350
|
3741
|
Chris@350
|
3742 ac_ext=cpp
|
Chris@350
|
3743 ac_cpp='$CXXCPP $CPPFLAGS'
|
Chris@350
|
3744 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
Chris@350
|
3745 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
Chris@350
|
3746 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
Chris@350
|
3747
|
Chris@350
|
3748
|
Chris@350
|
3749 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
|
Chris@350
|
3750 $as_echo_n "checking for grep that handles long lines and -e... " >&6; }
|
Chris@594
|
3751 if ${ac_cv_path_GREP+:} false; then :
|
Chris@350
|
3752 $as_echo_n "(cached) " >&6
|
Chris@350
|
3753 else
|
Chris@350
|
3754 if test -z "$GREP"; then
|
Chris@350
|
3755 ac_path_GREP_found=false
|
Chris@350
|
3756 # Loop through the user's path and test for each of PROGNAME-LIST
|
Chris@350
|
3757 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
3758 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
|
Chris@350
|
3759 do
|
Chris@350
|
3760 IFS=$as_save_IFS
|
Chris@350
|
3761 test -z "$as_dir" && as_dir=.
|
Chris@350
|
3762 for ac_prog in grep ggrep; do
|
Chris@350
|
3763 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@350
|
3764 ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
|
Chris@594
|
3765 as_fn_executable_p "$ac_path_GREP" || continue
|
Chris@350
|
3766 # Check for GNU ac_path_GREP and select it if it is found.
|
Chris@350
|
3767 # Check for GNU $ac_path_GREP
|
Chris@350
|
3768 case `"$ac_path_GREP" --version 2>&1` in
|
Chris@350
|
3769 *GNU*)
|
Chris@350
|
3770 ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
|
Chris@350
|
3771 *)
|
Chris@350
|
3772 ac_count=0
|
Chris@350
|
3773 $as_echo_n 0123456789 >"conftest.in"
|
Chris@350
|
3774 while :
|
Chris@350
|
3775 do
|
Chris@350
|
3776 cat "conftest.in" "conftest.in" >"conftest.tmp"
|
Chris@350
|
3777 mv "conftest.tmp" "conftest.in"
|
Chris@350
|
3778 cp "conftest.in" "conftest.nl"
|
Chris@350
|
3779 $as_echo 'GREP' >> "conftest.nl"
|
Chris@350
|
3780 "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
|
Chris@350
|
3781 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
|
Chris@350
|
3782 as_fn_arith $ac_count + 1 && ac_count=$as_val
|
Chris@350
|
3783 if test $ac_count -gt ${ac_path_GREP_max-0}; then
|
Chris@350
|
3784 # Best one so far, save it but keep looking for a better one
|
Chris@350
|
3785 ac_cv_path_GREP="$ac_path_GREP"
|
Chris@350
|
3786 ac_path_GREP_max=$ac_count
|
Chris@350
|
3787 fi
|
Chris@350
|
3788 # 10*(2^10) chars as input seems more than enough
|
Chris@350
|
3789 test $ac_count -gt 10 && break
|
Chris@350
|
3790 done
|
Chris@350
|
3791 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
|
Chris@350
|
3792 esac
|
Chris@350
|
3793
|
Chris@350
|
3794 $ac_path_GREP_found && break 3
|
Chris@350
|
3795 done
|
Chris@350
|
3796 done
|
Chris@350
|
3797 done
|
Chris@350
|
3798 IFS=$as_save_IFS
|
Chris@350
|
3799 if test -z "$ac_cv_path_GREP"; then
|
Chris@594
|
3800 as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
|
Chris@350
|
3801 fi
|
Chris@350
|
3802 else
|
Chris@350
|
3803 ac_cv_path_GREP=$GREP
|
Chris@350
|
3804 fi
|
Chris@350
|
3805
|
Chris@350
|
3806 fi
|
Chris@350
|
3807 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5
|
Chris@350
|
3808 $as_echo "$ac_cv_path_GREP" >&6; }
|
Chris@350
|
3809 GREP="$ac_cv_path_GREP"
|
Chris@350
|
3810
|
Chris@350
|
3811
|
Chris@350
|
3812 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
|
Chris@350
|
3813 $as_echo_n "checking for egrep... " >&6; }
|
Chris@594
|
3814 if ${ac_cv_path_EGREP+:} false; then :
|
Chris@350
|
3815 $as_echo_n "(cached) " >&6
|
Chris@350
|
3816 else
|
Chris@350
|
3817 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
|
Chris@350
|
3818 then ac_cv_path_EGREP="$GREP -E"
|
Chris@350
|
3819 else
|
Chris@350
|
3820 if test -z "$EGREP"; then
|
Chris@350
|
3821 ac_path_EGREP_found=false
|
Chris@350
|
3822 # Loop through the user's path and test for each of PROGNAME-LIST
|
Chris@350
|
3823 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
3824 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
|
Chris@350
|
3825 do
|
Chris@350
|
3826 IFS=$as_save_IFS
|
Chris@350
|
3827 test -z "$as_dir" && as_dir=.
|
Chris@350
|
3828 for ac_prog in egrep; do
|
Chris@350
|
3829 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@350
|
3830 ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
|
Chris@594
|
3831 as_fn_executable_p "$ac_path_EGREP" || continue
|
Chris@350
|
3832 # Check for GNU ac_path_EGREP and select it if it is found.
|
Chris@350
|
3833 # Check for GNU $ac_path_EGREP
|
Chris@350
|
3834 case `"$ac_path_EGREP" --version 2>&1` in
|
Chris@350
|
3835 *GNU*)
|
Chris@350
|
3836 ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
|
Chris@350
|
3837 *)
|
Chris@350
|
3838 ac_count=0
|
Chris@350
|
3839 $as_echo_n 0123456789 >"conftest.in"
|
Chris@350
|
3840 while :
|
Chris@350
|
3841 do
|
Chris@350
|
3842 cat "conftest.in" "conftest.in" >"conftest.tmp"
|
Chris@350
|
3843 mv "conftest.tmp" "conftest.in"
|
Chris@350
|
3844 cp "conftest.in" "conftest.nl"
|
Chris@350
|
3845 $as_echo 'EGREP' >> "conftest.nl"
|
Chris@350
|
3846 "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
|
Chris@350
|
3847 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
|
Chris@350
|
3848 as_fn_arith $ac_count + 1 && ac_count=$as_val
|
Chris@350
|
3849 if test $ac_count -gt ${ac_path_EGREP_max-0}; then
|
Chris@350
|
3850 # Best one so far, save it but keep looking for a better one
|
Chris@350
|
3851 ac_cv_path_EGREP="$ac_path_EGREP"
|
Chris@350
|
3852 ac_path_EGREP_max=$ac_count
|
Chris@350
|
3853 fi
|
Chris@350
|
3854 # 10*(2^10) chars as input seems more than enough
|
Chris@350
|
3855 test $ac_count -gt 10 && break
|
Chris@350
|
3856 done
|
Chris@350
|
3857 rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
|
Chris@350
|
3858 esac
|
Chris@350
|
3859
|
Chris@350
|
3860 $ac_path_EGREP_found && break 3
|
Chris@350
|
3861 done
|
Chris@350
|
3862 done
|
Chris@350
|
3863 done
|
Chris@350
|
3864 IFS=$as_save_IFS
|
Chris@350
|
3865 if test -z "$ac_cv_path_EGREP"; then
|
Chris@594
|
3866 as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
|
Chris@350
|
3867 fi
|
Chris@350
|
3868 else
|
Chris@350
|
3869 ac_cv_path_EGREP=$EGREP
|
Chris@350
|
3870 fi
|
Chris@350
|
3871
|
Chris@350
|
3872 fi
|
Chris@350
|
3873 fi
|
Chris@350
|
3874 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
|
Chris@350
|
3875 $as_echo "$ac_cv_path_EGREP" >&6; }
|
Chris@350
|
3876 EGREP="$ac_cv_path_EGREP"
|
Chris@350
|
3877
|
Chris@350
|
3878
|
Chris@350
|
3879 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
|
Chris@350
|
3880 $as_echo_n "checking for ANSI C header files... " >&6; }
|
Chris@594
|
3881 if ${ac_cv_header_stdc+:} false; then :
|
Chris@350
|
3882 $as_echo_n "(cached) " >&6
|
Chris@350
|
3883 else
|
Chris@350
|
3884 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
3885 /* end confdefs.h. */
|
Chris@350
|
3886 #include <stdlib.h>
|
Chris@350
|
3887 #include <stdarg.h>
|
Chris@350
|
3888 #include <string.h>
|
Chris@350
|
3889 #include <float.h>
|
Chris@350
|
3890
|
Chris@350
|
3891 int
|
Chris@350
|
3892 main ()
|
Chris@350
|
3893 {
|
Chris@350
|
3894
|
Chris@350
|
3895 ;
|
Chris@350
|
3896 return 0;
|
Chris@350
|
3897 }
|
Chris@350
|
3898 _ACEOF
|
Chris@350
|
3899 if ac_fn_cxx_try_compile "$LINENO"; then :
|
Chris@350
|
3900 ac_cv_header_stdc=yes
|
Chris@350
|
3901 else
|
Chris@350
|
3902 ac_cv_header_stdc=no
|
Chris@350
|
3903 fi
|
Chris@350
|
3904 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
Chris@350
|
3905
|
Chris@350
|
3906 if test $ac_cv_header_stdc = yes; then
|
Chris@350
|
3907 # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
|
Chris@350
|
3908 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
3909 /* end confdefs.h. */
|
Chris@350
|
3910 #include <string.h>
|
Chris@350
|
3911
|
Chris@350
|
3912 _ACEOF
|
Chris@350
|
3913 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
Chris@350
|
3914 $EGREP "memchr" >/dev/null 2>&1; then :
|
Chris@350
|
3915
|
Chris@350
|
3916 else
|
Chris@350
|
3917 ac_cv_header_stdc=no
|
Chris@350
|
3918 fi
|
Chris@350
|
3919 rm -f conftest*
|
Chris@350
|
3920
|
Chris@350
|
3921 fi
|
Chris@350
|
3922
|
Chris@350
|
3923 if test $ac_cv_header_stdc = yes; then
|
Chris@350
|
3924 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
|
Chris@350
|
3925 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
3926 /* end confdefs.h. */
|
Chris@350
|
3927 #include <stdlib.h>
|
Chris@350
|
3928
|
Chris@350
|
3929 _ACEOF
|
Chris@350
|
3930 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
Chris@350
|
3931 $EGREP "free" >/dev/null 2>&1; then :
|
Chris@350
|
3932
|
Chris@350
|
3933 else
|
Chris@350
|
3934 ac_cv_header_stdc=no
|
Chris@350
|
3935 fi
|
Chris@350
|
3936 rm -f conftest*
|
Chris@350
|
3937
|
Chris@350
|
3938 fi
|
Chris@350
|
3939
|
Chris@350
|
3940 if test $ac_cv_header_stdc = yes; then
|
Chris@350
|
3941 # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
|
Chris@350
|
3942 if test "$cross_compiling" = yes; then :
|
Chris@350
|
3943 :
|
Chris@350
|
3944 else
|
Chris@350
|
3945 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
3946 /* end confdefs.h. */
|
Chris@350
|
3947 #include <ctype.h>
|
Chris@350
|
3948 #include <stdlib.h>
|
Chris@350
|
3949 #if ((' ' & 0x0FF) == 0x020)
|
Chris@350
|
3950 # define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
|
Chris@350
|
3951 # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
|
Chris@350
|
3952 #else
|
Chris@350
|
3953 # define ISLOWER(c) \
|
Chris@350
|
3954 (('a' <= (c) && (c) <= 'i') \
|
Chris@350
|
3955 || ('j' <= (c) && (c) <= 'r') \
|
Chris@350
|
3956 || ('s' <= (c) && (c) <= 'z'))
|
Chris@350
|
3957 # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
|
Chris@350
|
3958 #endif
|
Chris@350
|
3959
|
Chris@350
|
3960 #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
|
Chris@350
|
3961 int
|
Chris@350
|
3962 main ()
|
Chris@350
|
3963 {
|
Chris@350
|
3964 int i;
|
Chris@350
|
3965 for (i = 0; i < 256; i++)
|
Chris@350
|
3966 if (XOR (islower (i), ISLOWER (i))
|
Chris@350
|
3967 || toupper (i) != TOUPPER (i))
|
Chris@350
|
3968 return 2;
|
Chris@350
|
3969 return 0;
|
Chris@350
|
3970 }
|
Chris@350
|
3971 _ACEOF
|
Chris@350
|
3972 if ac_fn_cxx_try_run "$LINENO"; then :
|
Chris@350
|
3973
|
Chris@350
|
3974 else
|
Chris@350
|
3975 ac_cv_header_stdc=no
|
Chris@350
|
3976 fi
|
Chris@350
|
3977 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
|
Chris@350
|
3978 conftest.$ac_objext conftest.beam conftest.$ac_ext
|
Chris@350
|
3979 fi
|
Chris@350
|
3980
|
Chris@350
|
3981 fi
|
Chris@350
|
3982 fi
|
Chris@350
|
3983 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5
|
Chris@350
|
3984 $as_echo "$ac_cv_header_stdc" >&6; }
|
Chris@350
|
3985 if test $ac_cv_header_stdc = yes; then
|
Chris@350
|
3986
|
Chris@350
|
3987 $as_echo "#define STDC_HEADERS 1" >>confdefs.h
|
Chris@350
|
3988
|
Chris@350
|
3989 fi
|
Chris@350
|
3990
|
Chris@350
|
3991
|
Chris@350
|
3992 # These are the flags Autoconf guesses for us; we use them later if
|
Chris@350
|
3993 # the user has set none and we are not using GCC (so lack our own
|
Chris@350
|
3994 # preferred flags)
|
Chris@350
|
3995 AUTOCONF_CXXFLAGS="$CXXFLAGS"
|
Chris@350
|
3996
|
Chris@350
|
3997
|
Chris@350
|
3998
|
Chris@594
|
3999
|
Chris@594
|
4000
|
Chris@594
|
4001
|
Chris@594
|
4002
|
Chris@594
|
4003
|
Chris@350
|
4004 if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
|
Chris@350
|
4005 if test -n "$ac_tool_prefix"; then
|
Chris@350
|
4006 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
|
Chris@350
|
4007 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
|
Chris@350
|
4008 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
4009 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
4010 if ${ac_cv_path_PKG_CONFIG+:} false; then :
|
Chris@350
|
4011 $as_echo_n "(cached) " >&6
|
Chris@350
|
4012 else
|
Chris@350
|
4013 case $PKG_CONFIG in
|
Chris@350
|
4014 [\\/]* | ?:[\\/]*)
|
Chris@350
|
4015 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
|
Chris@350
|
4016 ;;
|
Chris@350
|
4017 *)
|
Chris@350
|
4018 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
4019 for as_dir in $PATH
|
Chris@350
|
4020 do
|
Chris@350
|
4021 IFS=$as_save_IFS
|
Chris@350
|
4022 test -z "$as_dir" && as_dir=.
|
Chris@350
|
4023 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
4024 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@350
|
4025 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
|
Chris@350
|
4026 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
4027 break 2
|
Chris@350
|
4028 fi
|
Chris@350
|
4029 done
|
Chris@350
|
4030 done
|
Chris@350
|
4031 IFS=$as_save_IFS
|
Chris@350
|
4032
|
Chris@350
|
4033 ;;
|
Chris@350
|
4034 esac
|
Chris@350
|
4035 fi
|
Chris@350
|
4036 PKG_CONFIG=$ac_cv_path_PKG_CONFIG
|
Chris@350
|
4037 if test -n "$PKG_CONFIG"; then
|
Chris@350
|
4038 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
|
Chris@350
|
4039 $as_echo "$PKG_CONFIG" >&6; }
|
Chris@350
|
4040 else
|
Chris@350
|
4041 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
4042 $as_echo "no" >&6; }
|
Chris@350
|
4043 fi
|
Chris@350
|
4044
|
Chris@350
|
4045
|
Chris@350
|
4046 fi
|
Chris@350
|
4047 if test -z "$ac_cv_path_PKG_CONFIG"; then
|
Chris@350
|
4048 ac_pt_PKG_CONFIG=$PKG_CONFIG
|
Chris@350
|
4049 # Extract the first word of "pkg-config", so it can be a program name with args.
|
Chris@350
|
4050 set dummy pkg-config; ac_word=$2
|
Chris@350
|
4051 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
4052 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
4053 if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
|
Chris@350
|
4054 $as_echo_n "(cached) " >&6
|
Chris@350
|
4055 else
|
Chris@350
|
4056 case $ac_pt_PKG_CONFIG in
|
Chris@350
|
4057 [\\/]* | ?:[\\/]*)
|
Chris@350
|
4058 ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
|
Chris@350
|
4059 ;;
|
Chris@350
|
4060 *)
|
Chris@350
|
4061 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
4062 for as_dir in $PATH
|
Chris@350
|
4063 do
|
Chris@350
|
4064 IFS=$as_save_IFS
|
Chris@350
|
4065 test -z "$as_dir" && as_dir=.
|
Chris@350
|
4066 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
4067 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@350
|
4068 ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
|
Chris@350
|
4069 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
4070 break 2
|
Chris@350
|
4071 fi
|
Chris@350
|
4072 done
|
Chris@350
|
4073 done
|
Chris@350
|
4074 IFS=$as_save_IFS
|
Chris@350
|
4075
|
Chris@350
|
4076 ;;
|
Chris@350
|
4077 esac
|
Chris@350
|
4078 fi
|
Chris@350
|
4079 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
|
Chris@350
|
4080 if test -n "$ac_pt_PKG_CONFIG"; then
|
Chris@350
|
4081 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
|
Chris@350
|
4082 $as_echo "$ac_pt_PKG_CONFIG" >&6; }
|
Chris@350
|
4083 else
|
Chris@350
|
4084 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
4085 $as_echo "no" >&6; }
|
Chris@350
|
4086 fi
|
Chris@350
|
4087
|
Chris@350
|
4088 if test "x$ac_pt_PKG_CONFIG" = x; then
|
Chris@350
|
4089 PKG_CONFIG=""
|
Chris@350
|
4090 else
|
Chris@350
|
4091 case $cross_compiling:$ac_tool_warned in
|
Chris@350
|
4092 yes:)
|
Chris@350
|
4093 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
|
Chris@350
|
4094 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
|
Chris@350
|
4095 ac_tool_warned=yes ;;
|
Chris@350
|
4096 esac
|
Chris@350
|
4097 PKG_CONFIG=$ac_pt_PKG_CONFIG
|
Chris@350
|
4098 fi
|
Chris@350
|
4099 else
|
Chris@350
|
4100 PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
|
Chris@350
|
4101 fi
|
Chris@350
|
4102
|
Chris@350
|
4103 fi
|
Chris@350
|
4104 if test -n "$PKG_CONFIG"; then
|
Chris@350
|
4105 _pkg_min_version=0.9.0
|
Chris@350
|
4106 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
|
Chris@350
|
4107 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
|
Chris@350
|
4108 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
|
Chris@350
|
4109 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
4110 $as_echo "yes" >&6; }
|
Chris@350
|
4111 else
|
Chris@350
|
4112 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
4113 $as_echo "no" >&6; }
|
Chris@350
|
4114 PKG_CONFIG=""
|
Chris@350
|
4115 fi
|
Chris@354
|
4116 fi
|
Chris@354
|
4117
|
Chris@354
|
4118
|
Chris@354
|
4119
|
Chris@354
|
4120
|
Chris@354
|
4121 if test x$QMAKE = x ; then
|
Chris@545
|
4122 # Extract the first word of "qmake-qt5", so it can be a program name with args.
|
Chris@545
|
4123 set dummy qmake-qt5; ac_word=$2
|
Chris@350
|
4124 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
4125 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
4126 if ${ac_cv_prog_QMAKE+:} false; then :
|
Chris@350
|
4127 $as_echo_n "(cached) " >&6
|
Chris@350
|
4128 else
|
Chris@350
|
4129 if test -n "$QMAKE"; then
|
Chris@350
|
4130 ac_cv_prog_QMAKE="$QMAKE" # Let the user override the test.
|
Chris@350
|
4131 else
|
Chris@350
|
4132 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
4133 for as_dir in $QTDIR/bin/
|
Chris@350
|
4134 do
|
Chris@350
|
4135 IFS=$as_save_IFS
|
Chris@350
|
4136 test -z "$as_dir" && as_dir=.
|
Chris@350
|
4137 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
4138 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@545
|
4139 ac_cv_prog_QMAKE="$QTDIR/bin/qmake-qt5"
|
Chris@350
|
4140 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
4141 break 2
|
Chris@350
|
4142 fi
|
Chris@350
|
4143 done
|
Chris@350
|
4144 done
|
Chris@350
|
4145 IFS=$as_save_IFS
|
Chris@350
|
4146
|
Chris@350
|
4147 fi
|
Chris@350
|
4148 fi
|
Chris@350
|
4149 QMAKE=$ac_cv_prog_QMAKE
|
Chris@350
|
4150 if test -n "$QMAKE"; then
|
Chris@350
|
4151 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5
|
Chris@350
|
4152 $as_echo "$QMAKE" >&6; }
|
Chris@350
|
4153 else
|
Chris@350
|
4154 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
4155 $as_echo "no" >&6; }
|
Chris@350
|
4156 fi
|
Chris@350
|
4157
|
Chris@350
|
4158
|
Chris@354
|
4159 fi
|
Chris@350
|
4160 if test x$QMAKE = x ; then
|
Chris@354
|
4161 # Extract the first word of "qmake", so it can be a program name with args.
|
Chris@350
|
4162 set dummy qmake; ac_word=$2
|
Chris@350
|
4163 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
4164 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
4165 if ${ac_cv_prog_QMAKE+:} false; then :
|
Chris@350
|
4166 $as_echo_n "(cached) " >&6
|
Chris@350
|
4167 else
|
Chris@350
|
4168 if test -n "$QMAKE"; then
|
Chris@350
|
4169 ac_cv_prog_QMAKE="$QMAKE" # Let the user override the test.
|
Chris@350
|
4170 else
|
Chris@350
|
4171 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
4172 for as_dir in $QTDIR/bin/
|
Chris@350
|
4173 do
|
Chris@350
|
4174 IFS=$as_save_IFS
|
Chris@350
|
4175 test -z "$as_dir" && as_dir=.
|
Chris@350
|
4176 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
4177 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@350
|
4178 ac_cv_prog_QMAKE="$QTDIR/bin/qmake"
|
Chris@350
|
4179 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
4180 break 2
|
Chris@350
|
4181 fi
|
Chris@350
|
4182 done
|
Chris@350
|
4183 done
|
Chris@350
|
4184 IFS=$as_save_IFS
|
Chris@350
|
4185
|
Chris@350
|
4186 fi
|
Chris@350
|
4187 fi
|
Chris@350
|
4188 QMAKE=$ac_cv_prog_QMAKE
|
Chris@350
|
4189 if test -n "$QMAKE"; then
|
Chris@350
|
4190 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5
|
Chris@350
|
4191 $as_echo "$QMAKE" >&6; }
|
Chris@350
|
4192 else
|
Chris@350
|
4193 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
4194 $as_echo "no" >&6; }
|
Chris@350
|
4195 fi
|
Chris@350
|
4196
|
Chris@350
|
4197
|
Chris@354
|
4198 fi
|
Chris@354
|
4199 if test x$QMAKE = x ; then
|
Chris@354
|
4200 # Extract the first word of "qmake.exe", so it can be a program name with args.
|
Chris@350
|
4201 set dummy qmake.exe; ac_word=$2
|
Chris@350
|
4202 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@350
|
4203 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
4204 if ${ac_cv_prog_QMAKE+:} false; then :
|
Chris@350
|
4205 $as_echo_n "(cached) " >&6
|
Chris@350
|
4206 else
|
Chris@350
|
4207 if test -n "$QMAKE"; then
|
Chris@350
|
4208 ac_cv_prog_QMAKE="$QMAKE" # Let the user override the test.
|
Chris@350
|
4209 else
|
Chris@350
|
4210 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
4211 for as_dir in $QTDIR/bin/
|
Chris@350
|
4212 do
|
Chris@350
|
4213 IFS=$as_save_IFS
|
Chris@350
|
4214 test -z "$as_dir" && as_dir=.
|
Chris@350
|
4215 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
4216 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@350
|
4217 ac_cv_prog_QMAKE="$QTDIR/bin/qmake.exe"
|
Chris@350
|
4218 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@350
|
4219 break 2
|
Chris@350
|
4220 fi
|
Chris@350
|
4221 done
|
Chris@350
|
4222 done
|
Chris@350
|
4223 IFS=$as_save_IFS
|
Chris@350
|
4224
|
Chris@350
|
4225 fi
|
Chris@350
|
4226 fi
|
Chris@350
|
4227 QMAKE=$ac_cv_prog_QMAKE
|
Chris@350
|
4228 if test -n "$QMAKE"; then
|
Chris@350
|
4229 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5
|
Chris@350
|
4230 $as_echo "$QMAKE" >&6; }
|
Chris@350
|
4231 else
|
Chris@350
|
4232 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@350
|
4233 $as_echo "no" >&6; }
|
Chris@350
|
4234 fi
|
Chris@350
|
4235
|
Chris@350
|
4236
|
Chris@354
|
4237 fi
|
Chris@354
|
4238 if test x$QMAKE = x ; then
|
Chris@545
|
4239 # Extract the first word of "qmake-qt5", so it can be a program name with args.
|
Chris@545
|
4240 set dummy qmake-qt5; ac_word=$2
|
Chris@354
|
4241 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@354
|
4242 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
4243 if ${ac_cv_prog_QMAKE+:} false; then :
|
Chris@354
|
4244 $as_echo_n "(cached) " >&6
|
Chris@354
|
4245 else
|
Chris@354
|
4246 if test -n "$QMAKE"; then
|
Chris@354
|
4247 ac_cv_prog_QMAKE="$QMAKE" # Let the user override the test.
|
Chris@354
|
4248 else
|
Chris@354
|
4249 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@354
|
4250 for as_dir in $PATH
|
Chris@354
|
4251 do
|
Chris@354
|
4252 IFS=$as_save_IFS
|
Chris@354
|
4253 test -z "$as_dir" && as_dir=.
|
Chris@354
|
4254 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
4255 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@545
|
4256 ac_cv_prog_QMAKE="qmake-qt5"
|
Chris@354
|
4257 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@354
|
4258 break 2
|
Chris@354
|
4259 fi
|
Chris@354
|
4260 done
|
Chris@354
|
4261 done
|
Chris@354
|
4262 IFS=$as_save_IFS
|
Chris@354
|
4263
|
Chris@354
|
4264 fi
|
Chris@354
|
4265 fi
|
Chris@354
|
4266 QMAKE=$ac_cv_prog_QMAKE
|
Chris@354
|
4267 if test -n "$QMAKE"; then
|
Chris@354
|
4268 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5
|
Chris@354
|
4269 $as_echo "$QMAKE" >&6; }
|
Chris@354
|
4270 else
|
Chris@354
|
4271 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@354
|
4272 $as_echo "no" >&6; }
|
Chris@354
|
4273 fi
|
Chris@354
|
4274
|
Chris@354
|
4275
|
Chris@354
|
4276 fi
|
Chris@354
|
4277 if test x$QMAKE = x ; then
|
Chris@354
|
4278 # Extract the first word of "qmake", so it can be a program name with args.
|
Chris@354
|
4279 set dummy qmake; ac_word=$2
|
Chris@354
|
4280 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
Chris@354
|
4281 $as_echo_n "checking for $ac_word... " >&6; }
|
Chris@594
|
4282 if ${ac_cv_prog_QMAKE+:} false; then :
|
Chris@354
|
4283 $as_echo_n "(cached) " >&6
|
Chris@354
|
4284 else
|
Chris@354
|
4285 if test -n "$QMAKE"; then
|
Chris@354
|
4286 ac_cv_prog_QMAKE="$QMAKE" # Let the user override the test.
|
Chris@354
|
4287 else
|
Chris@354
|
4288 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@354
|
4289 for as_dir in $PATH
|
Chris@354
|
4290 do
|
Chris@354
|
4291 IFS=$as_save_IFS
|
Chris@354
|
4292 test -z "$as_dir" && as_dir=.
|
Chris@354
|
4293 for ac_exec_ext in '' $ac_executable_extensions; do
|
Chris@594
|
4294 if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
Chris@354
|
4295 ac_cv_prog_QMAKE="qmake"
|
Chris@354
|
4296 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
Chris@354
|
4297 break 2
|
Chris@354
|
4298 fi
|
Chris@354
|
4299 done
|
Chris@354
|
4300 done
|
Chris@354
|
4301 IFS=$as_save_IFS
|
Chris@354
|
4302
|
Chris@354
|
4303 fi
|
Chris@354
|
4304 fi
|
Chris@354
|
4305 QMAKE=$ac_cv_prog_QMAKE
|
Chris@354
|
4306 if test -n "$QMAKE"; then
|
Chris@354
|
4307 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5
|
Chris@354
|
4308 $as_echo "$QMAKE" >&6; }
|
Chris@354
|
4309 else
|
Chris@354
|
4310 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@354
|
4311 $as_echo "no" >&6; }
|
Chris@354
|
4312 fi
|
Chris@354
|
4313
|
Chris@354
|
4314
|
Chris@354
|
4315 fi
|
Chris@354
|
4316 if test x$QMAKE = x ; then
|
Chris@594
|
4317 as_fn_error $? "
|
Chris@545
|
4318 Failed to find the required qmake-qt5 or qmake program. Please
|
Chris@545
|
4319 ensure you have the necessary Qt5 development files installed, and
|
Chris@545
|
4320 if necessary set QTDIR to the location of your Qt5 installation.
|
Chris@350
|
4321 " "$LINENO" 5
|
Chris@350
|
4322 fi
|
Chris@350
|
4323
|
Chris@350
|
4324 # Suitable versions of qmake should print out something like:
|
Chris@350
|
4325 #
|
Chris@350
|
4326 # QMake version 2.01a
|
Chris@350
|
4327 # Using Qt version 4.6.3 in /usr/lib
|
Chris@350
|
4328 #
|
Chris@350
|
4329 # This may be translated, so we check only for the numbers (2.x and 4.x
|
Chris@350
|
4330 # in that order).
|
Chris@350
|
4331 #
|
Chris@350
|
4332 QMAKE_VERSION_OUTPUT=`$QMAKE -v`
|
Chris@350
|
4333 case "$QMAKE_VERSION_OUTPUT" in
|
Chris@545
|
4334 *5.*) ;;
|
Chris@350
|
4335 *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
|
Chris@350
|
4336 *** The version of qmake found in \"$QMAKE\" looks like it might be
|
Chris@545
|
4337 from the wrong version of Qt (Qt5 is required). Please check
|
Chris@545
|
4338 that this is the correct version of qmake for Qt5 builds.
|
Chris@350
|
4339 " >&5
|
Chris@350
|
4340 $as_echo "$as_me: WARNING:
|
Chris@350
|
4341 *** The version of qmake found in \"$QMAKE\" looks like it might be
|
Chris@545
|
4342 from the wrong version of Qt (Qt5 is required). Please check
|
Chris@545
|
4343 that this is the correct version of qmake for Qt5 builds.
|
Chris@350
|
4344 " >&2;}
|
Chris@350
|
4345 esac
|
Chris@350
|
4346
|
Chris@359
|
4347 case "`uname`" in
|
Chris@360
|
4348 *Darwin*) QMAKE="$QMAKE -spec macx-g++";;
|
Chris@359
|
4349 esac
|
Chris@359
|
4350
|
Chris@350
|
4351
|
Chris@350
|
4352
|
Chris@350
|
4353 SV_DEFINES_DEBUG="-DDEBUG -DBUILD_DEBUG -DWANT_TIMING"
|
Chris@350
|
4354 SV_DEFINES_RELEASE="-DNDEBUG -DBUILD_RELEASE -DNO_TIMING"
|
Chris@350
|
4355 SV_DEFINES_MINIMAL="$SV_DEFINES_RELEASE"
|
Chris@350
|
4356
|
Chris@350
|
4357 # Now we have: USER_CXXFLAGS contains any flags the user set
|
Chris@350
|
4358 # explicitly; AUTOCONF_CXXFLAGS contains flags that Autoconf thought
|
Chris@350
|
4359 # we should use. If we have GCC, we override the latter but then
|
Chris@350
|
4360 # allow ourselves to be overridden (later) by the former
|
Chris@350
|
4361
|
Chris@350
|
4362 CXXFLAGS_DEBUG="$AUTOCONF_CXXFLAGS"
|
Chris@350
|
4363 CXXFLAGS_RELEASE="$AUTOCONF_CXXFLAGS"
|
Chris@350
|
4364 CXXFLAGS_MINIMAL="$AUTOCONF_CXXFLAGS"
|
Chris@350
|
4365
|
Chris@350
|
4366 if test "x$GCC" = "xyes"; then
|
Chris@922
|
4367 CXXFLAGS_ANY="-std=c++11 -Wall -Wextra -Werror -Woverloaded-virtual -Wformat-nonliteral -Wformat-security -Winit-self -Wswitch-enum -Wconversion -pipe"
|
Chris@922
|
4368 CXXFLAGS_DEBUG="$CXXFLAGS_ANY -g"
|
Chris@922
|
4369 CXXFLAGS_RELEASE="$CXXFLAGS_ANY -g0 -O2"
|
Chris@922
|
4370 CXXFLAGS_MINIMAL="$CXXFLAGS_ANY -g0 -O0"
|
Chris@350
|
4371 fi
|
Chris@350
|
4372
|
Chris@350
|
4373 CXXFLAGS_BUILD="$CXXFLAGS_RELEASE"
|
Chris@350
|
4374 SV_DEFINES_BUILD="$SV_DEFINES_RELEASE"
|
Chris@350
|
4375
|
Chris@361
|
4376 QMAKE_CONFIG="release"
|
Chris@361
|
4377
|
Chris@350
|
4378 # Check whether --enable-debug was given.
|
Chris@350
|
4379 if test "${enable_debug+set}" = set; then :
|
Chris@350
|
4380 enableval=$enable_debug; { $as_echo "$as_me:${as_lineno-$LINENO}: enabling debug build" >&5
|
Chris@350
|
4381 $as_echo "$as_me: enabling debug build" >&6;}
|
Chris@361
|
4382 QMAKE_CONFIG="debug"
|
Chris@350
|
4383 CXXFLAGS_BUILD="$CXXFLAGS_DEBUG"
|
Chris@350
|
4384 SV_DEFINES_BUILD="$SV_DEFINES_DEBUG"
|
Chris@350
|
4385 fi
|
Chris@350
|
4386
|
Chris@350
|
4387
|
Chris@350
|
4388 if test x"$USER_CXXFLAGS" != x; then
|
Chris@350
|
4389 { $as_echo "$as_me:${as_lineno-$LINENO}: The CXXFLAGS environment variable is set to \"$USER_CXXFLAGS\"." >&5
|
Chris@350
|
4390 $as_echo "$as_me: The CXXFLAGS environment variable is set to \"$USER_CXXFLAGS\"." >&6;}
|
Chris@350
|
4391 { $as_echo "$as_me:${as_lineno-$LINENO}: Overriding default compiler flags with the above user setting." >&5
|
Chris@350
|
4392 $as_echo "$as_me: Overriding default compiler flags with the above user setting." >&6;}
|
Chris@350
|
4393 CXXFLAGS_BUILD="$USER_CXXFLAGS"
|
Chris@350
|
4394 CXXFLAGS_MINIMAL="$USER_CXXFLAGS"
|
Chris@350
|
4395 fi
|
Chris@350
|
4396
|
Chris@350
|
4397 CXXFLAGS="$CXXFLAGS_BUILD $SV_DEFINES_BUILD"
|
Chris@350
|
4398
|
Chris@350
|
4399 # On IRIX 5.3, sys/types and inttypes.h are conflicting.
|
Chris@350
|
4400 for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
|
Chris@350
|
4401 inttypes.h stdint.h unistd.h
|
Chris@350
|
4402 do :
|
Chris@350
|
4403 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
|
Chris@350
|
4404 ac_fn_cxx_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
|
Chris@350
|
4405 "
|
Chris@594
|
4406 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
4407 cat >>confdefs.h <<_ACEOF
|
Chris@350
|
4408 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
|
Chris@350
|
4409 _ACEOF
|
Chris@350
|
4410
|
Chris@350
|
4411 fi
|
Chris@350
|
4412
|
Chris@350
|
4413 done
|
Chris@350
|
4414
|
Chris@350
|
4415
|
Chris@350
|
4416
|
Chris@350
|
4417 SV_MODULE_MODULE=bz2
|
Chris@350
|
4418 SV_MODULE_VERSION_TEST=""
|
Chris@350
|
4419 SV_MODULE_HEADER=bzlib.h
|
Chris@350
|
4420 SV_MODULE_LIB=bz2
|
Chris@350
|
4421 SV_MODULE_FUNC=BZ2_bzReadOpen
|
Chris@350
|
4422 SV_MODULE_HAVE=HAVE_$(echo bz2 | tr 'a-z' 'A-Z')
|
Chris@350
|
4423 SV_MODULE_FAILED=1
|
Chris@405
|
4424 if test -n "$bz2_LIBS" ; then
|
Chris@405
|
4425 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
4426 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@405
|
4427 CXXFLAGS="$CXXFLAGS $bz2_CFLAGS"
|
Chris@405
|
4428 LIBS="$LIBS $bz2_LIBS"
|
Chris@405
|
4429 SV_MODULE_FAILED=""
|
Chris@405
|
4430 fi
|
Chris@350
|
4431 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
4432 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
4433 fi
|
Chris@405
|
4434 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
4435
|
Chris@350
|
4436 pkg_failed=no
|
Chris@350
|
4437 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bz2" >&5
|
Chris@350
|
4438 $as_echo_n "checking for bz2... " >&6; }
|
Chris@350
|
4439
|
Chris@594
|
4440 if test -n "$bz2_CFLAGS"; then
|
Chris@594
|
4441 pkg_cv_bz2_CFLAGS="$bz2_CFLAGS"
|
Chris@594
|
4442 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
4443 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
4444 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
4445 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
4446 ac_status=$?
|
Chris@350
|
4447 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
4448 test $ac_status = 0; }; then
|
Chris@350
|
4449 pkg_cv_bz2_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
4450 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
4451 else
|
Chris@350
|
4452 pkg_failed=yes
|
Chris@350
|
4453 fi
|
Chris@594
|
4454 else
|
Chris@594
|
4455 pkg_failed=untried
|
Chris@594
|
4456 fi
|
Chris@594
|
4457 if test -n "$bz2_LIBS"; then
|
Chris@594
|
4458 pkg_cv_bz2_LIBS="$bz2_LIBS"
|
Chris@594
|
4459 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
4460 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
4461 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
4462 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
4463 ac_status=$?
|
Chris@350
|
4464 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
4465 test $ac_status = 0; }; then
|
Chris@350
|
4466 pkg_cv_bz2_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
4467 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
4468 else
|
Chris@350
|
4469 pkg_failed=yes
|
Chris@350
|
4470 fi
|
Chris@594
|
4471 else
|
Chris@594
|
4472 pkg_failed=untried
|
Chris@350
|
4473 fi
|
Chris@350
|
4474
|
Chris@350
|
4475
|
Chris@350
|
4476
|
Chris@350
|
4477 if test $pkg_failed = yes; then
|
Chris@594
|
4478 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
4479 $as_echo "no" >&6; }
|
Chris@350
|
4480
|
Chris@350
|
4481 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
4482 _pkg_short_errors_supported=yes
|
Chris@350
|
4483 else
|
Chris@350
|
4484 _pkg_short_errors_supported=no
|
Chris@350
|
4485 fi
|
Chris@350
|
4486 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
4487 bz2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
4488 else
|
Chris@594
|
4489 bz2_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
4490 fi
|
Chris@350
|
4491 # Put the nasty error message in config.log where it belongs
|
Chris@350
|
4492 echo "$bz2_PKG_ERRORS" >&5
|
Chris@350
|
4493
|
Chris@594
|
4494 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
4495 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
4496 elif test $pkg_failed = untried; then
|
Chris@594
|
4497 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
4498 $as_echo "no" >&6; }
|
Chris@350
|
4499 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
4500 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
4501 else
|
Chris@350
|
4502 bz2_CFLAGS=$pkg_cv_bz2_CFLAGS
|
Chris@350
|
4503 bz2_LIBS=$pkg_cv_bz2_LIBS
|
Chris@350
|
4504 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
4505 $as_echo "yes" >&6; }
|
Chris@350
|
4506 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $bz2_CFLAGS";LIBS="$LIBS $bz2_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
4507 fi
|
Chris@350
|
4508 fi
|
Chris@350
|
4509 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
4510 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
4511 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
4512 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
4513 HAVES="$HAVES $SV_MODULE_HAVE"
|
Chris@350
|
4514 else
|
Chris@594
|
4515 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
4516 fi
|
Chris@350
|
4517
|
Chris@350
|
4518
|
Chris@350
|
4519 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
4520 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
4521 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
4522 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
4523 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
4524 $as_echo_n "(cached) " >&6
|
Chris@350
|
4525 else
|
Chris@350
|
4526 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
4527 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
4528 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
4529 /* end confdefs.h. */
|
Chris@350
|
4530
|
Chris@350
|
4531 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
4532 Use char because int might match the return type of a GCC
|
Chris@350
|
4533 builtin and then its argument prototype would still apply. */
|
Chris@350
|
4534 #ifdef __cplusplus
|
Chris@350
|
4535 extern "C"
|
Chris@350
|
4536 #endif
|
Chris@350
|
4537 char $SV_MODULE_FUNC ();
|
Chris@350
|
4538 int
|
Chris@350
|
4539 main ()
|
Chris@350
|
4540 {
|
Chris@350
|
4541 return $SV_MODULE_FUNC ();
|
Chris@350
|
4542 ;
|
Chris@350
|
4543 return 0;
|
Chris@350
|
4544 }
|
Chris@350
|
4545 _ACEOF
|
Chris@350
|
4546 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
4547 eval "$as_ac_Lib=yes"
|
Chris@350
|
4548 else
|
Chris@350
|
4549 eval "$as_ac_Lib=no"
|
Chris@350
|
4550 fi
|
Chris@350
|
4551 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
4552 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
4553 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
4554 fi
|
Chris@350
|
4555 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
4556 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
4557 $as_echo "$ac_res" >&6; }
|
Chris@594
|
4558 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
4559 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
4560 else
|
Chris@594
|
4561 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
4562 fi
|
Chris@350
|
4563
|
Chris@350
|
4564 fi
|
Chris@350
|
4565 fi
|
Chris@350
|
4566
|
Chris@350
|
4567
|
Chris@350
|
4568 SV_MODULE_MODULE=fftw3
|
Chris@350
|
4569 SV_MODULE_VERSION_TEST="fftw3 >= 3.0.0"
|
Chris@350
|
4570 SV_MODULE_HEADER=fftw3.h
|
Chris@350
|
4571 SV_MODULE_LIB=fftw3
|
Chris@350
|
4572 SV_MODULE_FUNC=fftw_execute
|
Chris@350
|
4573 SV_MODULE_HAVE=HAVE_$(echo fftw3 | tr 'a-z' 'A-Z')
|
Chris@350
|
4574 SV_MODULE_FAILED=1
|
Chris@405
|
4575 if test -n "$fftw3_LIBS" ; then
|
Chris@405
|
4576 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
4577 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@405
|
4578 CXXFLAGS="$CXXFLAGS $fftw3_CFLAGS"
|
Chris@405
|
4579 LIBS="$LIBS $fftw3_LIBS"
|
Chris@405
|
4580 SV_MODULE_FAILED=""
|
Chris@405
|
4581 fi
|
Chris@350
|
4582 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
4583 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
4584 fi
|
Chris@405
|
4585 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
4586
|
Chris@350
|
4587 pkg_failed=no
|
Chris@350
|
4588 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fftw3" >&5
|
Chris@350
|
4589 $as_echo_n "checking for fftw3... " >&6; }
|
Chris@350
|
4590
|
Chris@594
|
4591 if test -n "$fftw3_CFLAGS"; then
|
Chris@594
|
4592 pkg_cv_fftw3_CFLAGS="$fftw3_CFLAGS"
|
Chris@594
|
4593 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
4594 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
4595 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
4596 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
4597 ac_status=$?
|
Chris@350
|
4598 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
4599 test $ac_status = 0; }; then
|
Chris@350
|
4600 pkg_cv_fftw3_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
4601 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
4602 else
|
Chris@350
|
4603 pkg_failed=yes
|
Chris@350
|
4604 fi
|
Chris@594
|
4605 else
|
Chris@594
|
4606 pkg_failed=untried
|
Chris@594
|
4607 fi
|
Chris@594
|
4608 if test -n "$fftw3_LIBS"; then
|
Chris@594
|
4609 pkg_cv_fftw3_LIBS="$fftw3_LIBS"
|
Chris@594
|
4610 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
4611 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
4612 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
4613 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
4614 ac_status=$?
|
Chris@350
|
4615 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
4616 test $ac_status = 0; }; then
|
Chris@350
|
4617 pkg_cv_fftw3_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
4618 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
4619 else
|
Chris@350
|
4620 pkg_failed=yes
|
Chris@350
|
4621 fi
|
Chris@594
|
4622 else
|
Chris@594
|
4623 pkg_failed=untried
|
Chris@350
|
4624 fi
|
Chris@350
|
4625
|
Chris@350
|
4626
|
Chris@350
|
4627
|
Chris@350
|
4628 if test $pkg_failed = yes; then
|
Chris@594
|
4629 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
4630 $as_echo "no" >&6; }
|
Chris@350
|
4631
|
Chris@350
|
4632 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
4633 _pkg_short_errors_supported=yes
|
Chris@350
|
4634 else
|
Chris@350
|
4635 _pkg_short_errors_supported=no
|
Chris@350
|
4636 fi
|
Chris@350
|
4637 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
4638 fftw3_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
4639 else
|
Chris@594
|
4640 fftw3_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
4641 fi
|
Chris@350
|
4642 # Put the nasty error message in config.log where it belongs
|
Chris@350
|
4643 echo "$fftw3_PKG_ERRORS" >&5
|
Chris@350
|
4644
|
Chris@594
|
4645 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
4646 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
4647 elif test $pkg_failed = untried; then
|
Chris@594
|
4648 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
4649 $as_echo "no" >&6; }
|
Chris@350
|
4650 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
4651 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
4652 else
|
Chris@350
|
4653 fftw3_CFLAGS=$pkg_cv_fftw3_CFLAGS
|
Chris@350
|
4654 fftw3_LIBS=$pkg_cv_fftw3_LIBS
|
Chris@350
|
4655 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
4656 $as_echo "yes" >&6; }
|
Chris@350
|
4657 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $fftw3_CFLAGS";LIBS="$LIBS $fftw3_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
4658 fi
|
Chris@350
|
4659 fi
|
Chris@350
|
4660 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
4661 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
4662 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
4663 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
4664 HAVES="$HAVES $SV_MODULE_HAVE"
|
Chris@350
|
4665 else
|
Chris@594
|
4666 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
4667 fi
|
Chris@350
|
4668
|
Chris@350
|
4669
|
Chris@350
|
4670 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
4671 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
4672 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
4673 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
4674 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
4675 $as_echo_n "(cached) " >&6
|
Chris@350
|
4676 else
|
Chris@350
|
4677 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
4678 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
4679 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
4680 /* end confdefs.h. */
|
Chris@350
|
4681
|
Chris@350
|
4682 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
4683 Use char because int might match the return type of a GCC
|
Chris@350
|
4684 builtin and then its argument prototype would still apply. */
|
Chris@350
|
4685 #ifdef __cplusplus
|
Chris@350
|
4686 extern "C"
|
Chris@350
|
4687 #endif
|
Chris@350
|
4688 char $SV_MODULE_FUNC ();
|
Chris@350
|
4689 int
|
Chris@350
|
4690 main ()
|
Chris@350
|
4691 {
|
Chris@350
|
4692 return $SV_MODULE_FUNC ();
|
Chris@350
|
4693 ;
|
Chris@350
|
4694 return 0;
|
Chris@350
|
4695 }
|
Chris@350
|
4696 _ACEOF
|
Chris@350
|
4697 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
4698 eval "$as_ac_Lib=yes"
|
Chris@350
|
4699 else
|
Chris@350
|
4700 eval "$as_ac_Lib=no"
|
Chris@350
|
4701 fi
|
Chris@350
|
4702 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
4703 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
4704 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
4705 fi
|
Chris@350
|
4706 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
4707 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
4708 $as_echo "$ac_res" >&6; }
|
Chris@594
|
4709 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
4710 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
4711 else
|
Chris@594
|
4712 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
4713 fi
|
Chris@350
|
4714
|
Chris@350
|
4715 fi
|
Chris@350
|
4716 fi
|
Chris@350
|
4717
|
Chris@350
|
4718
|
Chris@350
|
4719 SV_MODULE_MODULE=fftw3f
|
Chris@350
|
4720 SV_MODULE_VERSION_TEST="fftw3f >= 3.0.0"
|
Chris@350
|
4721 SV_MODULE_HEADER=fftw3.h
|
Chris@350
|
4722 SV_MODULE_LIB=fftw3f
|
Chris@350
|
4723 SV_MODULE_FUNC=fftwf_execute
|
Chris@350
|
4724 SV_MODULE_HAVE=HAVE_$(echo fftw3f | tr 'a-z' 'A-Z')
|
Chris@350
|
4725 SV_MODULE_FAILED=1
|
Chris@405
|
4726 if test -n "$fftw3f_LIBS" ; then
|
Chris@405
|
4727 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
4728 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@405
|
4729 CXXFLAGS="$CXXFLAGS $fftw3f_CFLAGS"
|
Chris@405
|
4730 LIBS="$LIBS $fftw3f_LIBS"
|
Chris@405
|
4731 SV_MODULE_FAILED=""
|
Chris@405
|
4732 fi
|
Chris@350
|
4733 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
4734 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
4735 fi
|
Chris@405
|
4736 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
4737
|
Chris@350
|
4738 pkg_failed=no
|
Chris@350
|
4739 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fftw3f" >&5
|
Chris@350
|
4740 $as_echo_n "checking for fftw3f... " >&6; }
|
Chris@350
|
4741
|
Chris@594
|
4742 if test -n "$fftw3f_CFLAGS"; then
|
Chris@594
|
4743 pkg_cv_fftw3f_CFLAGS="$fftw3f_CFLAGS"
|
Chris@594
|
4744 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
4745 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
4746 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
4747 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
4748 ac_status=$?
|
Chris@350
|
4749 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
4750 test $ac_status = 0; }; then
|
Chris@350
|
4751 pkg_cv_fftw3f_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
4752 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
4753 else
|
Chris@350
|
4754 pkg_failed=yes
|
Chris@350
|
4755 fi
|
Chris@594
|
4756 else
|
Chris@594
|
4757 pkg_failed=untried
|
Chris@594
|
4758 fi
|
Chris@594
|
4759 if test -n "$fftw3f_LIBS"; then
|
Chris@594
|
4760 pkg_cv_fftw3f_LIBS="$fftw3f_LIBS"
|
Chris@594
|
4761 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
4762 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
4763 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
4764 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
4765 ac_status=$?
|
Chris@350
|
4766 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
4767 test $ac_status = 0; }; then
|
Chris@350
|
4768 pkg_cv_fftw3f_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
4769 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
4770 else
|
Chris@350
|
4771 pkg_failed=yes
|
Chris@350
|
4772 fi
|
Chris@594
|
4773 else
|
Chris@594
|
4774 pkg_failed=untried
|
Chris@350
|
4775 fi
|
Chris@350
|
4776
|
Chris@350
|
4777
|
Chris@350
|
4778
|
Chris@350
|
4779 if test $pkg_failed = yes; then
|
Chris@594
|
4780 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
4781 $as_echo "no" >&6; }
|
Chris@350
|
4782
|
Chris@350
|
4783 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
4784 _pkg_short_errors_supported=yes
|
Chris@350
|
4785 else
|
Chris@350
|
4786 _pkg_short_errors_supported=no
|
Chris@350
|
4787 fi
|
Chris@350
|
4788 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
4789 fftw3f_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
4790 else
|
Chris@594
|
4791 fftw3f_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
4792 fi
|
Chris@350
|
4793 # Put the nasty error message in config.log where it belongs
|
Chris@350
|
4794 echo "$fftw3f_PKG_ERRORS" >&5
|
Chris@350
|
4795
|
Chris@594
|
4796 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
4797 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
4798 elif test $pkg_failed = untried; then
|
Chris@594
|
4799 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
4800 $as_echo "no" >&6; }
|
Chris@350
|
4801 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
4802 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
4803 else
|
Chris@350
|
4804 fftw3f_CFLAGS=$pkg_cv_fftw3f_CFLAGS
|
Chris@350
|
4805 fftw3f_LIBS=$pkg_cv_fftw3f_LIBS
|
Chris@350
|
4806 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
4807 $as_echo "yes" >&6; }
|
Chris@350
|
4808 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $fftw3f_CFLAGS";LIBS="$LIBS $fftw3f_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
4809 fi
|
Chris@350
|
4810 fi
|
Chris@350
|
4811 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
4812 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
4813 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
4814 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
4815 HAVES="$HAVES $SV_MODULE_HAVE"
|
Chris@350
|
4816 else
|
Chris@594
|
4817 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
4818 fi
|
Chris@350
|
4819
|
Chris@350
|
4820
|
Chris@350
|
4821 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
4822 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
4823 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
4824 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
4825 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
4826 $as_echo_n "(cached) " >&6
|
Chris@350
|
4827 else
|
Chris@350
|
4828 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
4829 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
4830 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
4831 /* end confdefs.h. */
|
Chris@350
|
4832
|
Chris@350
|
4833 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
4834 Use char because int might match the return type of a GCC
|
Chris@350
|
4835 builtin and then its argument prototype would still apply. */
|
Chris@350
|
4836 #ifdef __cplusplus
|
Chris@350
|
4837 extern "C"
|
Chris@350
|
4838 #endif
|
Chris@350
|
4839 char $SV_MODULE_FUNC ();
|
Chris@350
|
4840 int
|
Chris@350
|
4841 main ()
|
Chris@350
|
4842 {
|
Chris@350
|
4843 return $SV_MODULE_FUNC ();
|
Chris@350
|
4844 ;
|
Chris@350
|
4845 return 0;
|
Chris@350
|
4846 }
|
Chris@350
|
4847 _ACEOF
|
Chris@350
|
4848 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
4849 eval "$as_ac_Lib=yes"
|
Chris@350
|
4850 else
|
Chris@350
|
4851 eval "$as_ac_Lib=no"
|
Chris@350
|
4852 fi
|
Chris@350
|
4853 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
4854 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
4855 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
4856 fi
|
Chris@350
|
4857 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
4858 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
4859 $as_echo "$ac_res" >&6; }
|
Chris@594
|
4860 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
4861 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
4862 else
|
Chris@594
|
4863 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
4864 fi
|
Chris@350
|
4865
|
Chris@350
|
4866 fi
|
Chris@350
|
4867 fi
|
Chris@350
|
4868
|
Chris@350
|
4869
|
Chris@350
|
4870 SV_MODULE_MODULE=sndfile
|
Chris@350
|
4871 SV_MODULE_VERSION_TEST="sndfile >= 1.0.16"
|
Chris@350
|
4872 SV_MODULE_HEADER=sndfile.h
|
Chris@350
|
4873 SV_MODULE_LIB=sndfile
|
Chris@350
|
4874 SV_MODULE_FUNC=sf_open
|
Chris@350
|
4875 SV_MODULE_HAVE=HAVE_$(echo sndfile | tr 'a-z' 'A-Z')
|
Chris@350
|
4876 SV_MODULE_FAILED=1
|
Chris@405
|
4877 if test -n "$sndfile_LIBS" ; then
|
Chris@405
|
4878 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
4879 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@405
|
4880 CXXFLAGS="$CXXFLAGS $sndfile_CFLAGS"
|
Chris@405
|
4881 LIBS="$LIBS $sndfile_LIBS"
|
Chris@405
|
4882 SV_MODULE_FAILED=""
|
Chris@405
|
4883 fi
|
Chris@350
|
4884 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
4885 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
4886 fi
|
Chris@405
|
4887 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
4888
|
Chris@350
|
4889 pkg_failed=no
|
Chris@350
|
4890 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sndfile" >&5
|
Chris@350
|
4891 $as_echo_n "checking for sndfile... " >&6; }
|
Chris@350
|
4892
|
Chris@594
|
4893 if test -n "$sndfile_CFLAGS"; then
|
Chris@594
|
4894 pkg_cv_sndfile_CFLAGS="$sndfile_CFLAGS"
|
Chris@594
|
4895 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
4896 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
4897 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
4898 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
4899 ac_status=$?
|
Chris@350
|
4900 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
4901 test $ac_status = 0; }; then
|
Chris@350
|
4902 pkg_cv_sndfile_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
4903 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
4904 else
|
Chris@350
|
4905 pkg_failed=yes
|
Chris@350
|
4906 fi
|
Chris@594
|
4907 else
|
Chris@594
|
4908 pkg_failed=untried
|
Chris@594
|
4909 fi
|
Chris@594
|
4910 if test -n "$sndfile_LIBS"; then
|
Chris@594
|
4911 pkg_cv_sndfile_LIBS="$sndfile_LIBS"
|
Chris@594
|
4912 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
4913 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
4914 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
4915 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
4916 ac_status=$?
|
Chris@350
|
4917 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
4918 test $ac_status = 0; }; then
|
Chris@350
|
4919 pkg_cv_sndfile_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
4920 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
4921 else
|
Chris@350
|
4922 pkg_failed=yes
|
Chris@350
|
4923 fi
|
Chris@594
|
4924 else
|
Chris@594
|
4925 pkg_failed=untried
|
Chris@350
|
4926 fi
|
Chris@350
|
4927
|
Chris@350
|
4928
|
Chris@350
|
4929
|
Chris@350
|
4930 if test $pkg_failed = yes; then
|
Chris@594
|
4931 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
4932 $as_echo "no" >&6; }
|
Chris@350
|
4933
|
Chris@350
|
4934 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
4935 _pkg_short_errors_supported=yes
|
Chris@350
|
4936 else
|
Chris@350
|
4937 _pkg_short_errors_supported=no
|
Chris@350
|
4938 fi
|
Chris@350
|
4939 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
4940 sndfile_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
4941 else
|
Chris@594
|
4942 sndfile_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
4943 fi
|
Chris@350
|
4944 # Put the nasty error message in config.log where it belongs
|
Chris@350
|
4945 echo "$sndfile_PKG_ERRORS" >&5
|
Chris@350
|
4946
|
Chris@594
|
4947 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
4948 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
4949 elif test $pkg_failed = untried; then
|
Chris@594
|
4950 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
4951 $as_echo "no" >&6; }
|
Chris@350
|
4952 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
4953 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
4954 else
|
Chris@350
|
4955 sndfile_CFLAGS=$pkg_cv_sndfile_CFLAGS
|
Chris@350
|
4956 sndfile_LIBS=$pkg_cv_sndfile_LIBS
|
Chris@350
|
4957 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
4958 $as_echo "yes" >&6; }
|
Chris@350
|
4959 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $sndfile_CFLAGS";LIBS="$LIBS $sndfile_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
4960 fi
|
Chris@350
|
4961 fi
|
Chris@350
|
4962 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
4963 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
4964 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
4965 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
4966 HAVES="$HAVES $SV_MODULE_HAVE"
|
Chris@350
|
4967 else
|
Chris@594
|
4968 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
4969 fi
|
Chris@350
|
4970
|
Chris@350
|
4971
|
Chris@350
|
4972 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
4973 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
4974 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
4975 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
4976 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
4977 $as_echo_n "(cached) " >&6
|
Chris@350
|
4978 else
|
Chris@350
|
4979 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
4980 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
4981 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
4982 /* end confdefs.h. */
|
Chris@350
|
4983
|
Chris@350
|
4984 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
4985 Use char because int might match the return type of a GCC
|
Chris@350
|
4986 builtin and then its argument prototype would still apply. */
|
Chris@350
|
4987 #ifdef __cplusplus
|
Chris@350
|
4988 extern "C"
|
Chris@350
|
4989 #endif
|
Chris@350
|
4990 char $SV_MODULE_FUNC ();
|
Chris@350
|
4991 int
|
Chris@350
|
4992 main ()
|
Chris@350
|
4993 {
|
Chris@350
|
4994 return $SV_MODULE_FUNC ();
|
Chris@350
|
4995 ;
|
Chris@350
|
4996 return 0;
|
Chris@350
|
4997 }
|
Chris@350
|
4998 _ACEOF
|
Chris@350
|
4999 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
5000 eval "$as_ac_Lib=yes"
|
Chris@350
|
5001 else
|
Chris@350
|
5002 eval "$as_ac_Lib=no"
|
Chris@350
|
5003 fi
|
Chris@350
|
5004 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
5005 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
5006 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
5007 fi
|
Chris@350
|
5008 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
5009 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
5010 $as_echo "$ac_res" >&6; }
|
Chris@594
|
5011 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
5012 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
5013 else
|
Chris@594
|
5014 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
5015 fi
|
Chris@350
|
5016
|
Chris@350
|
5017 fi
|
Chris@350
|
5018 fi
|
Chris@350
|
5019
|
Chris@350
|
5020
|
Chris@350
|
5021 SV_MODULE_MODULE=samplerate
|
Chris@350
|
5022 SV_MODULE_VERSION_TEST="samplerate >= 0.1.2"
|
Chris@350
|
5023 SV_MODULE_HEADER=samplerate.h
|
Chris@350
|
5024 SV_MODULE_LIB=samplerate
|
Chris@350
|
5025 SV_MODULE_FUNC=src_new
|
Chris@350
|
5026 SV_MODULE_HAVE=HAVE_$(echo samplerate | tr 'a-z' 'A-Z')
|
Chris@350
|
5027 SV_MODULE_FAILED=1
|
Chris@405
|
5028 if test -n "$samplerate_LIBS" ; then
|
Chris@405
|
5029 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
5030 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@405
|
5031 CXXFLAGS="$CXXFLAGS $samplerate_CFLAGS"
|
Chris@405
|
5032 LIBS="$LIBS $samplerate_LIBS"
|
Chris@405
|
5033 SV_MODULE_FAILED=""
|
Chris@405
|
5034 fi
|
Chris@350
|
5035 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
5036 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
5037 fi
|
Chris@405
|
5038 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
5039
|
Chris@350
|
5040 pkg_failed=no
|
Chris@350
|
5041 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for samplerate" >&5
|
Chris@350
|
5042 $as_echo_n "checking for samplerate... " >&6; }
|
Chris@350
|
5043
|
Chris@594
|
5044 if test -n "$samplerate_CFLAGS"; then
|
Chris@594
|
5045 pkg_cv_samplerate_CFLAGS="$samplerate_CFLAGS"
|
Chris@594
|
5046 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5047 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5048 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5049 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5050 ac_status=$?
|
Chris@350
|
5051 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5052 test $ac_status = 0; }; then
|
Chris@350
|
5053 pkg_cv_samplerate_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5054 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5055 else
|
Chris@350
|
5056 pkg_failed=yes
|
Chris@350
|
5057 fi
|
Chris@594
|
5058 else
|
Chris@594
|
5059 pkg_failed=untried
|
Chris@594
|
5060 fi
|
Chris@594
|
5061 if test -n "$samplerate_LIBS"; then
|
Chris@594
|
5062 pkg_cv_samplerate_LIBS="$samplerate_LIBS"
|
Chris@594
|
5063 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5064 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5065 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5066 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5067 ac_status=$?
|
Chris@350
|
5068 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5069 test $ac_status = 0; }; then
|
Chris@350
|
5070 pkg_cv_samplerate_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5071 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5072 else
|
Chris@350
|
5073 pkg_failed=yes
|
Chris@350
|
5074 fi
|
Chris@594
|
5075 else
|
Chris@594
|
5076 pkg_failed=untried
|
Chris@350
|
5077 fi
|
Chris@350
|
5078
|
Chris@350
|
5079
|
Chris@350
|
5080
|
Chris@350
|
5081 if test $pkg_failed = yes; then
|
Chris@594
|
5082 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5083 $as_echo "no" >&6; }
|
Chris@350
|
5084
|
Chris@350
|
5085 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
5086 _pkg_short_errors_supported=yes
|
Chris@350
|
5087 else
|
Chris@350
|
5088 _pkg_short_errors_supported=no
|
Chris@350
|
5089 fi
|
Chris@350
|
5090 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
5091 samplerate_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5092 else
|
Chris@594
|
5093 samplerate_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5094 fi
|
Chris@350
|
5095 # Put the nasty error message in config.log where it belongs
|
Chris@350
|
5096 echo "$samplerate_PKG_ERRORS" >&5
|
Chris@350
|
5097
|
Chris@594
|
5098 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
5099 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
5100 elif test $pkg_failed = untried; then
|
Chris@594
|
5101 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5102 $as_echo "no" >&6; }
|
Chris@350
|
5103 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
5104 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
5105 else
|
Chris@350
|
5106 samplerate_CFLAGS=$pkg_cv_samplerate_CFLAGS
|
Chris@350
|
5107 samplerate_LIBS=$pkg_cv_samplerate_LIBS
|
Chris@350
|
5108 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
5109 $as_echo "yes" >&6; }
|
Chris@350
|
5110 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $samplerate_CFLAGS";LIBS="$LIBS $samplerate_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
5111 fi
|
Chris@350
|
5112 fi
|
Chris@350
|
5113 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
5114 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
5115 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
5116 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
5117 HAVES="$HAVES $SV_MODULE_HAVE"
|
Chris@350
|
5118 else
|
Chris@594
|
5119 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
5120 fi
|
Chris@350
|
5121
|
Chris@350
|
5122
|
Chris@350
|
5123 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
5124 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
5125 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
5126 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
5127 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
5128 $as_echo_n "(cached) " >&6
|
Chris@350
|
5129 else
|
Chris@350
|
5130 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
5131 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
5132 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
5133 /* end confdefs.h. */
|
Chris@350
|
5134
|
Chris@350
|
5135 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
5136 Use char because int might match the return type of a GCC
|
Chris@350
|
5137 builtin and then its argument prototype would still apply. */
|
Chris@350
|
5138 #ifdef __cplusplus
|
Chris@350
|
5139 extern "C"
|
Chris@350
|
5140 #endif
|
Chris@350
|
5141 char $SV_MODULE_FUNC ();
|
Chris@350
|
5142 int
|
Chris@350
|
5143 main ()
|
Chris@350
|
5144 {
|
Chris@350
|
5145 return $SV_MODULE_FUNC ();
|
Chris@350
|
5146 ;
|
Chris@350
|
5147 return 0;
|
Chris@350
|
5148 }
|
Chris@350
|
5149 _ACEOF
|
Chris@350
|
5150 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
5151 eval "$as_ac_Lib=yes"
|
Chris@350
|
5152 else
|
Chris@350
|
5153 eval "$as_ac_Lib=no"
|
Chris@350
|
5154 fi
|
Chris@350
|
5155 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
5156 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
5157 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
5158 fi
|
Chris@350
|
5159 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
5160 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
5161 $as_echo "$ac_res" >&6; }
|
Chris@594
|
5162 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
5163 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
5164 else
|
Chris@594
|
5165 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
5166 fi
|
Chris@350
|
5167
|
Chris@350
|
5168 fi
|
Chris@350
|
5169 fi
|
Chris@350
|
5170
|
Chris@350
|
5171
|
Chris@350
|
5172 SV_MODULE_MODULE=vamp
|
Chris@350
|
5173 SV_MODULE_VERSION_TEST="vamp >= 2.1"
|
Chris@350
|
5174 SV_MODULE_HEADER=vamp/vamp.h
|
Chris@350
|
5175 SV_MODULE_LIB=
|
Chris@350
|
5176 SV_MODULE_FUNC=
|
Chris@350
|
5177 SV_MODULE_HAVE=HAVE_$(echo vamp | tr 'a-z' 'A-Z')
|
Chris@350
|
5178 SV_MODULE_FAILED=1
|
Chris@405
|
5179 if test -n "$vamp_LIBS" ; then
|
Chris@405
|
5180 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
5181 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@405
|
5182 CXXFLAGS="$CXXFLAGS $vamp_CFLAGS"
|
Chris@405
|
5183 LIBS="$LIBS $vamp_LIBS"
|
Chris@405
|
5184 SV_MODULE_FAILED=""
|
Chris@405
|
5185 fi
|
Chris@350
|
5186 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
5187 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
5188 fi
|
Chris@405
|
5189 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
5190
|
Chris@350
|
5191 pkg_failed=no
|
Chris@350
|
5192 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for vamp" >&5
|
Chris@350
|
5193 $as_echo_n "checking for vamp... " >&6; }
|
Chris@350
|
5194
|
Chris@594
|
5195 if test -n "$vamp_CFLAGS"; then
|
Chris@594
|
5196 pkg_cv_vamp_CFLAGS="$vamp_CFLAGS"
|
Chris@594
|
5197 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5198 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5199 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5200 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5201 ac_status=$?
|
Chris@350
|
5202 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5203 test $ac_status = 0; }; then
|
Chris@350
|
5204 pkg_cv_vamp_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5205 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5206 else
|
Chris@350
|
5207 pkg_failed=yes
|
Chris@350
|
5208 fi
|
Chris@594
|
5209 else
|
Chris@594
|
5210 pkg_failed=untried
|
Chris@594
|
5211 fi
|
Chris@594
|
5212 if test -n "$vamp_LIBS"; then
|
Chris@594
|
5213 pkg_cv_vamp_LIBS="$vamp_LIBS"
|
Chris@594
|
5214 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5215 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5216 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5217 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5218 ac_status=$?
|
Chris@350
|
5219 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5220 test $ac_status = 0; }; then
|
Chris@350
|
5221 pkg_cv_vamp_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5222 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5223 else
|
Chris@350
|
5224 pkg_failed=yes
|
Chris@350
|
5225 fi
|
Chris@594
|
5226 else
|
Chris@594
|
5227 pkg_failed=untried
|
Chris@350
|
5228 fi
|
Chris@350
|
5229
|
Chris@350
|
5230
|
Chris@350
|
5231
|
Chris@350
|
5232 if test $pkg_failed = yes; then
|
Chris@594
|
5233 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5234 $as_echo "no" >&6; }
|
Chris@350
|
5235
|
Chris@350
|
5236 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
5237 _pkg_short_errors_supported=yes
|
Chris@350
|
5238 else
|
Chris@350
|
5239 _pkg_short_errors_supported=no
|
Chris@350
|
5240 fi
|
Chris@350
|
5241 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
5242 vamp_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5243 else
|
Chris@594
|
5244 vamp_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5245 fi
|
Chris@350
|
5246 # Put the nasty error message in config.log where it belongs
|
Chris@350
|
5247 echo "$vamp_PKG_ERRORS" >&5
|
Chris@350
|
5248
|
Chris@594
|
5249 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
5250 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
5251 elif test $pkg_failed = untried; then
|
Chris@594
|
5252 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5253 $as_echo "no" >&6; }
|
Chris@350
|
5254 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
5255 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
5256 else
|
Chris@350
|
5257 vamp_CFLAGS=$pkg_cv_vamp_CFLAGS
|
Chris@350
|
5258 vamp_LIBS=$pkg_cv_vamp_LIBS
|
Chris@350
|
5259 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
5260 $as_echo "yes" >&6; }
|
Chris@350
|
5261 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $vamp_CFLAGS";LIBS="$LIBS $vamp_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
5262 fi
|
Chris@350
|
5263 fi
|
Chris@350
|
5264 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
5265 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
5266 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
5267 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
5268 HAVES="$HAVES $SV_MODULE_HAVE"
|
Chris@350
|
5269 else
|
Chris@594
|
5270 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
5271 fi
|
Chris@350
|
5272
|
Chris@350
|
5273
|
Chris@350
|
5274 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
5275 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
5276 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
5277 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
5278 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
5279 $as_echo_n "(cached) " >&6
|
Chris@350
|
5280 else
|
Chris@350
|
5281 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
5282 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
5283 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
5284 /* end confdefs.h. */
|
Chris@350
|
5285
|
Chris@350
|
5286 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
5287 Use char because int might match the return type of a GCC
|
Chris@350
|
5288 builtin and then its argument prototype would still apply. */
|
Chris@350
|
5289 #ifdef __cplusplus
|
Chris@350
|
5290 extern "C"
|
Chris@350
|
5291 #endif
|
Chris@350
|
5292 char $SV_MODULE_FUNC ();
|
Chris@350
|
5293 int
|
Chris@350
|
5294 main ()
|
Chris@350
|
5295 {
|
Chris@350
|
5296 return $SV_MODULE_FUNC ();
|
Chris@350
|
5297 ;
|
Chris@350
|
5298 return 0;
|
Chris@350
|
5299 }
|
Chris@350
|
5300 _ACEOF
|
Chris@350
|
5301 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
5302 eval "$as_ac_Lib=yes"
|
Chris@350
|
5303 else
|
Chris@350
|
5304 eval "$as_ac_Lib=no"
|
Chris@350
|
5305 fi
|
Chris@350
|
5306 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
5307 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
5308 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
5309 fi
|
Chris@350
|
5310 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
5311 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
5312 $as_echo "$ac_res" >&6; }
|
Chris@594
|
5313 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
5314 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
5315 else
|
Chris@594
|
5316 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
5317 fi
|
Chris@350
|
5318
|
Chris@350
|
5319 fi
|
Chris@350
|
5320 fi
|
Chris@350
|
5321
|
Chris@350
|
5322
|
Chris@350
|
5323 SV_MODULE_MODULE=vamphostsdk
|
Chris@560
|
5324 SV_MODULE_VERSION_TEST="vamp-hostsdk >= 2.5"
|
Chris@350
|
5325 SV_MODULE_HEADER=vamp-hostsdk/PluginLoader.h
|
Chris@505
|
5326 SV_MODULE_LIB=vamp-hostsdk
|
Chris@560
|
5327 SV_MODULE_FUNC=libvamphostsdk_v_2_5_present
|
Chris@350
|
5328 SV_MODULE_HAVE=HAVE_$(echo vamphostsdk | tr 'a-z' 'A-Z')
|
Chris@350
|
5329 SV_MODULE_FAILED=1
|
Chris@405
|
5330 if test -n "$vamphostsdk_LIBS" ; then
|
Chris@405
|
5331 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
5332 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@405
|
5333 CXXFLAGS="$CXXFLAGS $vamphostsdk_CFLAGS"
|
Chris@405
|
5334 LIBS="$LIBS $vamphostsdk_LIBS"
|
Chris@405
|
5335 SV_MODULE_FAILED=""
|
Chris@405
|
5336 fi
|
Chris@350
|
5337 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
5338 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
5339 fi
|
Chris@405
|
5340 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
5341
|
Chris@350
|
5342 pkg_failed=no
|
Chris@350
|
5343 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for vamphostsdk" >&5
|
Chris@350
|
5344 $as_echo_n "checking for vamphostsdk... " >&6; }
|
Chris@350
|
5345
|
Chris@594
|
5346 if test -n "$vamphostsdk_CFLAGS"; then
|
Chris@594
|
5347 pkg_cv_vamphostsdk_CFLAGS="$vamphostsdk_CFLAGS"
|
Chris@594
|
5348 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5349 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5350 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5351 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5352 ac_status=$?
|
Chris@350
|
5353 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5354 test $ac_status = 0; }; then
|
Chris@350
|
5355 pkg_cv_vamphostsdk_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5356 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5357 else
|
Chris@350
|
5358 pkg_failed=yes
|
Chris@350
|
5359 fi
|
Chris@594
|
5360 else
|
Chris@594
|
5361 pkg_failed=untried
|
Chris@594
|
5362 fi
|
Chris@594
|
5363 if test -n "$vamphostsdk_LIBS"; then
|
Chris@594
|
5364 pkg_cv_vamphostsdk_LIBS="$vamphostsdk_LIBS"
|
Chris@594
|
5365 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5366 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5367 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5368 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5369 ac_status=$?
|
Chris@350
|
5370 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5371 test $ac_status = 0; }; then
|
Chris@350
|
5372 pkg_cv_vamphostsdk_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5373 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5374 else
|
Chris@350
|
5375 pkg_failed=yes
|
Chris@350
|
5376 fi
|
Chris@594
|
5377 else
|
Chris@594
|
5378 pkg_failed=untried
|
Chris@350
|
5379 fi
|
Chris@350
|
5380
|
Chris@350
|
5381
|
Chris@350
|
5382
|
Chris@350
|
5383 if test $pkg_failed = yes; then
|
Chris@594
|
5384 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5385 $as_echo "no" >&6; }
|
Chris@350
|
5386
|
Chris@350
|
5387 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
5388 _pkg_short_errors_supported=yes
|
Chris@350
|
5389 else
|
Chris@350
|
5390 _pkg_short_errors_supported=no
|
Chris@350
|
5391 fi
|
Chris@350
|
5392 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
5393 vamphostsdk_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5394 else
|
Chris@594
|
5395 vamphostsdk_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5396 fi
|
Chris@350
|
5397 # Put the nasty error message in config.log where it belongs
|
Chris@350
|
5398 echo "$vamphostsdk_PKG_ERRORS" >&5
|
Chris@350
|
5399
|
Chris@594
|
5400 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
5401 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
5402 elif test $pkg_failed = untried; then
|
Chris@594
|
5403 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5404 $as_echo "no" >&6; }
|
Chris@350
|
5405 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
5406 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
5407 else
|
Chris@350
|
5408 vamphostsdk_CFLAGS=$pkg_cv_vamphostsdk_CFLAGS
|
Chris@350
|
5409 vamphostsdk_LIBS=$pkg_cv_vamphostsdk_LIBS
|
Chris@350
|
5410 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
5411 $as_echo "yes" >&6; }
|
Chris@350
|
5412 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $vamphostsdk_CFLAGS";LIBS="$LIBS $vamphostsdk_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
5413 fi
|
Chris@350
|
5414 fi
|
Chris@350
|
5415 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
5416 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
5417 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
5418 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
5419 HAVES="$HAVES $SV_MODULE_HAVE"
|
Chris@350
|
5420 else
|
Chris@594
|
5421 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
5422 fi
|
Chris@350
|
5423
|
Chris@350
|
5424
|
Chris@350
|
5425 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
5426 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
5427 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
5428 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
5429 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
5430 $as_echo_n "(cached) " >&6
|
Chris@350
|
5431 else
|
Chris@350
|
5432 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
5433 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
5434 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
5435 /* end confdefs.h. */
|
Chris@350
|
5436
|
Chris@350
|
5437 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
5438 Use char because int might match the return type of a GCC
|
Chris@350
|
5439 builtin and then its argument prototype would still apply. */
|
Chris@350
|
5440 #ifdef __cplusplus
|
Chris@350
|
5441 extern "C"
|
Chris@350
|
5442 #endif
|
Chris@350
|
5443 char $SV_MODULE_FUNC ();
|
Chris@350
|
5444 int
|
Chris@350
|
5445 main ()
|
Chris@350
|
5446 {
|
Chris@350
|
5447 return $SV_MODULE_FUNC ();
|
Chris@350
|
5448 ;
|
Chris@350
|
5449 return 0;
|
Chris@350
|
5450 }
|
Chris@350
|
5451 _ACEOF
|
Chris@350
|
5452 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
5453 eval "$as_ac_Lib=yes"
|
Chris@350
|
5454 else
|
Chris@350
|
5455 eval "$as_ac_Lib=no"
|
Chris@350
|
5456 fi
|
Chris@350
|
5457 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
5458 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
5459 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
5460 fi
|
Chris@350
|
5461 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
5462 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
5463 $as_echo "$ac_res" >&6; }
|
Chris@594
|
5464 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
5465 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
5466 else
|
Chris@594
|
5467 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
5468 fi
|
Chris@350
|
5469
|
Chris@350
|
5470 fi
|
Chris@350
|
5471 fi
|
Chris@350
|
5472
|
Chris@350
|
5473
|
Chris@350
|
5474 SV_MODULE_MODULE=rubberband
|
Chris@350
|
5475 SV_MODULE_VERSION_TEST="rubberband"
|
Chris@350
|
5476 SV_MODULE_HEADER=rubberband/RubberBandStretcher.h
|
Chris@350
|
5477 SV_MODULE_LIB=rubberband
|
Chris@350
|
5478 SV_MODULE_FUNC=rubberband_new
|
Chris@350
|
5479 SV_MODULE_HAVE=HAVE_$(echo rubberband | tr 'a-z' 'A-Z')
|
Chris@350
|
5480 SV_MODULE_FAILED=1
|
Chris@405
|
5481 if test -n "$rubberband_LIBS" ; then
|
Chris@405
|
5482 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
5483 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@405
|
5484 CXXFLAGS="$CXXFLAGS $rubberband_CFLAGS"
|
Chris@405
|
5485 LIBS="$LIBS $rubberband_LIBS"
|
Chris@405
|
5486 SV_MODULE_FAILED=""
|
Chris@405
|
5487 fi
|
Chris@350
|
5488 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
5489 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
5490 fi
|
Chris@405
|
5491 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
5492
|
Chris@350
|
5493 pkg_failed=no
|
Chris@350
|
5494 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for rubberband" >&5
|
Chris@350
|
5495 $as_echo_n "checking for rubberband... " >&6; }
|
Chris@350
|
5496
|
Chris@594
|
5497 if test -n "$rubberband_CFLAGS"; then
|
Chris@594
|
5498 pkg_cv_rubberband_CFLAGS="$rubberband_CFLAGS"
|
Chris@594
|
5499 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5500 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5501 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5502 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5503 ac_status=$?
|
Chris@350
|
5504 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5505 test $ac_status = 0; }; then
|
Chris@350
|
5506 pkg_cv_rubberband_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5507 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5508 else
|
Chris@350
|
5509 pkg_failed=yes
|
Chris@350
|
5510 fi
|
Chris@594
|
5511 else
|
Chris@594
|
5512 pkg_failed=untried
|
Chris@594
|
5513 fi
|
Chris@594
|
5514 if test -n "$rubberband_LIBS"; then
|
Chris@594
|
5515 pkg_cv_rubberband_LIBS="$rubberband_LIBS"
|
Chris@594
|
5516 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5517 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5518 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5519 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5520 ac_status=$?
|
Chris@350
|
5521 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5522 test $ac_status = 0; }; then
|
Chris@350
|
5523 pkg_cv_rubberband_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5524 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5525 else
|
Chris@350
|
5526 pkg_failed=yes
|
Chris@350
|
5527 fi
|
Chris@594
|
5528 else
|
Chris@594
|
5529 pkg_failed=untried
|
Chris@350
|
5530 fi
|
Chris@350
|
5531
|
Chris@350
|
5532
|
Chris@350
|
5533
|
Chris@350
|
5534 if test $pkg_failed = yes; then
|
Chris@594
|
5535 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5536 $as_echo "no" >&6; }
|
Chris@350
|
5537
|
Chris@350
|
5538 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
5539 _pkg_short_errors_supported=yes
|
Chris@350
|
5540 else
|
Chris@350
|
5541 _pkg_short_errors_supported=no
|
Chris@350
|
5542 fi
|
Chris@350
|
5543 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
5544 rubberband_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5545 else
|
Chris@594
|
5546 rubberband_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5547 fi
|
Chris@350
|
5548 # Put the nasty error message in config.log where it belongs
|
Chris@350
|
5549 echo "$rubberband_PKG_ERRORS" >&5
|
Chris@350
|
5550
|
Chris@594
|
5551 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
5552 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
5553 elif test $pkg_failed = untried; then
|
Chris@594
|
5554 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5555 $as_echo "no" >&6; }
|
Chris@350
|
5556 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
5557 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
5558 else
|
Chris@350
|
5559 rubberband_CFLAGS=$pkg_cv_rubberband_CFLAGS
|
Chris@350
|
5560 rubberband_LIBS=$pkg_cv_rubberband_LIBS
|
Chris@350
|
5561 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
5562 $as_echo "yes" >&6; }
|
Chris@350
|
5563 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $rubberband_CFLAGS";LIBS="$LIBS $rubberband_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
5564 fi
|
Chris@350
|
5565 fi
|
Chris@350
|
5566 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
5567 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
5568 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
5569 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
5570 HAVES="$HAVES $SV_MODULE_HAVE"
|
Chris@350
|
5571 else
|
Chris@594
|
5572 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
5573 fi
|
Chris@350
|
5574
|
Chris@350
|
5575
|
Chris@350
|
5576 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
5577 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
5578 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
5579 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
5580 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
5581 $as_echo_n "(cached) " >&6
|
Chris@350
|
5582 else
|
Chris@350
|
5583 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
5584 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
5585 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
5586 /* end confdefs.h. */
|
Chris@350
|
5587
|
Chris@350
|
5588 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
5589 Use char because int might match the return type of a GCC
|
Chris@350
|
5590 builtin and then its argument prototype would still apply. */
|
Chris@350
|
5591 #ifdef __cplusplus
|
Chris@350
|
5592 extern "C"
|
Chris@350
|
5593 #endif
|
Chris@350
|
5594 char $SV_MODULE_FUNC ();
|
Chris@350
|
5595 int
|
Chris@350
|
5596 main ()
|
Chris@350
|
5597 {
|
Chris@350
|
5598 return $SV_MODULE_FUNC ();
|
Chris@350
|
5599 ;
|
Chris@350
|
5600 return 0;
|
Chris@350
|
5601 }
|
Chris@350
|
5602 _ACEOF
|
Chris@350
|
5603 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
5604 eval "$as_ac_Lib=yes"
|
Chris@350
|
5605 else
|
Chris@350
|
5606 eval "$as_ac_Lib=no"
|
Chris@350
|
5607 fi
|
Chris@350
|
5608 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
5609 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
5610 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
5611 fi
|
Chris@350
|
5612 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
5613 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
5614 $as_echo "$ac_res" >&6; }
|
Chris@594
|
5615 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
5616 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
5617 else
|
Chris@594
|
5618 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@350
|
5619 fi
|
Chris@350
|
5620
|
Chris@350
|
5621 fi
|
Chris@350
|
5622 fi
|
Chris@350
|
5623
|
Chris@350
|
5624
|
Chris@572
|
5625 SV_MODULE_MODULE=sord
|
Chris@572
|
5626 SV_MODULE_VERSION_TEST="sord-0 >= 0.5"
|
Chris@572
|
5627 SV_MODULE_HEADER=sord/sord.h
|
Chris@572
|
5628 SV_MODULE_LIB=sord-0
|
Chris@572
|
5629 SV_MODULE_FUNC=sord_world_new
|
Chris@572
|
5630 SV_MODULE_HAVE=HAVE_$(echo sord | tr 'a-z' 'A-Z')
|
Chris@350
|
5631 SV_MODULE_FAILED=1
|
Chris@572
|
5632 if test -n "$sord_LIBS" ; then
|
Chris@405
|
5633 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
5634 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
5635 CXXFLAGS="$CXXFLAGS $sord_CFLAGS"
|
Chris@572
|
5636 LIBS="$LIBS $sord_LIBS"
|
Chris@405
|
5637 SV_MODULE_FAILED=""
|
Chris@405
|
5638 fi
|
Chris@350
|
5639 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
5640 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
5641 fi
|
Chris@405
|
5642 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
5643
|
Chris@350
|
5644 pkg_failed=no
|
Chris@572
|
5645 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sord" >&5
|
Chris@572
|
5646 $as_echo_n "checking for sord... " >&6; }
|
Chris@572
|
5647
|
Chris@594
|
5648 if test -n "$sord_CFLAGS"; then
|
Chris@594
|
5649 pkg_cv_sord_CFLAGS="$sord_CFLAGS"
|
Chris@594
|
5650 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5651 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5652 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5653 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5654 ac_status=$?
|
Chris@350
|
5655 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5656 test $ac_status = 0; }; then
|
Chris@572
|
5657 pkg_cv_sord_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5658 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5659 else
|
Chris@350
|
5660 pkg_failed=yes
|
Chris@350
|
5661 fi
|
Chris@594
|
5662 else
|
Chris@594
|
5663 pkg_failed=untried
|
Chris@594
|
5664 fi
|
Chris@594
|
5665 if test -n "$sord_LIBS"; then
|
Chris@594
|
5666 pkg_cv_sord_LIBS="$sord_LIBS"
|
Chris@594
|
5667 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5668 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5669 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5670 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5671 ac_status=$?
|
Chris@350
|
5672 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5673 test $ac_status = 0; }; then
|
Chris@572
|
5674 pkg_cv_sord_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5675 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5676 else
|
Chris@350
|
5677 pkg_failed=yes
|
Chris@350
|
5678 fi
|
Chris@594
|
5679 else
|
Chris@594
|
5680 pkg_failed=untried
|
Chris@350
|
5681 fi
|
Chris@350
|
5682
|
Chris@350
|
5683
|
Chris@350
|
5684
|
Chris@350
|
5685 if test $pkg_failed = yes; then
|
Chris@594
|
5686 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5687 $as_echo "no" >&6; }
|
Chris@350
|
5688
|
Chris@350
|
5689 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
5690 _pkg_short_errors_supported=yes
|
Chris@350
|
5691 else
|
Chris@350
|
5692 _pkg_short_errors_supported=no
|
Chris@350
|
5693 fi
|
Chris@350
|
5694 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
5695 sord_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5696 else
|
Chris@594
|
5697 sord_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5698 fi
|
Chris@350
|
5699 # Put the nasty error message in config.log where it belongs
|
Chris@572
|
5700 echo "$sord_PKG_ERRORS" >&5
|
Chris@572
|
5701
|
Chris@594
|
5702 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
5703 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
5704 elif test $pkg_failed = untried; then
|
Chris@594
|
5705 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5706 $as_echo "no" >&6; }
|
Chris@572
|
5707 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
5708 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
5709 else
|
Chris@572
|
5710 sord_CFLAGS=$pkg_cv_sord_CFLAGS
|
Chris@572
|
5711 sord_LIBS=$pkg_cv_sord_LIBS
|
Chris@350
|
5712 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
5713 $as_echo "yes" >&6; }
|
Chris@572
|
5714 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $sord_CFLAGS";LIBS="$LIBS $sord_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
5715 fi
|
Chris@350
|
5716 fi
|
Chris@350
|
5717 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
5718 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
5719 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
5720 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@572
|
5721 HAVES="$HAVES $SV_MODULE_HAVE"
|
Chris@572
|
5722 else
|
Chris@594
|
5723 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@572
|
5724 fi
|
Chris@572
|
5725
|
Chris@572
|
5726
|
Chris@572
|
5727 if test -n "$SV_MODULE_LIB"; then
|
Chris@572
|
5728 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
5729 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
5730 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
5731 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
5732 $as_echo_n "(cached) " >&6
|
Chris@350
|
5733 else
|
Chris@350
|
5734 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
5735 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
5736 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
5737 /* end confdefs.h. */
|
Chris@350
|
5738
|
Chris@350
|
5739 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
5740 Use char because int might match the return type of a GCC
|
Chris@350
|
5741 builtin and then its argument prototype would still apply. */
|
Chris@350
|
5742 #ifdef __cplusplus
|
Chris@350
|
5743 extern "C"
|
Chris@350
|
5744 #endif
|
Chris@350
|
5745 char $SV_MODULE_FUNC ();
|
Chris@350
|
5746 int
|
Chris@350
|
5747 main ()
|
Chris@350
|
5748 {
|
Chris@350
|
5749 return $SV_MODULE_FUNC ();
|
Chris@350
|
5750 ;
|
Chris@350
|
5751 return 0;
|
Chris@350
|
5752 }
|
Chris@350
|
5753 _ACEOF
|
Chris@350
|
5754 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
5755 eval "$as_ac_Lib=yes"
|
Chris@350
|
5756 else
|
Chris@350
|
5757 eval "$as_ac_Lib=no"
|
Chris@350
|
5758 fi
|
Chris@350
|
5759 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
5760 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
5761 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
5762 fi
|
Chris@350
|
5763 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
5764 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
5765 $as_echo "$ac_res" >&6; }
|
Chris@594
|
5766 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
5767 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
5768 else
|
Chris@594
|
5769 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@572
|
5770 fi
|
Chris@572
|
5771
|
Chris@350
|
5772 fi
|
Chris@350
|
5773 fi
|
Chris@350
|
5774
|
Chris@350
|
5775
|
Chris@572
|
5776 SV_MODULE_MODULE=serd
|
Chris@572
|
5777 SV_MODULE_VERSION_TEST="serd-0 >= 0.5"
|
Chris@572
|
5778 SV_MODULE_HEADER=serd/serd.h
|
Chris@572
|
5779 SV_MODULE_LIB=serd-0
|
Chris@572
|
5780 SV_MODULE_FUNC=serd_reader_read_file
|
Chris@572
|
5781 SV_MODULE_HAVE=HAVE_$(echo serd | tr 'a-z' 'A-Z')
|
Chris@350
|
5782 SV_MODULE_FAILED=1
|
Chris@572
|
5783 if test -n "$serd_LIBS" ; then
|
Chris@405
|
5784 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
5785 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
5786 CXXFLAGS="$CXXFLAGS $serd_CFLAGS"
|
Chris@572
|
5787 LIBS="$LIBS $serd_LIBS"
|
Chris@405
|
5788 SV_MODULE_FAILED=""
|
Chris@405
|
5789 fi
|
Chris@350
|
5790 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
5791 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
5792 fi
|
Chris@405
|
5793 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
5794
|
Chris@350
|
5795 pkg_failed=no
|
Chris@572
|
5796 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for serd" >&5
|
Chris@572
|
5797 $as_echo_n "checking for serd... " >&6; }
|
Chris@572
|
5798
|
Chris@594
|
5799 if test -n "$serd_CFLAGS"; then
|
Chris@594
|
5800 pkg_cv_serd_CFLAGS="$serd_CFLAGS"
|
Chris@594
|
5801 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5802 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5803 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5804 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5805 ac_status=$?
|
Chris@350
|
5806 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5807 test $ac_status = 0; }; then
|
Chris@572
|
5808 pkg_cv_serd_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5809 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5810 else
|
Chris@350
|
5811 pkg_failed=yes
|
Chris@350
|
5812 fi
|
Chris@594
|
5813 else
|
Chris@594
|
5814 pkg_failed=untried
|
Chris@594
|
5815 fi
|
Chris@594
|
5816 if test -n "$serd_LIBS"; then
|
Chris@594
|
5817 pkg_cv_serd_LIBS="$serd_LIBS"
|
Chris@594
|
5818 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5819 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5820 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5821 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5822 ac_status=$?
|
Chris@350
|
5823 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5824 test $ac_status = 0; }; then
|
Chris@572
|
5825 pkg_cv_serd_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5826 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5827 else
|
Chris@350
|
5828 pkg_failed=yes
|
Chris@350
|
5829 fi
|
Chris@594
|
5830 else
|
Chris@594
|
5831 pkg_failed=untried
|
Chris@350
|
5832 fi
|
Chris@350
|
5833
|
Chris@350
|
5834
|
Chris@350
|
5835
|
Chris@350
|
5836 if test $pkg_failed = yes; then
|
Chris@594
|
5837 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5838 $as_echo "no" >&6; }
|
Chris@350
|
5839
|
Chris@350
|
5840 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
5841 _pkg_short_errors_supported=yes
|
Chris@350
|
5842 else
|
Chris@350
|
5843 _pkg_short_errors_supported=no
|
Chris@350
|
5844 fi
|
Chris@350
|
5845 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
5846 serd_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5847 else
|
Chris@594
|
5848 serd_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5849 fi
|
Chris@350
|
5850 # Put the nasty error message in config.log where it belongs
|
Chris@572
|
5851 echo "$serd_PKG_ERRORS" >&5
|
Chris@572
|
5852
|
Chris@594
|
5853 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
5854 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@350
|
5855 elif test $pkg_failed = untried; then
|
Chris@594
|
5856 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5857 $as_echo "no" >&6; }
|
Chris@572
|
5858 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
5859 $as_echo "$as_me: Failed to find required module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
5860 else
|
Chris@572
|
5861 serd_CFLAGS=$pkg_cv_serd_CFLAGS
|
Chris@572
|
5862 serd_LIBS=$pkg_cv_serd_LIBS
|
Chris@350
|
5863 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
5864 $as_echo "yes" >&6; }
|
Chris@572
|
5865 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $serd_CFLAGS";LIBS="$LIBS $serd_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
5866 fi
|
Chris@350
|
5867 fi
|
Chris@350
|
5868 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
5869 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
5870 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
5871 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@572
|
5872 HAVES="$HAVES $SV_MODULE_HAVE"
|
Chris@572
|
5873 else
|
Chris@594
|
5874 as_fn_error $? "Failed to find header $SV_MODULE_HEADER for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@572
|
5875 fi
|
Chris@572
|
5876
|
Chris@572
|
5877
|
Chris@572
|
5878 if test -n "$SV_MODULE_LIB"; then
|
Chris@572
|
5879 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
5880 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
5881 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
5882 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
5883 $as_echo_n "(cached) " >&6
|
Chris@350
|
5884 else
|
Chris@350
|
5885 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
5886 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
5887 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
5888 /* end confdefs.h. */
|
Chris@350
|
5889
|
Chris@350
|
5890 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
5891 Use char because int might match the return type of a GCC
|
Chris@350
|
5892 builtin and then its argument prototype would still apply. */
|
Chris@350
|
5893 #ifdef __cplusplus
|
Chris@350
|
5894 extern "C"
|
Chris@350
|
5895 #endif
|
Chris@350
|
5896 char $SV_MODULE_FUNC ();
|
Chris@350
|
5897 int
|
Chris@350
|
5898 main ()
|
Chris@350
|
5899 {
|
Chris@350
|
5900 return $SV_MODULE_FUNC ();
|
Chris@350
|
5901 ;
|
Chris@350
|
5902 return 0;
|
Chris@350
|
5903 }
|
Chris@350
|
5904 _ACEOF
|
Chris@350
|
5905 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
5906 eval "$as_ac_Lib=yes"
|
Chris@350
|
5907 else
|
Chris@350
|
5908 eval "$as_ac_Lib=no"
|
Chris@350
|
5909 fi
|
Chris@350
|
5910 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
5911 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
5912 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
5913 fi
|
Chris@350
|
5914 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
5915 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
5916 $as_echo "$ac_res" >&6; }
|
Chris@594
|
5917 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
5918 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
5919 else
|
Chris@594
|
5920 as_fn_error $? "Failed to find library $SV_MODULE_LIB for required module $SV_MODULE_MODULE" "$LINENO" 5
|
Chris@572
|
5921 fi
|
Chris@572
|
5922
|
Chris@350
|
5923 fi
|
Chris@350
|
5924 fi
|
Chris@350
|
5925
|
Chris@350
|
5926
|
Chris@572
|
5927
|
Chris@572
|
5928 SV_MODULE_MODULE=liblo
|
Chris@572
|
5929 SV_MODULE_VERSION_TEST=""
|
Chris@572
|
5930 SV_MODULE_HEADER=lo/lo.h
|
Chris@572
|
5931 SV_MODULE_LIB=lo
|
Chris@572
|
5932 SV_MODULE_FUNC=lo_address_new
|
Chris@572
|
5933 SV_MODULE_HAVE=HAVE_$(echo liblo | tr 'a-z' 'A-Z')
|
Chris@350
|
5934 SV_MODULE_FAILED=1
|
Chris@572
|
5935 if test -n "$liblo_LIBS" ; then
|
Chris@405
|
5936 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
5937 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
5938 CXXFLAGS="$CXXFLAGS $liblo_CFLAGS"
|
Chris@572
|
5939 LIBS="$LIBS $liblo_LIBS"
|
Chris@405
|
5940 SV_MODULE_FAILED=""
|
Chris@405
|
5941 fi
|
Chris@350
|
5942 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
5943 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
5944 fi
|
Chris@405
|
5945 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
5946
|
Chris@350
|
5947 pkg_failed=no
|
Chris@572
|
5948 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for liblo" >&5
|
Chris@572
|
5949 $as_echo_n "checking for liblo... " >&6; }
|
Chris@572
|
5950
|
Chris@594
|
5951 if test -n "$liblo_CFLAGS"; then
|
Chris@594
|
5952 pkg_cv_liblo_CFLAGS="$liblo_CFLAGS"
|
Chris@594
|
5953 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5954 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5955 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5956 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5957 ac_status=$?
|
Chris@350
|
5958 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5959 test $ac_status = 0; }; then
|
Chris@572
|
5960 pkg_cv_liblo_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5961 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5962 else
|
Chris@350
|
5963 pkg_failed=yes
|
Chris@350
|
5964 fi
|
Chris@594
|
5965 else
|
Chris@594
|
5966 pkg_failed=untried
|
Chris@594
|
5967 fi
|
Chris@594
|
5968 if test -n "$liblo_LIBS"; then
|
Chris@594
|
5969 pkg_cv_liblo_LIBS="$liblo_LIBS"
|
Chris@594
|
5970 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
5971 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
5972 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
5973 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
5974 ac_status=$?
|
Chris@350
|
5975 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
5976 test $ac_status = 0; }; then
|
Chris@572
|
5977 pkg_cv_liblo_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
5978 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
5979 else
|
Chris@350
|
5980 pkg_failed=yes
|
Chris@350
|
5981 fi
|
Chris@594
|
5982 else
|
Chris@594
|
5983 pkg_failed=untried
|
Chris@350
|
5984 fi
|
Chris@350
|
5985
|
Chris@350
|
5986
|
Chris@350
|
5987
|
Chris@350
|
5988 if test $pkg_failed = yes; then
|
Chris@594
|
5989 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
5990 $as_echo "no" >&6; }
|
Chris@350
|
5991
|
Chris@350
|
5992 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
5993 _pkg_short_errors_supported=yes
|
Chris@350
|
5994 else
|
Chris@350
|
5995 _pkg_short_errors_supported=no
|
Chris@350
|
5996 fi
|
Chris@350
|
5997 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
5998 liblo_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
5999 else
|
Chris@594
|
6000 liblo_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
6001 fi
|
Chris@350
|
6002 # Put the nasty error message in config.log where it belongs
|
Chris@572
|
6003 echo "$liblo_PKG_ERRORS" >&5
|
Chris@572
|
6004
|
Chris@594
|
6005 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
6006 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6007 elif test $pkg_failed = untried; then
|
Chris@594
|
6008 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6009 $as_echo "no" >&6; }
|
Chris@457
|
6010 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
6011 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6012 else
|
Chris@572
|
6013 liblo_CFLAGS=$pkg_cv_liblo_CFLAGS
|
Chris@572
|
6014 liblo_LIBS=$pkg_cv_liblo_LIBS
|
Chris@350
|
6015 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
6016 $as_echo "yes" >&6; }
|
Chris@572
|
6017 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $liblo_CFLAGS";LIBS="$LIBS $liblo_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
6018 fi
|
Chris@350
|
6019 fi
|
Chris@350
|
6020 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
6021 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
6022 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
6023 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
6024 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
|
Chris@350
|
6025 else
|
Chris@350
|
6026 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
6027 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
6028 fi
|
Chris@350
|
6029
|
Chris@350
|
6030
|
Chris@350
|
6031 if test -z "$SV_MODULE_FAILED"; then
|
Chris@350
|
6032 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
6033 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
6034 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
6035 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
6036 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
6037 $as_echo_n "(cached) " >&6
|
Chris@350
|
6038 else
|
Chris@350
|
6039 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
6040 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
6041 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
6042 /* end confdefs.h. */
|
Chris@350
|
6043
|
Chris@350
|
6044 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
6045 Use char because int might match the return type of a GCC
|
Chris@350
|
6046 builtin and then its argument prototype would still apply. */
|
Chris@350
|
6047 #ifdef __cplusplus
|
Chris@350
|
6048 extern "C"
|
Chris@350
|
6049 #endif
|
Chris@350
|
6050 char $SV_MODULE_FUNC ();
|
Chris@350
|
6051 int
|
Chris@350
|
6052 main ()
|
Chris@350
|
6053 {
|
Chris@350
|
6054 return $SV_MODULE_FUNC ();
|
Chris@350
|
6055 ;
|
Chris@350
|
6056 return 0;
|
Chris@350
|
6057 }
|
Chris@350
|
6058 _ACEOF
|
Chris@350
|
6059 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
6060 eval "$as_ac_Lib=yes"
|
Chris@350
|
6061 else
|
Chris@350
|
6062 eval "$as_ac_Lib=no"
|
Chris@350
|
6063 fi
|
Chris@350
|
6064 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
6065 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
6066 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
6067 fi
|
Chris@350
|
6068 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
6069 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
6070 $as_echo "$ac_res" >&6; }
|
Chris@594
|
6071 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
6072 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
6073 else
|
Chris@350
|
6074 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
6075 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
6076 fi
|
Chris@350
|
6077
|
Chris@350
|
6078 fi
|
Chris@350
|
6079 fi
|
Chris@350
|
6080 fi
|
Chris@350
|
6081
|
Chris@350
|
6082
|
Chris@572
|
6083 SV_MODULE_MODULE=portaudio_2_0
|
Chris@572
|
6084 SV_MODULE_VERSION_TEST="portaudio-2.0 >= 19"
|
Chris@572
|
6085 SV_MODULE_HEADER=portaudio.h
|
Chris@572
|
6086 SV_MODULE_LIB=portaudio
|
Chris@572
|
6087 SV_MODULE_FUNC=Pa_IsFormatSupported
|
Chris@572
|
6088 SV_MODULE_HAVE=HAVE_$(echo portaudio_2_0 | tr 'a-z' 'A-Z')
|
Chris@358
|
6089 SV_MODULE_FAILED=1
|
Chris@572
|
6090 if test -n "$portaudio_2_0_LIBS" ; then
|
Chris@405
|
6091 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
6092 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
6093 CXXFLAGS="$CXXFLAGS $portaudio_2_0_CFLAGS"
|
Chris@572
|
6094 LIBS="$LIBS $portaudio_2_0_LIBS"
|
Chris@405
|
6095 SV_MODULE_FAILED=""
|
Chris@405
|
6096 fi
|
Chris@358
|
6097 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@358
|
6098 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@358
|
6099 fi
|
Chris@405
|
6100 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@358
|
6101
|
Chris@358
|
6102 pkg_failed=no
|
Chris@572
|
6103 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for portaudio_2_0" >&5
|
Chris@572
|
6104 $as_echo_n "checking for portaudio_2_0... " >&6; }
|
Chris@572
|
6105
|
Chris@594
|
6106 if test -n "$portaudio_2_0_CFLAGS"; then
|
Chris@594
|
6107 pkg_cv_portaudio_2_0_CFLAGS="$portaudio_2_0_CFLAGS"
|
Chris@594
|
6108 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
6109 if test -n "$PKG_CONFIG" && \
|
Chris@358
|
6110 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@358
|
6111 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@358
|
6112 ac_status=$?
|
Chris@358
|
6113 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@358
|
6114 test $ac_status = 0; }; then
|
Chris@572
|
6115 pkg_cv_portaudio_2_0_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
6116 test "x$?" != "x0" && pkg_failed=yes
|
Chris@358
|
6117 else
|
Chris@358
|
6118 pkg_failed=yes
|
Chris@358
|
6119 fi
|
Chris@594
|
6120 else
|
Chris@594
|
6121 pkg_failed=untried
|
Chris@594
|
6122 fi
|
Chris@594
|
6123 if test -n "$portaudio_2_0_LIBS"; then
|
Chris@594
|
6124 pkg_cv_portaudio_2_0_LIBS="$portaudio_2_0_LIBS"
|
Chris@594
|
6125 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
6126 if test -n "$PKG_CONFIG" && \
|
Chris@358
|
6127 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@358
|
6128 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@358
|
6129 ac_status=$?
|
Chris@358
|
6130 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@358
|
6131 test $ac_status = 0; }; then
|
Chris@572
|
6132 pkg_cv_portaudio_2_0_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
6133 test "x$?" != "x0" && pkg_failed=yes
|
Chris@358
|
6134 else
|
Chris@358
|
6135 pkg_failed=yes
|
Chris@358
|
6136 fi
|
Chris@594
|
6137 else
|
Chris@594
|
6138 pkg_failed=untried
|
Chris@358
|
6139 fi
|
Chris@358
|
6140
|
Chris@358
|
6141
|
Chris@358
|
6142
|
Chris@358
|
6143 if test $pkg_failed = yes; then
|
Chris@594
|
6144 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6145 $as_echo "no" >&6; }
|
Chris@358
|
6146
|
Chris@358
|
6147 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@358
|
6148 _pkg_short_errors_supported=yes
|
Chris@358
|
6149 else
|
Chris@358
|
6150 _pkg_short_errors_supported=no
|
Chris@358
|
6151 fi
|
Chris@358
|
6152 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
6153 portaudio_2_0_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@358
|
6154 else
|
Chris@594
|
6155 portaudio_2_0_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@358
|
6156 fi
|
Chris@358
|
6157 # Put the nasty error message in config.log where it belongs
|
Chris@572
|
6158 echo "$portaudio_2_0_PKG_ERRORS" >&5
|
Chris@572
|
6159
|
Chris@594
|
6160 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
6161 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6162 elif test $pkg_failed = untried; then
|
Chris@594
|
6163 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6164 $as_echo "no" >&6; }
|
Chris@457
|
6165 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@358
|
6166 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6167 else
|
Chris@572
|
6168 portaudio_2_0_CFLAGS=$pkg_cv_portaudio_2_0_CFLAGS
|
Chris@572
|
6169 portaudio_2_0_LIBS=$pkg_cv_portaudio_2_0_LIBS
|
Chris@358
|
6170 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@358
|
6171 $as_echo "yes" >&6; }
|
Chris@572
|
6172 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $portaudio_2_0_CFLAGS";LIBS="$LIBS $portaudio_2_0_LIBS";SV_MODULE_FAILED=""
|
Chris@358
|
6173 fi
|
Chris@358
|
6174 fi
|
Chris@358
|
6175 if test -n "$SV_MODULE_FAILED"; then
|
Chris@358
|
6176 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@358
|
6177 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
6178 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@358
|
6179 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
|
Chris@358
|
6180 else
|
Chris@358
|
6181 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
|
Chris@358
|
6182 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@358
|
6183 fi
|
Chris@358
|
6184
|
Chris@358
|
6185
|
Chris@358
|
6186 if test -z "$SV_MODULE_FAILED"; then
|
Chris@358
|
6187 if test -n "$SV_MODULE_LIB"; then
|
Chris@358
|
6188 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@358
|
6189 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@358
|
6190 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
6191 if eval \${$as_ac_Lib+:} false; then :
|
Chris@358
|
6192 $as_echo_n "(cached) " >&6
|
Chris@358
|
6193 else
|
Chris@358
|
6194 ac_check_lib_save_LIBS=$LIBS
|
Chris@358
|
6195 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@358
|
6196 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@358
|
6197 /* end confdefs.h. */
|
Chris@358
|
6198
|
Chris@358
|
6199 /* Override any GCC internal prototype to avoid an error.
|
Chris@358
|
6200 Use char because int might match the return type of a GCC
|
Chris@358
|
6201 builtin and then its argument prototype would still apply. */
|
Chris@358
|
6202 #ifdef __cplusplus
|
Chris@358
|
6203 extern "C"
|
Chris@358
|
6204 #endif
|
Chris@358
|
6205 char $SV_MODULE_FUNC ();
|
Chris@358
|
6206 int
|
Chris@358
|
6207 main ()
|
Chris@358
|
6208 {
|
Chris@358
|
6209 return $SV_MODULE_FUNC ();
|
Chris@358
|
6210 ;
|
Chris@358
|
6211 return 0;
|
Chris@358
|
6212 }
|
Chris@358
|
6213 _ACEOF
|
Chris@358
|
6214 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@358
|
6215 eval "$as_ac_Lib=yes"
|
Chris@358
|
6216 else
|
Chris@358
|
6217 eval "$as_ac_Lib=no"
|
Chris@358
|
6218 fi
|
Chris@358
|
6219 rm -f core conftest.err conftest.$ac_objext \
|
Chris@358
|
6220 conftest$ac_exeext conftest.$ac_ext
|
Chris@358
|
6221 LIBS=$ac_check_lib_save_LIBS
|
Chris@358
|
6222 fi
|
Chris@358
|
6223 eval ac_res=\$$as_ac_Lib
|
Chris@358
|
6224 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@358
|
6225 $as_echo "$ac_res" >&6; }
|
Chris@594
|
6226 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@358
|
6227 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@358
|
6228 else
|
Chris@358
|
6229 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
|
Chris@358
|
6230 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@358
|
6231 fi
|
Chris@358
|
6232
|
Chris@358
|
6233 fi
|
Chris@358
|
6234 fi
|
Chris@358
|
6235 fi
|
Chris@358
|
6236
|
Chris@358
|
6237
|
Chris@572
|
6238 SV_MODULE_MODULE=JACK
|
Chris@572
|
6239 SV_MODULE_VERSION_TEST="jack >= 0.100"
|
Chris@572
|
6240 SV_MODULE_HEADER=jack/jack.h
|
Chris@572
|
6241 SV_MODULE_LIB=jack
|
Chris@572
|
6242 SV_MODULE_FUNC=jack_client_open
|
Chris@572
|
6243 SV_MODULE_HAVE=HAVE_$(echo JACK | tr 'a-z' 'A-Z')
|
Chris@350
|
6244 SV_MODULE_FAILED=1
|
Chris@572
|
6245 if test -n "$JACK_LIBS" ; then
|
Chris@405
|
6246 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
6247 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
6248 CXXFLAGS="$CXXFLAGS $JACK_CFLAGS"
|
Chris@572
|
6249 LIBS="$LIBS $JACK_LIBS"
|
Chris@405
|
6250 SV_MODULE_FAILED=""
|
Chris@405
|
6251 fi
|
Chris@350
|
6252 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
6253 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
6254 fi
|
Chris@405
|
6255 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
6256
|
Chris@350
|
6257 pkg_failed=no
|
Chris@572
|
6258 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for JACK" >&5
|
Chris@572
|
6259 $as_echo_n "checking for JACK... " >&6; }
|
Chris@572
|
6260
|
Chris@594
|
6261 if test -n "$JACK_CFLAGS"; then
|
Chris@594
|
6262 pkg_cv_JACK_CFLAGS="$JACK_CFLAGS"
|
Chris@594
|
6263 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
6264 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
6265 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
6266 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
6267 ac_status=$?
|
Chris@350
|
6268 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
6269 test $ac_status = 0; }; then
|
Chris@572
|
6270 pkg_cv_JACK_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
6271 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
6272 else
|
Chris@350
|
6273 pkg_failed=yes
|
Chris@350
|
6274 fi
|
Chris@594
|
6275 else
|
Chris@594
|
6276 pkg_failed=untried
|
Chris@594
|
6277 fi
|
Chris@594
|
6278 if test -n "$JACK_LIBS"; then
|
Chris@594
|
6279 pkg_cv_JACK_LIBS="$JACK_LIBS"
|
Chris@594
|
6280 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
6281 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
6282 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
6283 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
6284 ac_status=$?
|
Chris@350
|
6285 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
6286 test $ac_status = 0; }; then
|
Chris@572
|
6287 pkg_cv_JACK_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
6288 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
6289 else
|
Chris@350
|
6290 pkg_failed=yes
|
Chris@350
|
6291 fi
|
Chris@594
|
6292 else
|
Chris@594
|
6293 pkg_failed=untried
|
Chris@350
|
6294 fi
|
Chris@350
|
6295
|
Chris@350
|
6296
|
Chris@350
|
6297
|
Chris@350
|
6298 if test $pkg_failed = yes; then
|
Chris@594
|
6299 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6300 $as_echo "no" >&6; }
|
Chris@350
|
6301
|
Chris@350
|
6302 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
6303 _pkg_short_errors_supported=yes
|
Chris@350
|
6304 else
|
Chris@350
|
6305 _pkg_short_errors_supported=no
|
Chris@350
|
6306 fi
|
Chris@350
|
6307 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
6308 JACK_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
6309 else
|
Chris@594
|
6310 JACK_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
6311 fi
|
Chris@350
|
6312 # Put the nasty error message in config.log where it belongs
|
Chris@572
|
6313 echo "$JACK_PKG_ERRORS" >&5
|
Chris@572
|
6314
|
Chris@594
|
6315 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
6316 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6317 elif test $pkg_failed = untried; then
|
Chris@594
|
6318 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6319 $as_echo "no" >&6; }
|
Chris@457
|
6320 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
6321 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6322 else
|
Chris@572
|
6323 JACK_CFLAGS=$pkg_cv_JACK_CFLAGS
|
Chris@572
|
6324 JACK_LIBS=$pkg_cv_JACK_LIBS
|
Chris@350
|
6325 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
6326 $as_echo "yes" >&6; }
|
Chris@572
|
6327 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $JACK_CFLAGS";LIBS="$LIBS $JACK_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
6328 fi
|
Chris@350
|
6329 fi
|
Chris@350
|
6330 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
6331 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
6332 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
6333 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
6334 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
|
Chris@350
|
6335 else
|
Chris@350
|
6336 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
6337 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
6338 fi
|
Chris@350
|
6339
|
Chris@350
|
6340
|
Chris@350
|
6341 if test -z "$SV_MODULE_FAILED"; then
|
Chris@350
|
6342 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
6343 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
6344 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
6345 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
6346 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
6347 $as_echo_n "(cached) " >&6
|
Chris@350
|
6348 else
|
Chris@350
|
6349 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
6350 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
6351 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
6352 /* end confdefs.h. */
|
Chris@350
|
6353
|
Chris@350
|
6354 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
6355 Use char because int might match the return type of a GCC
|
Chris@350
|
6356 builtin and then its argument prototype would still apply. */
|
Chris@350
|
6357 #ifdef __cplusplus
|
Chris@350
|
6358 extern "C"
|
Chris@350
|
6359 #endif
|
Chris@350
|
6360 char $SV_MODULE_FUNC ();
|
Chris@350
|
6361 int
|
Chris@350
|
6362 main ()
|
Chris@350
|
6363 {
|
Chris@350
|
6364 return $SV_MODULE_FUNC ();
|
Chris@350
|
6365 ;
|
Chris@350
|
6366 return 0;
|
Chris@350
|
6367 }
|
Chris@350
|
6368 _ACEOF
|
Chris@350
|
6369 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
6370 eval "$as_ac_Lib=yes"
|
Chris@350
|
6371 else
|
Chris@350
|
6372 eval "$as_ac_Lib=no"
|
Chris@350
|
6373 fi
|
Chris@350
|
6374 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
6375 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
6376 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
6377 fi
|
Chris@350
|
6378 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
6379 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
6380 $as_echo "$ac_res" >&6; }
|
Chris@594
|
6381 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
6382 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
6383 else
|
Chris@350
|
6384 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
6385 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
6386 fi
|
Chris@350
|
6387
|
Chris@350
|
6388 fi
|
Chris@350
|
6389 fi
|
Chris@350
|
6390 fi
|
Chris@350
|
6391
|
Chris@350
|
6392
|
Chris@572
|
6393 SV_MODULE_MODULE=libpulse
|
Chris@572
|
6394 SV_MODULE_VERSION_TEST="libpulse >= 0.9"
|
Chris@572
|
6395 SV_MODULE_HEADER=pulse/pulseaudio.h
|
Chris@572
|
6396 SV_MODULE_LIB=pulse
|
Chris@572
|
6397 SV_MODULE_FUNC=pa_stream_new
|
Chris@572
|
6398 SV_MODULE_HAVE=HAVE_$(echo libpulse | tr 'a-z' 'A-Z')
|
Chris@350
|
6399 SV_MODULE_FAILED=1
|
Chris@572
|
6400 if test -n "$libpulse_LIBS" ; then
|
Chris@405
|
6401 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
6402 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
6403 CXXFLAGS="$CXXFLAGS $libpulse_CFLAGS"
|
Chris@572
|
6404 LIBS="$LIBS $libpulse_LIBS"
|
Chris@405
|
6405 SV_MODULE_FAILED=""
|
Chris@405
|
6406 fi
|
Chris@350
|
6407 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
6408 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
6409 fi
|
Chris@405
|
6410 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
6411
|
Chris@350
|
6412 pkg_failed=no
|
Chris@572
|
6413 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libpulse" >&5
|
Chris@572
|
6414 $as_echo_n "checking for libpulse... " >&6; }
|
Chris@572
|
6415
|
Chris@594
|
6416 if test -n "$libpulse_CFLAGS"; then
|
Chris@594
|
6417 pkg_cv_libpulse_CFLAGS="$libpulse_CFLAGS"
|
Chris@594
|
6418 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
6419 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
6420 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
6421 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
6422 ac_status=$?
|
Chris@350
|
6423 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
6424 test $ac_status = 0; }; then
|
Chris@572
|
6425 pkg_cv_libpulse_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
6426 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
6427 else
|
Chris@350
|
6428 pkg_failed=yes
|
Chris@350
|
6429 fi
|
Chris@594
|
6430 else
|
Chris@594
|
6431 pkg_failed=untried
|
Chris@594
|
6432 fi
|
Chris@594
|
6433 if test -n "$libpulse_LIBS"; then
|
Chris@594
|
6434 pkg_cv_libpulse_LIBS="$libpulse_LIBS"
|
Chris@594
|
6435 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
6436 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
6437 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
6438 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
6439 ac_status=$?
|
Chris@350
|
6440 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
6441 test $ac_status = 0; }; then
|
Chris@572
|
6442 pkg_cv_libpulse_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
6443 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
6444 else
|
Chris@350
|
6445 pkg_failed=yes
|
Chris@350
|
6446 fi
|
Chris@594
|
6447 else
|
Chris@594
|
6448 pkg_failed=untried
|
Chris@350
|
6449 fi
|
Chris@350
|
6450
|
Chris@350
|
6451
|
Chris@350
|
6452
|
Chris@350
|
6453 if test $pkg_failed = yes; then
|
Chris@594
|
6454 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6455 $as_echo "no" >&6; }
|
Chris@350
|
6456
|
Chris@350
|
6457 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
6458 _pkg_short_errors_supported=yes
|
Chris@350
|
6459 else
|
Chris@350
|
6460 _pkg_short_errors_supported=no
|
Chris@350
|
6461 fi
|
Chris@350
|
6462 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
6463 libpulse_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
6464 else
|
Chris@594
|
6465 libpulse_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
6466 fi
|
Chris@350
|
6467 # Put the nasty error message in config.log where it belongs
|
Chris@572
|
6468 echo "$libpulse_PKG_ERRORS" >&5
|
Chris@572
|
6469
|
Chris@594
|
6470 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
6471 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6472 elif test $pkg_failed = untried; then
|
Chris@594
|
6473 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6474 $as_echo "no" >&6; }
|
Chris@457
|
6475 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
6476 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6477 else
|
Chris@572
|
6478 libpulse_CFLAGS=$pkg_cv_libpulse_CFLAGS
|
Chris@572
|
6479 libpulse_LIBS=$pkg_cv_libpulse_LIBS
|
Chris@350
|
6480 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
6481 $as_echo "yes" >&6; }
|
Chris@572
|
6482 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $libpulse_CFLAGS";LIBS="$LIBS $libpulse_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
6483 fi
|
Chris@350
|
6484 fi
|
Chris@350
|
6485 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
6486 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
6487 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
6488 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
6489 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
|
Chris@350
|
6490 else
|
Chris@350
|
6491 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
6492 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
6493 fi
|
Chris@350
|
6494
|
Chris@350
|
6495
|
Chris@350
|
6496 if test -z "$SV_MODULE_FAILED"; then
|
Chris@350
|
6497 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
6498 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
6499 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
6500 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
6501 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
6502 $as_echo_n "(cached) " >&6
|
Chris@350
|
6503 else
|
Chris@350
|
6504 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
6505 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
6506 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
6507 /* end confdefs.h. */
|
Chris@350
|
6508
|
Chris@350
|
6509 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
6510 Use char because int might match the return type of a GCC
|
Chris@350
|
6511 builtin and then its argument prototype would still apply. */
|
Chris@350
|
6512 #ifdef __cplusplus
|
Chris@350
|
6513 extern "C"
|
Chris@350
|
6514 #endif
|
Chris@350
|
6515 char $SV_MODULE_FUNC ();
|
Chris@350
|
6516 int
|
Chris@350
|
6517 main ()
|
Chris@350
|
6518 {
|
Chris@350
|
6519 return $SV_MODULE_FUNC ();
|
Chris@350
|
6520 ;
|
Chris@350
|
6521 return 0;
|
Chris@350
|
6522 }
|
Chris@350
|
6523 _ACEOF
|
Chris@350
|
6524 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
6525 eval "$as_ac_Lib=yes"
|
Chris@350
|
6526 else
|
Chris@350
|
6527 eval "$as_ac_Lib=no"
|
Chris@350
|
6528 fi
|
Chris@350
|
6529 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
6530 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
6531 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
6532 fi
|
Chris@350
|
6533 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
6534 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
6535 $as_echo "$ac_res" >&6; }
|
Chris@594
|
6536 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
6537 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
6538 else
|
Chris@350
|
6539 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
6540 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
6541 fi
|
Chris@350
|
6542
|
Chris@350
|
6543 fi
|
Chris@350
|
6544 fi
|
Chris@350
|
6545 fi
|
Chris@350
|
6546
|
Chris@350
|
6547
|
Chris@572
|
6548 SV_MODULE_MODULE=lrdf
|
Chris@572
|
6549 SV_MODULE_VERSION_TEST="lrdf >= 0.2"
|
Chris@572
|
6550 SV_MODULE_HEADER=lrdf.h
|
Chris@572
|
6551 SV_MODULE_LIB=lrdf
|
Chris@572
|
6552 SV_MODULE_FUNC=lrdf_init
|
Chris@572
|
6553 SV_MODULE_HAVE=HAVE_$(echo lrdf | tr 'a-z' 'A-Z')
|
Chris@350
|
6554 SV_MODULE_FAILED=1
|
Chris@572
|
6555 if test -n "$lrdf_LIBS" ; then
|
Chris@405
|
6556 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
6557 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
6558 CXXFLAGS="$CXXFLAGS $lrdf_CFLAGS"
|
Chris@572
|
6559 LIBS="$LIBS $lrdf_LIBS"
|
Chris@405
|
6560 SV_MODULE_FAILED=""
|
Chris@405
|
6561 fi
|
Chris@350
|
6562 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
6563 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
6564 fi
|
Chris@405
|
6565 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
6566
|
Chris@350
|
6567 pkg_failed=no
|
Chris@572
|
6568 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lrdf" >&5
|
Chris@572
|
6569 $as_echo_n "checking for lrdf... " >&6; }
|
Chris@572
|
6570
|
Chris@594
|
6571 if test -n "$lrdf_CFLAGS"; then
|
Chris@594
|
6572 pkg_cv_lrdf_CFLAGS="$lrdf_CFLAGS"
|
Chris@594
|
6573 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
6574 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
6575 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
6576 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
6577 ac_status=$?
|
Chris@350
|
6578 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
6579 test $ac_status = 0; }; then
|
Chris@572
|
6580 pkg_cv_lrdf_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
6581 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
6582 else
|
Chris@350
|
6583 pkg_failed=yes
|
Chris@350
|
6584 fi
|
Chris@594
|
6585 else
|
Chris@594
|
6586 pkg_failed=untried
|
Chris@594
|
6587 fi
|
Chris@594
|
6588 if test -n "$lrdf_LIBS"; then
|
Chris@594
|
6589 pkg_cv_lrdf_LIBS="$lrdf_LIBS"
|
Chris@594
|
6590 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
6591 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
6592 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
6593 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
6594 ac_status=$?
|
Chris@350
|
6595 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
6596 test $ac_status = 0; }; then
|
Chris@572
|
6597 pkg_cv_lrdf_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
6598 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
6599 else
|
Chris@350
|
6600 pkg_failed=yes
|
Chris@350
|
6601 fi
|
Chris@594
|
6602 else
|
Chris@594
|
6603 pkg_failed=untried
|
Chris@350
|
6604 fi
|
Chris@350
|
6605
|
Chris@350
|
6606
|
Chris@350
|
6607
|
Chris@350
|
6608 if test $pkg_failed = yes; then
|
Chris@594
|
6609 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6610 $as_echo "no" >&6; }
|
Chris@350
|
6611
|
Chris@350
|
6612 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
6613 _pkg_short_errors_supported=yes
|
Chris@350
|
6614 else
|
Chris@350
|
6615 _pkg_short_errors_supported=no
|
Chris@350
|
6616 fi
|
Chris@350
|
6617 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
6618 lrdf_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
6619 else
|
Chris@594
|
6620 lrdf_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
6621 fi
|
Chris@350
|
6622 # Put the nasty error message in config.log where it belongs
|
Chris@572
|
6623 echo "$lrdf_PKG_ERRORS" >&5
|
Chris@572
|
6624
|
Chris@594
|
6625 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
6626 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6627 elif test $pkg_failed = untried; then
|
Chris@594
|
6628 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6629 $as_echo "no" >&6; }
|
Chris@457
|
6630 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
6631 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6632 else
|
Chris@572
|
6633 lrdf_CFLAGS=$pkg_cv_lrdf_CFLAGS
|
Chris@572
|
6634 lrdf_LIBS=$pkg_cv_lrdf_LIBS
|
Chris@350
|
6635 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
6636 $as_echo "yes" >&6; }
|
Chris@572
|
6637 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $lrdf_CFLAGS";LIBS="$LIBS $lrdf_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
6638 fi
|
Chris@350
|
6639 fi
|
Chris@350
|
6640 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
6641 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
6642 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
6643 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
6644 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
|
Chris@350
|
6645 else
|
Chris@350
|
6646 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
6647 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
6648 fi
|
Chris@350
|
6649
|
Chris@350
|
6650
|
Chris@350
|
6651 if test -z "$SV_MODULE_FAILED"; then
|
Chris@350
|
6652 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
6653 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
6654 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
6655 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
6656 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
6657 $as_echo_n "(cached) " >&6
|
Chris@350
|
6658 else
|
Chris@350
|
6659 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
6660 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
6661 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
6662 /* end confdefs.h. */
|
Chris@350
|
6663
|
Chris@350
|
6664 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
6665 Use char because int might match the return type of a GCC
|
Chris@350
|
6666 builtin and then its argument prototype would still apply. */
|
Chris@350
|
6667 #ifdef __cplusplus
|
Chris@350
|
6668 extern "C"
|
Chris@350
|
6669 #endif
|
Chris@350
|
6670 char $SV_MODULE_FUNC ();
|
Chris@350
|
6671 int
|
Chris@350
|
6672 main ()
|
Chris@350
|
6673 {
|
Chris@350
|
6674 return $SV_MODULE_FUNC ();
|
Chris@350
|
6675 ;
|
Chris@350
|
6676 return 0;
|
Chris@350
|
6677 }
|
Chris@350
|
6678 _ACEOF
|
Chris@350
|
6679 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
6680 eval "$as_ac_Lib=yes"
|
Chris@350
|
6681 else
|
Chris@350
|
6682 eval "$as_ac_Lib=no"
|
Chris@350
|
6683 fi
|
Chris@350
|
6684 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
6685 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
6686 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
6687 fi
|
Chris@350
|
6688 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
6689 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
6690 $as_echo "$ac_res" >&6; }
|
Chris@594
|
6691 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
6692 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
6693 else
|
Chris@350
|
6694 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
6695 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
6696 fi
|
Chris@350
|
6697
|
Chris@350
|
6698 fi
|
Chris@350
|
6699 fi
|
Chris@350
|
6700 fi
|
Chris@350
|
6701
|
Chris@350
|
6702
|
Chris@572
|
6703 SV_MODULE_MODULE=oggz
|
Chris@572
|
6704 SV_MODULE_VERSION_TEST="oggz >= 1.0.0"
|
Chris@572
|
6705 SV_MODULE_HEADER=oggz/oggz.h
|
Chris@572
|
6706 SV_MODULE_LIB=oggz
|
Chris@572
|
6707 SV_MODULE_FUNC=oggz_run
|
Chris@572
|
6708 SV_MODULE_HAVE=HAVE_$(echo oggz | tr 'a-z' 'A-Z')
|
Chris@350
|
6709 SV_MODULE_FAILED=1
|
Chris@572
|
6710 if test -n "$oggz_LIBS" ; then
|
Chris@405
|
6711 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
6712 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
6713 CXXFLAGS="$CXXFLAGS $oggz_CFLAGS"
|
Chris@572
|
6714 LIBS="$LIBS $oggz_LIBS"
|
Chris@405
|
6715 SV_MODULE_FAILED=""
|
Chris@405
|
6716 fi
|
Chris@350
|
6717 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
6718 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
6719 fi
|
Chris@405
|
6720 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
6721
|
Chris@350
|
6722 pkg_failed=no
|
Chris@572
|
6723 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for oggz" >&5
|
Chris@572
|
6724 $as_echo_n "checking for oggz... " >&6; }
|
Chris@572
|
6725
|
Chris@594
|
6726 if test -n "$oggz_CFLAGS"; then
|
Chris@594
|
6727 pkg_cv_oggz_CFLAGS="$oggz_CFLAGS"
|
Chris@594
|
6728 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
6729 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
6730 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
6731 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
6732 ac_status=$?
|
Chris@350
|
6733 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
6734 test $ac_status = 0; }; then
|
Chris@572
|
6735 pkg_cv_oggz_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
6736 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
6737 else
|
Chris@350
|
6738 pkg_failed=yes
|
Chris@350
|
6739 fi
|
Chris@594
|
6740 else
|
Chris@594
|
6741 pkg_failed=untried
|
Chris@594
|
6742 fi
|
Chris@594
|
6743 if test -n "$oggz_LIBS"; then
|
Chris@594
|
6744 pkg_cv_oggz_LIBS="$oggz_LIBS"
|
Chris@594
|
6745 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
6746 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
6747 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
6748 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
6749 ac_status=$?
|
Chris@350
|
6750 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
6751 test $ac_status = 0; }; then
|
Chris@572
|
6752 pkg_cv_oggz_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
6753 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
6754 else
|
Chris@350
|
6755 pkg_failed=yes
|
Chris@350
|
6756 fi
|
Chris@594
|
6757 else
|
Chris@594
|
6758 pkg_failed=untried
|
Chris@350
|
6759 fi
|
Chris@350
|
6760
|
Chris@350
|
6761
|
Chris@350
|
6762
|
Chris@350
|
6763 if test $pkg_failed = yes; then
|
Chris@594
|
6764 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6765 $as_echo "no" >&6; }
|
Chris@350
|
6766
|
Chris@350
|
6767 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
6768 _pkg_short_errors_supported=yes
|
Chris@350
|
6769 else
|
Chris@350
|
6770 _pkg_short_errors_supported=no
|
Chris@350
|
6771 fi
|
Chris@350
|
6772 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
6773 oggz_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
6774 else
|
Chris@594
|
6775 oggz_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
6776 fi
|
Chris@350
|
6777 # Put the nasty error message in config.log where it belongs
|
Chris@572
|
6778 echo "$oggz_PKG_ERRORS" >&5
|
Chris@572
|
6779
|
Chris@594
|
6780 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
6781 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6782 elif test $pkg_failed = untried; then
|
Chris@594
|
6783 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6784 $as_echo "no" >&6; }
|
Chris@457
|
6785 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
6786 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6787 else
|
Chris@572
|
6788 oggz_CFLAGS=$pkg_cv_oggz_CFLAGS
|
Chris@572
|
6789 oggz_LIBS=$pkg_cv_oggz_LIBS
|
Chris@350
|
6790 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
6791 $as_echo "yes" >&6; }
|
Chris@572
|
6792 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $oggz_CFLAGS";LIBS="$LIBS $oggz_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
6793 fi
|
Chris@350
|
6794 fi
|
Chris@350
|
6795 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
6796 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
6797 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
6798 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
6799 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
|
Chris@350
|
6800 else
|
Chris@350
|
6801 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
6802 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
6803 fi
|
Chris@350
|
6804
|
Chris@350
|
6805
|
Chris@350
|
6806 if test -z "$SV_MODULE_FAILED"; then
|
Chris@350
|
6807 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
6808 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
6809 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
6810 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
6811 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
6812 $as_echo_n "(cached) " >&6
|
Chris@350
|
6813 else
|
Chris@350
|
6814 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
6815 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
6816 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
6817 /* end confdefs.h. */
|
Chris@350
|
6818
|
Chris@350
|
6819 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
6820 Use char because int might match the return type of a GCC
|
Chris@350
|
6821 builtin and then its argument prototype would still apply. */
|
Chris@350
|
6822 #ifdef __cplusplus
|
Chris@350
|
6823 extern "C"
|
Chris@350
|
6824 #endif
|
Chris@350
|
6825 char $SV_MODULE_FUNC ();
|
Chris@350
|
6826 int
|
Chris@350
|
6827 main ()
|
Chris@350
|
6828 {
|
Chris@350
|
6829 return $SV_MODULE_FUNC ();
|
Chris@350
|
6830 ;
|
Chris@350
|
6831 return 0;
|
Chris@350
|
6832 }
|
Chris@350
|
6833 _ACEOF
|
Chris@350
|
6834 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
6835 eval "$as_ac_Lib=yes"
|
Chris@350
|
6836 else
|
Chris@350
|
6837 eval "$as_ac_Lib=no"
|
Chris@350
|
6838 fi
|
Chris@350
|
6839 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
6840 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
6841 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
6842 fi
|
Chris@350
|
6843 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
6844 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
6845 $as_echo "$ac_res" >&6; }
|
Chris@594
|
6846 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
6847 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
6848 else
|
Chris@350
|
6849 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
6850 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
6851 fi
|
Chris@350
|
6852
|
Chris@350
|
6853 fi
|
Chris@350
|
6854 fi
|
Chris@350
|
6855 fi
|
Chris@350
|
6856
|
Chris@350
|
6857
|
Chris@572
|
6858 SV_MODULE_MODULE=fishsound
|
Chris@572
|
6859 SV_MODULE_VERSION_TEST="fishsound >= 1.0.0"
|
Chris@572
|
6860 SV_MODULE_HEADER=fishsound/fishsound.h
|
Chris@572
|
6861 SV_MODULE_LIB=fishsound
|
Chris@572
|
6862 SV_MODULE_FUNC=fish_sound_new
|
Chris@572
|
6863 SV_MODULE_HAVE=HAVE_$(echo fishsound | tr 'a-z' 'A-Z')
|
Chris@350
|
6864 SV_MODULE_FAILED=1
|
Chris@572
|
6865 if test -n "$fishsound_LIBS" ; then
|
Chris@405
|
6866 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
6867 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
6868 CXXFLAGS="$CXXFLAGS $fishsound_CFLAGS"
|
Chris@572
|
6869 LIBS="$LIBS $fishsound_LIBS"
|
Chris@405
|
6870 SV_MODULE_FAILED=""
|
Chris@405
|
6871 fi
|
Chris@350
|
6872 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
6873 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
6874 fi
|
Chris@405
|
6875 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
6876
|
Chris@350
|
6877 pkg_failed=no
|
Chris@572
|
6878 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fishsound" >&5
|
Chris@572
|
6879 $as_echo_n "checking for fishsound... " >&6; }
|
Chris@572
|
6880
|
Chris@594
|
6881 if test -n "$fishsound_CFLAGS"; then
|
Chris@594
|
6882 pkg_cv_fishsound_CFLAGS="$fishsound_CFLAGS"
|
Chris@594
|
6883 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
6884 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
6885 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
6886 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
6887 ac_status=$?
|
Chris@350
|
6888 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
6889 test $ac_status = 0; }; then
|
Chris@572
|
6890 pkg_cv_fishsound_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
6891 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
6892 else
|
Chris@350
|
6893 pkg_failed=yes
|
Chris@350
|
6894 fi
|
Chris@594
|
6895 else
|
Chris@594
|
6896 pkg_failed=untried
|
Chris@594
|
6897 fi
|
Chris@594
|
6898 if test -n "$fishsound_LIBS"; then
|
Chris@594
|
6899 pkg_cv_fishsound_LIBS="$fishsound_LIBS"
|
Chris@594
|
6900 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
6901 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
6902 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
6903 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
6904 ac_status=$?
|
Chris@350
|
6905 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
6906 test $ac_status = 0; }; then
|
Chris@572
|
6907 pkg_cv_fishsound_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
6908 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
6909 else
|
Chris@350
|
6910 pkg_failed=yes
|
Chris@350
|
6911 fi
|
Chris@594
|
6912 else
|
Chris@594
|
6913 pkg_failed=untried
|
Chris@350
|
6914 fi
|
Chris@350
|
6915
|
Chris@350
|
6916
|
Chris@350
|
6917
|
Chris@350
|
6918 if test $pkg_failed = yes; then
|
Chris@594
|
6919 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6920 $as_echo "no" >&6; }
|
Chris@350
|
6921
|
Chris@350
|
6922 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
6923 _pkg_short_errors_supported=yes
|
Chris@350
|
6924 else
|
Chris@350
|
6925 _pkg_short_errors_supported=no
|
Chris@350
|
6926 fi
|
Chris@350
|
6927 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
6928 fishsound_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
6929 else
|
Chris@594
|
6930 fishsound_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
6931 fi
|
Chris@350
|
6932 # Put the nasty error message in config.log where it belongs
|
Chris@572
|
6933 echo "$fishsound_PKG_ERRORS" >&5
|
Chris@572
|
6934
|
Chris@594
|
6935 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
6936 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6937 elif test $pkg_failed = untried; then
|
Chris@594
|
6938 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
6939 $as_echo "no" >&6; }
|
Chris@457
|
6940 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
6941 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
6942 else
|
Chris@572
|
6943 fishsound_CFLAGS=$pkg_cv_fishsound_CFLAGS
|
Chris@572
|
6944 fishsound_LIBS=$pkg_cv_fishsound_LIBS
|
Chris@350
|
6945 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
6946 $as_echo "yes" >&6; }
|
Chris@572
|
6947 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $fishsound_CFLAGS";LIBS="$LIBS $fishsound_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
6948 fi
|
Chris@350
|
6949 fi
|
Chris@350
|
6950 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
6951 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
6952 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
6953 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
6954 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
|
Chris@350
|
6955 else
|
Chris@350
|
6956 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
6957 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
6958 fi
|
Chris@350
|
6959
|
Chris@350
|
6960
|
Chris@350
|
6961 if test -z "$SV_MODULE_FAILED"; then
|
Chris@350
|
6962 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
6963 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
6964 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
6965 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
6966 if eval \${$as_ac_Lib+:} false; then :
|
Chris@350
|
6967 $as_echo_n "(cached) " >&6
|
Chris@350
|
6968 else
|
Chris@350
|
6969 ac_check_lib_save_LIBS=$LIBS
|
Chris@350
|
6970 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@350
|
6971 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@350
|
6972 /* end confdefs.h. */
|
Chris@350
|
6973
|
Chris@350
|
6974 /* Override any GCC internal prototype to avoid an error.
|
Chris@350
|
6975 Use char because int might match the return type of a GCC
|
Chris@350
|
6976 builtin and then its argument prototype would still apply. */
|
Chris@350
|
6977 #ifdef __cplusplus
|
Chris@350
|
6978 extern "C"
|
Chris@350
|
6979 #endif
|
Chris@350
|
6980 char $SV_MODULE_FUNC ();
|
Chris@350
|
6981 int
|
Chris@350
|
6982 main ()
|
Chris@350
|
6983 {
|
Chris@350
|
6984 return $SV_MODULE_FUNC ();
|
Chris@350
|
6985 ;
|
Chris@350
|
6986 return 0;
|
Chris@350
|
6987 }
|
Chris@350
|
6988 _ACEOF
|
Chris@350
|
6989 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@350
|
6990 eval "$as_ac_Lib=yes"
|
Chris@350
|
6991 else
|
Chris@350
|
6992 eval "$as_ac_Lib=no"
|
Chris@350
|
6993 fi
|
Chris@350
|
6994 rm -f core conftest.err conftest.$ac_objext \
|
Chris@350
|
6995 conftest$ac_exeext conftest.$ac_ext
|
Chris@350
|
6996 LIBS=$ac_check_lib_save_LIBS
|
Chris@350
|
6997 fi
|
Chris@350
|
6998 eval ac_res=\$$as_ac_Lib
|
Chris@350
|
6999 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@350
|
7000 $as_echo "$ac_res" >&6; }
|
Chris@594
|
7001 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@350
|
7002 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@350
|
7003 else
|
Chris@350
|
7004 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
7005 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
7006 fi
|
Chris@350
|
7007
|
Chris@350
|
7008 fi
|
Chris@350
|
7009 fi
|
Chris@350
|
7010 fi
|
Chris@350
|
7011
|
Chris@350
|
7012
|
Chris@572
|
7013 SV_MODULE_MODULE=mad
|
Chris@572
|
7014 SV_MODULE_VERSION_TEST="mad >= 0.15.0"
|
Chris@572
|
7015 SV_MODULE_HEADER=mad.h
|
Chris@572
|
7016 SV_MODULE_LIB=mad
|
Chris@572
|
7017 SV_MODULE_FUNC=mad_decoder_init
|
Chris@572
|
7018 SV_MODULE_HAVE=HAVE_$(echo mad | tr 'a-z' 'A-Z')
|
Chris@350
|
7019 SV_MODULE_FAILED=1
|
Chris@572
|
7020 if test -n "$mad_LIBS" ; then
|
Chris@405
|
7021 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@405
|
7022 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
7023 CXXFLAGS="$CXXFLAGS $mad_CFLAGS"
|
Chris@572
|
7024 LIBS="$LIBS $mad_LIBS"
|
Chris@405
|
7025 SV_MODULE_FAILED=""
|
Chris@405
|
7026 fi
|
Chris@350
|
7027 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@350
|
7028 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@350
|
7029 fi
|
Chris@405
|
7030 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@350
|
7031
|
Chris@350
|
7032 pkg_failed=no
|
Chris@572
|
7033 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mad" >&5
|
Chris@572
|
7034 $as_echo_n "checking for mad... " >&6; }
|
Chris@572
|
7035
|
Chris@594
|
7036 if test -n "$mad_CFLAGS"; then
|
Chris@594
|
7037 pkg_cv_mad_CFLAGS="$mad_CFLAGS"
|
Chris@594
|
7038 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
7039 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
7040 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
7041 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
7042 ac_status=$?
|
Chris@350
|
7043 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
7044 test $ac_status = 0; }; then
|
Chris@572
|
7045 pkg_cv_mad_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
7046 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
7047 else
|
Chris@350
|
7048 pkg_failed=yes
|
Chris@350
|
7049 fi
|
Chris@594
|
7050 else
|
Chris@594
|
7051 pkg_failed=untried
|
Chris@594
|
7052 fi
|
Chris@594
|
7053 if test -n "$mad_LIBS"; then
|
Chris@594
|
7054 pkg_cv_mad_LIBS="$mad_LIBS"
|
Chris@594
|
7055 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
7056 if test -n "$PKG_CONFIG" && \
|
Chris@350
|
7057 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@350
|
7058 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@350
|
7059 ac_status=$?
|
Chris@350
|
7060 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@350
|
7061 test $ac_status = 0; }; then
|
Chris@572
|
7062 pkg_cv_mad_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
7063 test "x$?" != "x0" && pkg_failed=yes
|
Chris@350
|
7064 else
|
Chris@350
|
7065 pkg_failed=yes
|
Chris@350
|
7066 fi
|
Chris@594
|
7067 else
|
Chris@594
|
7068 pkg_failed=untried
|
Chris@350
|
7069 fi
|
Chris@350
|
7070
|
Chris@350
|
7071
|
Chris@350
|
7072
|
Chris@350
|
7073 if test $pkg_failed = yes; then
|
Chris@594
|
7074 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
7075 $as_echo "no" >&6; }
|
Chris@350
|
7076
|
Chris@350
|
7077 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@350
|
7078 _pkg_short_errors_supported=yes
|
Chris@350
|
7079 else
|
Chris@350
|
7080 _pkg_short_errors_supported=no
|
Chris@350
|
7081 fi
|
Chris@350
|
7082 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
7083 mad_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
7084 else
|
Chris@594
|
7085 mad_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@350
|
7086 fi
|
Chris@350
|
7087 # Put the nasty error message in config.log where it belongs
|
Chris@572
|
7088 echo "$mad_PKG_ERRORS" >&5
|
Chris@572
|
7089
|
Chris@594
|
7090 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
7091 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
7092 elif test $pkg_failed = untried; then
|
Chris@594
|
7093 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
7094 $as_echo "no" >&6; }
|
Chris@457
|
7095 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@350
|
7096 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
7097 else
|
Chris@572
|
7098 mad_CFLAGS=$pkg_cv_mad_CFLAGS
|
Chris@572
|
7099 mad_LIBS=$pkg_cv_mad_LIBS
|
Chris@350
|
7100 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@350
|
7101 $as_echo "yes" >&6; }
|
Chris@572
|
7102 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $mad_CFLAGS";LIBS="$LIBS $mad_LIBS";SV_MODULE_FAILED=""
|
Chris@350
|
7103 fi
|
Chris@350
|
7104 fi
|
Chris@350
|
7105 if test -n "$SV_MODULE_FAILED"; then
|
Chris@350
|
7106 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@350
|
7107 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
7108 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@350
|
7109 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
|
Chris@350
|
7110 else
|
Chris@350
|
7111 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
|
Chris@350
|
7112 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@350
|
7113 fi
|
Chris@350
|
7114
|
Chris@350
|
7115
|
Chris@350
|
7116 if test -z "$SV_MODULE_FAILED"; then
|
Chris@350
|
7117 if test -n "$SV_MODULE_LIB"; then
|
Chris@350
|
7118 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@350
|
7119 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@350
|
7120 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
7121 if eval \${$as_ac_Lib+:} false; then :
|
Chris@488
|
7122 $as_echo_n "(cached) " >&6
|
Chris@488
|
7123 else
|
Chris@488
|
7124 ac_check_lib_save_LIBS=$LIBS
|
Chris@488
|
7125 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@488
|
7126 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@488
|
7127 /* end confdefs.h. */
|
Chris@488
|
7128
|
Chris@488
|
7129 /* Override any GCC internal prototype to avoid an error.
|
Chris@488
|
7130 Use char because int might match the return type of a GCC
|
Chris@488
|
7131 builtin and then its argument prototype would still apply. */
|
Chris@488
|
7132 #ifdef __cplusplus
|
Chris@488
|
7133 extern "C"
|
Chris@488
|
7134 #endif
|
Chris@488
|
7135 char $SV_MODULE_FUNC ();
|
Chris@488
|
7136 int
|
Chris@488
|
7137 main ()
|
Chris@488
|
7138 {
|
Chris@488
|
7139 return $SV_MODULE_FUNC ();
|
Chris@488
|
7140 ;
|
Chris@488
|
7141 return 0;
|
Chris@488
|
7142 }
|
Chris@488
|
7143 _ACEOF
|
Chris@488
|
7144 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@488
|
7145 eval "$as_ac_Lib=yes"
|
Chris@488
|
7146 else
|
Chris@488
|
7147 eval "$as_ac_Lib=no"
|
Chris@488
|
7148 fi
|
Chris@488
|
7149 rm -f core conftest.err conftest.$ac_objext \
|
Chris@488
|
7150 conftest$ac_exeext conftest.$ac_ext
|
Chris@488
|
7151 LIBS=$ac_check_lib_save_LIBS
|
Chris@488
|
7152 fi
|
Chris@488
|
7153 eval ac_res=\$$as_ac_Lib
|
Chris@488
|
7154 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@488
|
7155 $as_echo "$ac_res" >&6; }
|
Chris@594
|
7156 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@572
|
7157 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@572
|
7158 else
|
Chris@572
|
7159 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
|
Chris@572
|
7160 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
7161 fi
|
Chris@572
|
7162
|
Chris@572
|
7163 fi
|
Chris@572
|
7164 fi
|
Chris@572
|
7165 fi
|
Chris@572
|
7166
|
Chris@572
|
7167
|
Chris@572
|
7168 SV_MODULE_MODULE=id3tag
|
Chris@572
|
7169 SV_MODULE_VERSION_TEST="id3tag >= 0.15.0"
|
Chris@572
|
7170 SV_MODULE_HEADER=id3tag.h
|
Chris@572
|
7171 SV_MODULE_LIB=id3tag
|
Chris@572
|
7172 SV_MODULE_FUNC=id3_tag_new
|
Chris@572
|
7173 SV_MODULE_HAVE=HAVE_$(echo id3tag | tr 'a-z' 'A-Z')
|
Chris@572
|
7174 SV_MODULE_FAILED=1
|
Chris@572
|
7175 if test -n "$id3tag_LIBS" ; then
|
Chris@572
|
7176 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@572
|
7177 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
7178 CXXFLAGS="$CXXFLAGS $id3tag_CFLAGS"
|
Chris@572
|
7179 LIBS="$LIBS $id3tag_LIBS"
|
Chris@572
|
7180 SV_MODULE_FAILED=""
|
Chris@572
|
7181 fi
|
Chris@572
|
7182 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@572
|
7183 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@572
|
7184 fi
|
Chris@572
|
7185 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@572
|
7186
|
Chris@572
|
7187 pkg_failed=no
|
Chris@572
|
7188 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for id3tag" >&5
|
Chris@572
|
7189 $as_echo_n "checking for id3tag... " >&6; }
|
Chris@572
|
7190
|
Chris@594
|
7191 if test -n "$id3tag_CFLAGS"; then
|
Chris@594
|
7192 pkg_cv_id3tag_CFLAGS="$id3tag_CFLAGS"
|
Chris@594
|
7193 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
7194 if test -n "$PKG_CONFIG" && \
|
Chris@572
|
7195 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@572
|
7196 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@572
|
7197 ac_status=$?
|
Chris@572
|
7198 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@572
|
7199 test $ac_status = 0; }; then
|
Chris@572
|
7200 pkg_cv_id3tag_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
7201 test "x$?" != "x0" && pkg_failed=yes
|
Chris@572
|
7202 else
|
Chris@572
|
7203 pkg_failed=yes
|
Chris@572
|
7204 fi
|
Chris@594
|
7205 else
|
Chris@594
|
7206 pkg_failed=untried
|
Chris@594
|
7207 fi
|
Chris@594
|
7208 if test -n "$id3tag_LIBS"; then
|
Chris@594
|
7209 pkg_cv_id3tag_LIBS="$id3tag_LIBS"
|
Chris@594
|
7210 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
7211 if test -n "$PKG_CONFIG" && \
|
Chris@572
|
7212 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@572
|
7213 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@572
|
7214 ac_status=$?
|
Chris@572
|
7215 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@572
|
7216 test $ac_status = 0; }; then
|
Chris@572
|
7217 pkg_cv_id3tag_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
7218 test "x$?" != "x0" && pkg_failed=yes
|
Chris@572
|
7219 else
|
Chris@572
|
7220 pkg_failed=yes
|
Chris@572
|
7221 fi
|
Chris@594
|
7222 else
|
Chris@594
|
7223 pkg_failed=untried
|
Chris@572
|
7224 fi
|
Chris@572
|
7225
|
Chris@572
|
7226
|
Chris@572
|
7227
|
Chris@572
|
7228 if test $pkg_failed = yes; then
|
Chris@594
|
7229 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
7230 $as_echo "no" >&6; }
|
Chris@572
|
7231
|
Chris@572
|
7232 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@572
|
7233 _pkg_short_errors_supported=yes
|
Chris@572
|
7234 else
|
Chris@572
|
7235 _pkg_short_errors_supported=no
|
Chris@572
|
7236 fi
|
Chris@572
|
7237 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
7238 id3tag_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@572
|
7239 else
|
Chris@594
|
7240 id3tag_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@572
|
7241 fi
|
Chris@572
|
7242 # Put the nasty error message in config.log where it belongs
|
Chris@572
|
7243 echo "$id3tag_PKG_ERRORS" >&5
|
Chris@572
|
7244
|
Chris@594
|
7245 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
7246 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
7247 elif test $pkg_failed = untried; then
|
Chris@594
|
7248 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
7249 $as_echo "no" >&6; }
|
Chris@572
|
7250 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
7251 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
7252 else
|
Chris@572
|
7253 id3tag_CFLAGS=$pkg_cv_id3tag_CFLAGS
|
Chris@572
|
7254 id3tag_LIBS=$pkg_cv_id3tag_LIBS
|
Chris@572
|
7255 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@572
|
7256 $as_echo "yes" >&6; }
|
Chris@572
|
7257 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $id3tag_CFLAGS";LIBS="$LIBS $id3tag_LIBS";SV_MODULE_FAILED=""
|
Chris@572
|
7258 fi
|
Chris@572
|
7259 fi
|
Chris@572
|
7260 if test -n "$SV_MODULE_FAILED"; then
|
Chris@572
|
7261 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@572
|
7262 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
7263 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@572
|
7264 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
|
Chris@572
|
7265 else
|
Chris@572
|
7266 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
|
Chris@572
|
7267 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
7268 fi
|
Chris@572
|
7269
|
Chris@572
|
7270
|
Chris@572
|
7271 if test -z "$SV_MODULE_FAILED"; then
|
Chris@572
|
7272 if test -n "$SV_MODULE_LIB"; then
|
Chris@572
|
7273 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@572
|
7274 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@572
|
7275 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
7276 if eval \${$as_ac_Lib+:} false; then :
|
Chris@572
|
7277 $as_echo_n "(cached) " >&6
|
Chris@572
|
7278 else
|
Chris@572
|
7279 ac_check_lib_save_LIBS=$LIBS
|
Chris@572
|
7280 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@572
|
7281 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@572
|
7282 /* end confdefs.h. */
|
Chris@572
|
7283
|
Chris@572
|
7284 /* Override any GCC internal prototype to avoid an error.
|
Chris@572
|
7285 Use char because int might match the return type of a GCC
|
Chris@572
|
7286 builtin and then its argument prototype would still apply. */
|
Chris@572
|
7287 #ifdef __cplusplus
|
Chris@572
|
7288 extern "C"
|
Chris@572
|
7289 #endif
|
Chris@572
|
7290 char $SV_MODULE_FUNC ();
|
Chris@572
|
7291 int
|
Chris@572
|
7292 main ()
|
Chris@572
|
7293 {
|
Chris@572
|
7294 return $SV_MODULE_FUNC ();
|
Chris@572
|
7295 ;
|
Chris@572
|
7296 return 0;
|
Chris@572
|
7297 }
|
Chris@572
|
7298 _ACEOF
|
Chris@572
|
7299 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@572
|
7300 eval "$as_ac_Lib=yes"
|
Chris@572
|
7301 else
|
Chris@572
|
7302 eval "$as_ac_Lib=no"
|
Chris@572
|
7303 fi
|
Chris@572
|
7304 rm -f core conftest.err conftest.$ac_objext \
|
Chris@572
|
7305 conftest$ac_exeext conftest.$ac_ext
|
Chris@572
|
7306 LIBS=$ac_check_lib_save_LIBS
|
Chris@572
|
7307 fi
|
Chris@572
|
7308 eval ac_res=\$$as_ac_Lib
|
Chris@572
|
7309 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@572
|
7310 $as_echo "$ac_res" >&6; }
|
Chris@594
|
7311 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@572
|
7312 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@572
|
7313 else
|
Chris@572
|
7314 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
|
Chris@572
|
7315 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
7316 fi
|
Chris@572
|
7317
|
Chris@572
|
7318 fi
|
Chris@572
|
7319 fi
|
Chris@572
|
7320 fi
|
Chris@572
|
7321
|
Chris@572
|
7322
|
Chris@572
|
7323 # Link in -lX11 if it exists -- this is for the X error handler
|
Chris@572
|
7324
|
Chris@572
|
7325 SV_MODULE_MODULE=X11
|
Chris@572
|
7326 SV_MODULE_VERSION_TEST="x11 >= 1.0.0"
|
Chris@572
|
7327 SV_MODULE_HEADER=X11/X.h
|
Chris@572
|
7328 SV_MODULE_LIB=x11
|
Chris@572
|
7329 SV_MODULE_FUNC=XGetErrorText
|
Chris@572
|
7330 SV_MODULE_HAVE=HAVE_$(echo X11 | tr 'a-z' 'A-Z')
|
Chris@572
|
7331 SV_MODULE_FAILED=1
|
Chris@572
|
7332 if test -n "$X11_LIBS" ; then
|
Chris@572
|
7333 { $as_echo "$as_me:${as_lineno-$LINENO}: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&5
|
Chris@572
|
7334 $as_echo "$as_me: User set ${SV_MODULE_MODULE}_LIBS explicitly, skipping test for $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
7335 CXXFLAGS="$CXXFLAGS $X11_CFLAGS"
|
Chris@572
|
7336 LIBS="$LIBS $X11_LIBS"
|
Chris@572
|
7337 SV_MODULE_FAILED=""
|
Chris@572
|
7338 fi
|
Chris@572
|
7339 if test -z "$SV_MODULE_VERSION_TEST" ; then
|
Chris@572
|
7340 SV_MODULE_VERSION_TEST=$SV_MODULE_MODULE
|
Chris@572
|
7341 fi
|
Chris@572
|
7342 if test -n "$SV_MODULE_FAILED" && test -n "$PKG_CONFIG"; then
|
Chris@572
|
7343
|
Chris@572
|
7344 pkg_failed=no
|
Chris@572
|
7345 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for X11" >&5
|
Chris@572
|
7346 $as_echo_n "checking for X11... " >&6; }
|
Chris@572
|
7347
|
Chris@594
|
7348 if test -n "$X11_CFLAGS"; then
|
Chris@594
|
7349 pkg_cv_X11_CFLAGS="$X11_CFLAGS"
|
Chris@594
|
7350 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
7351 if test -n "$PKG_CONFIG" && \
|
Chris@572
|
7352 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@572
|
7353 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@572
|
7354 ac_status=$?
|
Chris@572
|
7355 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@572
|
7356 test $ac_status = 0; }; then
|
Chris@572
|
7357 pkg_cv_X11_CFLAGS=`$PKG_CONFIG --cflags "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
7358 test "x$?" != "x0" && pkg_failed=yes
|
Chris@572
|
7359 else
|
Chris@572
|
7360 pkg_failed=yes
|
Chris@572
|
7361 fi
|
Chris@594
|
7362 else
|
Chris@594
|
7363 pkg_failed=untried
|
Chris@594
|
7364 fi
|
Chris@594
|
7365 if test -n "$X11_LIBS"; then
|
Chris@594
|
7366 pkg_cv_X11_LIBS="$X11_LIBS"
|
Chris@594
|
7367 elif test -n "$PKG_CONFIG"; then
|
Chris@594
|
7368 if test -n "$PKG_CONFIG" && \
|
Chris@572
|
7369 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"\$SV_MODULE_VERSION_TEST\""; } >&5
|
Chris@572
|
7370 ($PKG_CONFIG --exists --print-errors "$SV_MODULE_VERSION_TEST") 2>&5
|
Chris@572
|
7371 ac_status=$?
|
Chris@572
|
7372 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
Chris@572
|
7373 test $ac_status = 0; }; then
|
Chris@572
|
7374 pkg_cv_X11_LIBS=`$PKG_CONFIG --libs "$SV_MODULE_VERSION_TEST" 2>/dev/null`
|
Chris@594
|
7375 test "x$?" != "x0" && pkg_failed=yes
|
Chris@572
|
7376 else
|
Chris@572
|
7377 pkg_failed=yes
|
Chris@572
|
7378 fi
|
Chris@594
|
7379 else
|
Chris@594
|
7380 pkg_failed=untried
|
Chris@572
|
7381 fi
|
Chris@572
|
7382
|
Chris@572
|
7383
|
Chris@572
|
7384
|
Chris@572
|
7385 if test $pkg_failed = yes; then
|
Chris@594
|
7386 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
7387 $as_echo "no" >&6; }
|
Chris@572
|
7388
|
Chris@572
|
7389 if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
Chris@572
|
7390 _pkg_short_errors_supported=yes
|
Chris@572
|
7391 else
|
Chris@572
|
7392 _pkg_short_errors_supported=no
|
Chris@572
|
7393 fi
|
Chris@572
|
7394 if test $_pkg_short_errors_supported = yes; then
|
Chris@594
|
7395 X11_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@572
|
7396 else
|
Chris@594
|
7397 X11_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$SV_MODULE_VERSION_TEST" 2>&1`
|
Chris@572
|
7398 fi
|
Chris@572
|
7399 # Put the nasty error message in config.log where it belongs
|
Chris@572
|
7400 echo "$X11_PKG_ERRORS" >&5
|
Chris@572
|
7401
|
Chris@594
|
7402 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
7403 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
7404 elif test $pkg_failed = untried; then
|
Chris@594
|
7405 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
Chris@594
|
7406 $as_echo "no" >&6; }
|
Chris@572
|
7407 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&5
|
Chris@572
|
7408 $as_echo "$as_me: Failed to find optional module $SV_MODULE_MODULE using pkg-config, trying again by old-fashioned means" >&6;}
|
Chris@572
|
7409 else
|
Chris@572
|
7410 X11_CFLAGS=$pkg_cv_X11_CFLAGS
|
Chris@572
|
7411 X11_LIBS=$pkg_cv_X11_LIBS
|
Chris@572
|
7412 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
Chris@572
|
7413 $as_echo "yes" >&6; }
|
Chris@572
|
7414 HAVES="$HAVES $SV_MODULE_HAVE";CXXFLAGS="$CXXFLAGS $X11_CFLAGS";LIBS="$LIBS $X11_LIBS";SV_MODULE_FAILED=""
|
Chris@572
|
7415 fi
|
Chris@572
|
7416 fi
|
Chris@572
|
7417 if test -n "$SV_MODULE_FAILED"; then
|
Chris@572
|
7418 as_ac_Header=`$as_echo "ac_cv_header_$SV_MODULE_HEADER" | $as_tr_sh`
|
Chris@572
|
7419 ac_fn_cxx_check_header_mongrel "$LINENO" "$SV_MODULE_HEADER" "$as_ac_Header" "$ac_includes_default"
|
Chris@594
|
7420 if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
|
Chris@572
|
7421 HAVES="$HAVES $SV_MODULE_HAVE";SV_MODULE_FAILED=""
|
Chris@572
|
7422 else
|
Chris@572
|
7423 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&5
|
Chris@572
|
7424 $as_echo "$as_me: Failed to find header $SV_MODULE_HEADER for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@572
|
7425 fi
|
Chris@572
|
7426
|
Chris@572
|
7427
|
Chris@572
|
7428 if test -z "$SV_MODULE_FAILED"; then
|
Chris@572
|
7429 if test -n "$SV_MODULE_LIB"; then
|
Chris@572
|
7430 as_ac_Lib=`$as_echo "ac_cv_lib_$SV_MODULE_LIB''_$SV_MODULE_FUNC" | $as_tr_sh`
|
Chris@572
|
7431 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB" >&5
|
Chris@572
|
7432 $as_echo_n "checking for $SV_MODULE_FUNC in -l$SV_MODULE_LIB... " >&6; }
|
Chris@594
|
7433 if eval \${$as_ac_Lib+:} false; then :
|
Chris@572
|
7434 $as_echo_n "(cached) " >&6
|
Chris@572
|
7435 else
|
Chris@572
|
7436 ac_check_lib_save_LIBS=$LIBS
|
Chris@572
|
7437 LIBS="-l$SV_MODULE_LIB $LIBS"
|
Chris@572
|
7438 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
Chris@572
|
7439 /* end confdefs.h. */
|
Chris@572
|
7440
|
Chris@572
|
7441 /* Override any GCC internal prototype to avoid an error.
|
Chris@572
|
7442 Use char because int might match the return type of a GCC
|
Chris@572
|
7443 builtin and then its argument prototype would still apply. */
|
Chris@572
|
7444 #ifdef __cplusplus
|
Chris@572
|
7445 extern "C"
|
Chris@572
|
7446 #endif
|
Chris@572
|
7447 char $SV_MODULE_FUNC ();
|
Chris@572
|
7448 int
|
Chris@572
|
7449 main ()
|
Chris@572
|
7450 {
|
Chris@572
|
7451 return $SV_MODULE_FUNC ();
|
Chris@572
|
7452 ;
|
Chris@572
|
7453 return 0;
|
Chris@572
|
7454 }
|
Chris@572
|
7455 _ACEOF
|
Chris@572
|
7456 if ac_fn_cxx_try_link "$LINENO"; then :
|
Chris@572
|
7457 eval "$as_ac_Lib=yes"
|
Chris@572
|
7458 else
|
Chris@572
|
7459 eval "$as_ac_Lib=no"
|
Chris@572
|
7460 fi
|
Chris@572
|
7461 rm -f core conftest.err conftest.$ac_objext \
|
Chris@572
|
7462 conftest$ac_exeext conftest.$ac_ext
|
Chris@572
|
7463 LIBS=$ac_check_lib_save_LIBS
|
Chris@572
|
7464 fi
|
Chris@572
|
7465 eval ac_res=\$$as_ac_Lib
|
Chris@572
|
7466 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
|
Chris@572
|
7467 $as_echo "$ac_res" >&6; }
|
Chris@594
|
7468 if eval test \"x\$"$as_ac_Lib"\" = x"yes"; then :
|
Chris@488
|
7469 LIBS="$LIBS -l$SV_MODULE_LIB"
|
Chris@488
|
7470 else
|
Chris@488
|
7471 { $as_echo "$as_me:${as_lineno-$LINENO}: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&5
|
Chris@488
|
7472 $as_echo "$as_me: Failed to find library $SV_MODULE_LIB for optional module $SV_MODULE_MODULE" >&6;}
|
Chris@488
|
7473 fi
|
Chris@488
|
7474
|
Chris@488
|
7475 fi
|
Chris@488
|
7476 fi
|
Chris@488
|
7477 fi
|
Chris@488
|
7478
|
Chris@488
|
7479
|
Chris@350
|
7480
|
Chris@350
|
7481
|
Chris@350
|
7482
|
Chris@350
|
7483
|
Chris@350
|
7484
|
Chris@350
|
7485
|
Chris@350
|
7486
|
Chris@350
|
7487
|
Chris@350
|
7488
|
Chris@350
|
7489
|
Chris@350
|
7490
|
Chris@350
|
7491
|
Chris@350
|
7492
|
Chris@350
|
7493
|
Chris@350
|
7494
|
Chris@350
|
7495
|
Chris@350
|
7496
|
Chris@350
|
7497
|
Chris@361
|
7498
|
Chris@361
|
7499
|
Chris@517
|
7500 subdirs="$subdirs svcore svgui svapp"
|
Chris@517
|
7501
|
Chris@517
|
7502 ac_config_files="$ac_config_files config.pri version.h"
|
Chris@517
|
7503
|
Chris@350
|
7504
|
Chris@350
|
7505 cat >confcache <<\_ACEOF
|
Chris@350
|
7506 # This file is a shell script that caches the results of configure
|
Chris@350
|
7507 # tests run on this system so they can be shared between configure
|
Chris@350
|
7508 # scripts and configure runs, see configure's option --config-cache.
|
Chris@350
|
7509 # It is not useful on other systems. If it contains results you don't
|
Chris@350
|
7510 # want to keep, you may remove or edit it.
|
Chris@350
|
7511 #
|
Chris@350
|
7512 # config.status only pays attention to the cache file if you give it
|
Chris@350
|
7513 # the --recheck option to rerun configure.
|
Chris@350
|
7514 #
|
Chris@350
|
7515 # `ac_cv_env_foo' variables (set or unset) will be overridden when
|
Chris@350
|
7516 # loading this file, other *unset* `ac_cv_foo' will be assigned the
|
Chris@350
|
7517 # following values.
|
Chris@350
|
7518
|
Chris@350
|
7519 _ACEOF
|
Chris@350
|
7520
|
Chris@350
|
7521 # The following way of writing the cache mishandles newlines in values,
|
Chris@350
|
7522 # but we know of no workaround that is simple, portable, and efficient.
|
Chris@350
|
7523 # So, we kill variables containing newlines.
|
Chris@350
|
7524 # Ultrix sh set writes to stderr and can't be redirected directly,
|
Chris@350
|
7525 # and sets the high bit in the cache file unless we assign to the vars.
|
Chris@350
|
7526 (
|
Chris@350
|
7527 for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
|
Chris@350
|
7528 eval ac_val=\$$ac_var
|
Chris@350
|
7529 case $ac_val in #(
|
Chris@350
|
7530 *${as_nl}*)
|
Chris@350
|
7531 case $ac_var in #(
|
Chris@350
|
7532 *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
|
Chris@350
|
7533 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
|
Chris@350
|
7534 esac
|
Chris@350
|
7535 case $ac_var in #(
|
Chris@350
|
7536 _ | IFS | as_nl) ;; #(
|
Chris@350
|
7537 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
|
Chris@350
|
7538 *) { eval $ac_var=; unset $ac_var;} ;;
|
Chris@350
|
7539 esac ;;
|
Chris@350
|
7540 esac
|
Chris@350
|
7541 done
|
Chris@350
|
7542
|
Chris@350
|
7543 (set) 2>&1 |
|
Chris@350
|
7544 case $as_nl`(ac_space=' '; set) 2>&1` in #(
|
Chris@350
|
7545 *${as_nl}ac_space=\ *)
|
Chris@350
|
7546 # `set' does not quote correctly, so add quotes: double-quote
|
Chris@350
|
7547 # substitution turns \\\\ into \\, and sed turns \\ into \.
|
Chris@350
|
7548 sed -n \
|
Chris@350
|
7549 "s/'/'\\\\''/g;
|
Chris@350
|
7550 s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
|
Chris@350
|
7551 ;; #(
|
Chris@350
|
7552 *)
|
Chris@350
|
7553 # `set' quotes correctly as required by POSIX, so do not add quotes.
|
Chris@350
|
7554 sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
|
Chris@350
|
7555 ;;
|
Chris@350
|
7556 esac |
|
Chris@350
|
7557 sort
|
Chris@350
|
7558 ) |
|
Chris@350
|
7559 sed '
|
Chris@350
|
7560 /^ac_cv_env_/b end
|
Chris@350
|
7561 t clear
|
Chris@350
|
7562 :clear
|
Chris@350
|
7563 s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
|
Chris@350
|
7564 t end
|
Chris@350
|
7565 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
|
Chris@350
|
7566 :end' >>confcache
|
Chris@350
|
7567 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
|
Chris@350
|
7568 if test -w "$cache_file"; then
|
Chris@594
|
7569 if test "x$cache_file" != "x/dev/null"; then
|
Chris@350
|
7570 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
|
Chris@350
|
7571 $as_echo "$as_me: updating cache $cache_file" >&6;}
|
Chris@594
|
7572 if test ! -f "$cache_file" || test -h "$cache_file"; then
|
Chris@594
|
7573 cat confcache >"$cache_file"
|
Chris@594
|
7574 else
|
Chris@594
|
7575 case $cache_file in #(
|
Chris@594
|
7576 */* | ?:*)
|
Chris@594
|
7577 mv -f confcache "$cache_file"$$ &&
|
Chris@594
|
7578 mv -f "$cache_file"$$ "$cache_file" ;; #(
|
Chris@594
|
7579 *)
|
Chris@594
|
7580 mv -f confcache "$cache_file" ;;
|
Chris@594
|
7581 esac
|
Chris@594
|
7582 fi
|
Chris@594
|
7583 fi
|
Chris@350
|
7584 else
|
Chris@350
|
7585 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
|
Chris@350
|
7586 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
|
Chris@350
|
7587 fi
|
Chris@350
|
7588 fi
|
Chris@350
|
7589 rm -f confcache
|
Chris@350
|
7590
|
Chris@350
|
7591 test "x$prefix" = xNONE && prefix=$ac_default_prefix
|
Chris@350
|
7592 # Let make expand exec_prefix.
|
Chris@350
|
7593 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
Chris@350
|
7594
|
Chris@350
|
7595 # Transform confdefs.h into DEFS.
|
Chris@350
|
7596 # Protect against shell expansion while executing Makefile rules.
|
Chris@350
|
7597 # Protect against Makefile macro expansion.
|
Chris@350
|
7598 #
|
Chris@350
|
7599 # If the first sed substitution is executed (which looks for macros that
|
Chris@350
|
7600 # take arguments), then branch to the quote section. Otherwise,
|
Chris@350
|
7601 # look for a macro that doesn't take arguments.
|
Chris@350
|
7602 ac_script='
|
Chris@350
|
7603 :mline
|
Chris@350
|
7604 /\\$/{
|
Chris@350
|
7605 N
|
Chris@350
|
7606 s,\\\n,,
|
Chris@350
|
7607 b mline
|
Chris@350
|
7608 }
|
Chris@350
|
7609 t clear
|
Chris@350
|
7610 :clear
|
Chris@350
|
7611 s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g
|
Chris@350
|
7612 t quote
|
Chris@350
|
7613 s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g
|
Chris@350
|
7614 t quote
|
Chris@350
|
7615 b any
|
Chris@350
|
7616 :quote
|
Chris@350
|
7617 s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g
|
Chris@350
|
7618 s/\[/\\&/g
|
Chris@350
|
7619 s/\]/\\&/g
|
Chris@350
|
7620 s/\$/$$/g
|
Chris@350
|
7621 H
|
Chris@350
|
7622 :any
|
Chris@350
|
7623 ${
|
Chris@350
|
7624 g
|
Chris@350
|
7625 s/^\n//
|
Chris@350
|
7626 s/\n/ /g
|
Chris@350
|
7627 p
|
Chris@350
|
7628 }
|
Chris@350
|
7629 '
|
Chris@350
|
7630 DEFS=`sed -n "$ac_script" confdefs.h`
|
Chris@350
|
7631
|
Chris@350
|
7632
|
Chris@350
|
7633 ac_libobjs=
|
Chris@350
|
7634 ac_ltlibobjs=
|
Chris@594
|
7635 U=
|
Chris@350
|
7636 for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
|
Chris@350
|
7637 # 1. Remove the extension, and $U if already installed.
|
Chris@350
|
7638 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
|
Chris@350
|
7639 ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
|
Chris@350
|
7640 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
|
Chris@350
|
7641 # will be set to the directory where LIBOBJS objects are built.
|
Chris@350
|
7642 as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
|
Chris@350
|
7643 as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
|
Chris@350
|
7644 done
|
Chris@350
|
7645 LIBOBJS=$ac_libobjs
|
Chris@350
|
7646
|
Chris@350
|
7647 LTLIBOBJS=$ac_ltlibobjs
|
Chris@350
|
7648
|
Chris@350
|
7649
|
Chris@350
|
7650
|
Chris@594
|
7651 : "${CONFIG_STATUS=./config.status}"
|
Chris@350
|
7652 ac_write_fail=0
|
Chris@350
|
7653 ac_clean_files_save=$ac_clean_files
|
Chris@350
|
7654 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
|
Chris@350
|
7655 { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
|
Chris@350
|
7656 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
|
Chris@350
|
7657 as_write_fail=0
|
Chris@350
|
7658 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
|
Chris@350
|
7659 #! $SHELL
|
Chris@350
|
7660 # Generated by $as_me.
|
Chris@350
|
7661 # Run this file to recreate the current configuration.
|
Chris@350
|
7662 # Compiler output produced by configure, useful for debugging
|
Chris@350
|
7663 # configure, is in config.log if it exists.
|
Chris@350
|
7664
|
Chris@350
|
7665 debug=false
|
Chris@350
|
7666 ac_cs_recheck=false
|
Chris@350
|
7667 ac_cs_silent=false
|
Chris@350
|
7668
|
Chris@350
|
7669 SHELL=\${CONFIG_SHELL-$SHELL}
|
Chris@350
|
7670 export SHELL
|
Chris@350
|
7671 _ASEOF
|
Chris@350
|
7672 cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
|
Chris@350
|
7673 ## -------------------- ##
|
Chris@350
|
7674 ## M4sh Initialization. ##
|
Chris@350
|
7675 ## -------------------- ##
|
Chris@350
|
7676
|
Chris@350
|
7677 # Be more Bourne compatible
|
Chris@350
|
7678 DUALCASE=1; export DUALCASE # for MKS sh
|
Chris@350
|
7679 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
|
Chris@350
|
7680 emulate sh
|
Chris@350
|
7681 NULLCMD=:
|
Chris@350
|
7682 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
|
Chris@350
|
7683 # is contrary to our usage. Disable this feature.
|
Chris@350
|
7684 alias -g '${1+"$@"}'='"$@"'
|
Chris@350
|
7685 setopt NO_GLOB_SUBST
|
Chris@350
|
7686 else
|
Chris@350
|
7687 case `(set -o) 2>/dev/null` in #(
|
Chris@350
|
7688 *posix*) :
|
Chris@350
|
7689 set -o posix ;; #(
|
Chris@350
|
7690 *) :
|
Chris@350
|
7691 ;;
|
Chris@350
|
7692 esac
|
Chris@350
|
7693 fi
|
Chris@350
|
7694
|
Chris@350
|
7695
|
Chris@350
|
7696 as_nl='
|
Chris@350
|
7697 '
|
Chris@350
|
7698 export as_nl
|
Chris@350
|
7699 # Printing a long string crashes Solaris 7 /usr/bin/printf.
|
Chris@350
|
7700 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
|
Chris@350
|
7701 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
|
Chris@350
|
7702 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
|
Chris@350
|
7703 # Prefer a ksh shell builtin over an external printf program on Solaris,
|
Chris@350
|
7704 # but without wasting forks for bash or zsh.
|
Chris@350
|
7705 if test -z "$BASH_VERSION$ZSH_VERSION" \
|
Chris@350
|
7706 && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
|
Chris@350
|
7707 as_echo='print -r --'
|
Chris@350
|
7708 as_echo_n='print -rn --'
|
Chris@350
|
7709 elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
|
Chris@350
|
7710 as_echo='printf %s\n'
|
Chris@350
|
7711 as_echo_n='printf %s'
|
Chris@350
|
7712 else
|
Chris@350
|
7713 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
|
Chris@350
|
7714 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
|
Chris@350
|
7715 as_echo_n='/usr/ucb/echo -n'
|
Chris@350
|
7716 else
|
Chris@350
|
7717 as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
|
Chris@350
|
7718 as_echo_n_body='eval
|
Chris@350
|
7719 arg=$1;
|
Chris@350
|
7720 case $arg in #(
|
Chris@350
|
7721 *"$as_nl"*)
|
Chris@350
|
7722 expr "X$arg" : "X\\(.*\\)$as_nl";
|
Chris@350
|
7723 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
|
Chris@350
|
7724 esac;
|
Chris@350
|
7725 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
|
Chris@350
|
7726 '
|
Chris@350
|
7727 export as_echo_n_body
|
Chris@350
|
7728 as_echo_n='sh -c $as_echo_n_body as_echo'
|
Chris@350
|
7729 fi
|
Chris@350
|
7730 export as_echo_body
|
Chris@350
|
7731 as_echo='sh -c $as_echo_body as_echo'
|
Chris@350
|
7732 fi
|
Chris@350
|
7733
|
Chris@350
|
7734 # The user is always right.
|
Chris@350
|
7735 if test "${PATH_SEPARATOR+set}" != set; then
|
Chris@350
|
7736 PATH_SEPARATOR=:
|
Chris@350
|
7737 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
|
Chris@350
|
7738 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
|
Chris@350
|
7739 PATH_SEPARATOR=';'
|
Chris@350
|
7740 }
|
Chris@350
|
7741 fi
|
Chris@350
|
7742
|
Chris@350
|
7743
|
Chris@350
|
7744 # IFS
|
Chris@350
|
7745 # We need space, tab and new line, in precisely that order. Quoting is
|
Chris@350
|
7746 # there to prevent editors from complaining about space-tab.
|
Chris@350
|
7747 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
|
Chris@350
|
7748 # splitting by setting IFS to empty value.)
|
Chris@350
|
7749 IFS=" "" $as_nl"
|
Chris@350
|
7750
|
Chris@350
|
7751 # Find who we are. Look in the path if we contain no directory separator.
|
Chris@594
|
7752 as_myself=
|
Chris@350
|
7753 case $0 in #((
|
Chris@350
|
7754 *[\\/]* ) as_myself=$0 ;;
|
Chris@350
|
7755 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
Chris@350
|
7756 for as_dir in $PATH
|
Chris@350
|
7757 do
|
Chris@350
|
7758 IFS=$as_save_IFS
|
Chris@350
|
7759 test -z "$as_dir" && as_dir=.
|
Chris@350
|
7760 test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
|
Chris@350
|
7761 done
|
Chris@350
|
7762 IFS=$as_save_IFS
|
Chris@350
|
7763
|
Chris@350
|
7764 ;;
|
Chris@350
|
7765 esac
|
Chris@350
|
7766 # We did not find ourselves, most probably we were run as `sh COMMAND'
|
Chris@350
|
7767 # in which case we are not to be found in the path.
|
Chris@350
|
7768 if test "x$as_myself" = x; then
|
Chris@350
|
7769 as_myself=$0
|
Chris@350
|
7770 fi
|
Chris@350
|
7771 if test ! -f "$as_myself"; then
|
Chris@350
|
7772 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
|
Chris@350
|
7773 exit 1
|
Chris@350
|
7774 fi
|
Chris@350
|
7775
|
Chris@350
|
7776 # Unset variables that we do not need and which cause bugs (e.g. in
|
Chris@350
|
7777 # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
|
Chris@350
|
7778 # suppresses any "Segmentation fault" message there. '((' could
|
Chris@350
|
7779 # trigger a bug in pdksh 5.2.14.
|
Chris@350
|
7780 for as_var in BASH_ENV ENV MAIL MAILPATH
|
Chris@350
|
7781 do eval test x\${$as_var+set} = xset \
|
Chris@350
|
7782 && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
|
Chris@350
|
7783 done
|
Chris@350
|
7784 PS1='$ '
|
Chris@350
|
7785 PS2='> '
|
Chris@350
|
7786 PS4='+ '
|
Chris@350
|
7787
|
Chris@350
|
7788 # NLS nuisances.
|
Chris@350
|
7789 LC_ALL=C
|
Chris@350
|
7790 export LC_ALL
|
Chris@350
|
7791 LANGUAGE=C
|
Chris@350
|
7792 export LANGUAGE
|
Chris@350
|
7793
|
Chris@350
|
7794 # CDPATH.
|
Chris@350
|
7795 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
|
Chris@350
|
7796
|
Chris@350
|
7797
|
Chris@594
|
7798 # as_fn_error STATUS ERROR [LINENO LOG_FD]
|
Chris@594
|
7799 # ----------------------------------------
|
Chris@350
|
7800 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
|
Chris@350
|
7801 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
|
Chris@594
|
7802 # script with STATUS, using 1 if that was 0.
|
Chris@350
|
7803 as_fn_error ()
|
Chris@350
|
7804 {
|
Chris@594
|
7805 as_status=$1; test $as_status -eq 0 && as_status=1
|
Chris@594
|
7806 if test "$4"; then
|
Chris@594
|
7807 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
|
Chris@594
|
7808 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
|
Chris@350
|
7809 fi
|
Chris@594
|
7810 $as_echo "$as_me: error: $2" >&2
|
Chris@350
|
7811 as_fn_exit $as_status
|
Chris@350
|
7812 } # as_fn_error
|
Chris@350
|
7813
|
Chris@350
|
7814
|
Chris@350
|
7815 # as_fn_set_status STATUS
|
Chris@350
|
7816 # -----------------------
|
Chris@350
|
7817 # Set $? to STATUS, without forking.
|
Chris@350
|
7818 as_fn_set_status ()
|
Chris@350
|
7819 {
|
Chris@350
|
7820 return $1
|
Chris@350
|
7821 } # as_fn_set_status
|
Chris@350
|
7822
|
Chris@350
|
7823 # as_fn_exit STATUS
|
Chris@350
|
7824 # -----------------
|
Chris@350
|
7825 # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
|
Chris@350
|
7826 as_fn_exit ()
|
Chris@350
|
7827 {
|
Chris@350
|
7828 set +e
|
Chris@350
|
7829 as_fn_set_status $1
|
Chris@350
|
7830 exit $1
|
Chris@350
|
7831 } # as_fn_exit
|
Chris@350
|
7832
|
Chris@350
|
7833 # as_fn_unset VAR
|
Chris@350
|
7834 # ---------------
|
Chris@350
|
7835 # Portably unset VAR.
|
Chris@350
|
7836 as_fn_unset ()
|
Chris@350
|
7837 {
|
Chris@350
|
7838 { eval $1=; unset $1;}
|
Chris@350
|
7839 }
|
Chris@350
|
7840 as_unset=as_fn_unset
|
Chris@350
|
7841 # as_fn_append VAR VALUE
|
Chris@350
|
7842 # ----------------------
|
Chris@350
|
7843 # Append the text in VALUE to the end of the definition contained in VAR. Take
|
Chris@350
|
7844 # advantage of any shell optimizations that allow amortized linear growth over
|
Chris@350
|
7845 # repeated appends, instead of the typical quadratic growth present in naive
|
Chris@350
|
7846 # implementations.
|
Chris@350
|
7847 if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
|
Chris@350
|
7848 eval 'as_fn_append ()
|
Chris@350
|
7849 {
|
Chris@350
|
7850 eval $1+=\$2
|
Chris@350
|
7851 }'
|
Chris@350
|
7852 else
|
Chris@350
|
7853 as_fn_append ()
|
Chris@350
|
7854 {
|
Chris@350
|
7855 eval $1=\$$1\$2
|
Chris@350
|
7856 }
|
Chris@350
|
7857 fi # as_fn_append
|
Chris@350
|
7858
|
Chris@350
|
7859 # as_fn_arith ARG...
|
Chris@350
|
7860 # ------------------
|
Chris@350
|
7861 # Perform arithmetic evaluation on the ARGs, and store the result in the
|
Chris@350
|
7862 # global $as_val. Take advantage of shells that can avoid forks. The arguments
|
Chris@350
|
7863 # must be portable across $(()) and expr.
|
Chris@350
|
7864 if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
|
Chris@350
|
7865 eval 'as_fn_arith ()
|
Chris@350
|
7866 {
|
Chris@350
|
7867 as_val=$(( $* ))
|
Chris@350
|
7868 }'
|
Chris@350
|
7869 else
|
Chris@350
|
7870 as_fn_arith ()
|
Chris@350
|
7871 {
|
Chris@350
|
7872 as_val=`expr "$@" || test $? -eq 1`
|
Chris@350
|
7873 }
|
Chris@350
|
7874 fi # as_fn_arith
|
Chris@350
|
7875
|
Chris@350
|
7876
|
Chris@350
|
7877 if expr a : '\(a\)' >/dev/null 2>&1 &&
|
Chris@350
|
7878 test "X`expr 00001 : '.*\(...\)'`" = X001; then
|
Chris@350
|
7879 as_expr=expr
|
Chris@350
|
7880 else
|
Chris@350
|
7881 as_expr=false
|
Chris@350
|
7882 fi
|
Chris@350
|
7883
|
Chris@350
|
7884 if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
|
Chris@350
|
7885 as_basename=basename
|
Chris@350
|
7886 else
|
Chris@350
|
7887 as_basename=false
|
Chris@350
|
7888 fi
|
Chris@350
|
7889
|
Chris@350
|
7890 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
|
Chris@350
|
7891 as_dirname=dirname
|
Chris@350
|
7892 else
|
Chris@350
|
7893 as_dirname=false
|
Chris@350
|
7894 fi
|
Chris@350
|
7895
|
Chris@350
|
7896 as_me=`$as_basename -- "$0" ||
|
Chris@350
|
7897 $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
|
Chris@350
|
7898 X"$0" : 'X\(//\)$' \| \
|
Chris@350
|
7899 X"$0" : 'X\(/\)' \| . 2>/dev/null ||
|
Chris@350
|
7900 $as_echo X/"$0" |
|
Chris@350
|
7901 sed '/^.*\/\([^/][^/]*\)\/*$/{
|
Chris@350
|
7902 s//\1/
|
Chris@350
|
7903 q
|
Chris@350
|
7904 }
|
Chris@350
|
7905 /^X\/\(\/\/\)$/{
|
Chris@350
|
7906 s//\1/
|
Chris@350
|
7907 q
|
Chris@350
|
7908 }
|
Chris@350
|
7909 /^X\/\(\/\).*/{
|
Chris@350
|
7910 s//\1/
|
Chris@350
|
7911 q
|
Chris@350
|
7912 }
|
Chris@350
|
7913 s/.*/./; q'`
|
Chris@350
|
7914
|
Chris@350
|
7915 # Avoid depending upon Character Ranges.
|
Chris@350
|
7916 as_cr_letters='abcdefghijklmnopqrstuvwxyz'
|
Chris@350
|
7917 as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
Chris@350
|
7918 as_cr_Letters=$as_cr_letters$as_cr_LETTERS
|
Chris@350
|
7919 as_cr_digits='0123456789'
|
Chris@350
|
7920 as_cr_alnum=$as_cr_Letters$as_cr_digits
|
Chris@350
|
7921
|
Chris@350
|
7922 ECHO_C= ECHO_N= ECHO_T=
|
Chris@350
|
7923 case `echo -n x` in #(((((
|
Chris@350
|
7924 -n*)
|
Chris@350
|
7925 case `echo 'xy\c'` in
|
Chris@350
|
7926 *c*) ECHO_T=' ';; # ECHO_T is single tab character.
|
Chris@350
|
7927 xy) ECHO_C='\c';;
|
Chris@350
|
7928 *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
|
Chris@350
|
7929 ECHO_T=' ';;
|
Chris@350
|
7930 esac;;
|
Chris@350
|
7931 *)
|
Chris@350
|
7932 ECHO_N='-n';;
|
Chris@350
|
7933 esac
|
Chris@350
|
7934
|
Chris@350
|
7935 rm -f conf$$ conf$$.exe conf$$.file
|
Chris@350
|
7936 if test -d conf$$.dir; then
|
Chris@350
|
7937 rm -f conf$$.dir/conf$$.file
|
Chris@350
|
7938 else
|
Chris@350
|
7939 rm -f conf$$.dir
|
Chris@350
|
7940 mkdir conf$$.dir 2>/dev/null
|
Chris@350
|
7941 fi
|
Chris@350
|
7942 if (echo >conf$$.file) 2>/dev/null; then
|
Chris@350
|
7943 if ln -s conf$$.file conf$$ 2>/dev/null; then
|
Chris@350
|
7944 as_ln_s='ln -s'
|
Chris@350
|
7945 # ... but there are two gotchas:
|
Chris@350
|
7946 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
|
Chris@350
|
7947 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
|
Chris@594
|
7948 # In both cases, we have to default to `cp -pR'.
|
Chris@350
|
7949 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
|
Chris@594
|
7950 as_ln_s='cp -pR'
|
Chris@350
|
7951 elif ln conf$$.file conf$$ 2>/dev/null; then
|
Chris@350
|
7952 as_ln_s=ln
|
Chris@350
|
7953 else
|
Chris@594
|
7954 as_ln_s='cp -pR'
|
Chris@350
|
7955 fi
|
Chris@350
|
7956 else
|
Chris@594
|
7957 as_ln_s='cp -pR'
|
Chris@350
|
7958 fi
|
Chris@350
|
7959 rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
|
Chris@350
|
7960 rmdir conf$$.dir 2>/dev/null
|
Chris@350
|
7961
|
Chris@350
|
7962
|
Chris@350
|
7963 # as_fn_mkdir_p
|
Chris@350
|
7964 # -------------
|
Chris@350
|
7965 # Create "$as_dir" as a directory, including parents if necessary.
|
Chris@350
|
7966 as_fn_mkdir_p ()
|
Chris@350
|
7967 {
|
Chris@350
|
7968
|
Chris@350
|
7969 case $as_dir in #(
|
Chris@350
|
7970 -*) as_dir=./$as_dir;;
|
Chris@350
|
7971 esac
|
Chris@350
|
7972 test -d "$as_dir" || eval $as_mkdir_p || {
|
Chris@350
|
7973 as_dirs=
|
Chris@350
|
7974 while :; do
|
Chris@350
|
7975 case $as_dir in #(
|
Chris@350
|
7976 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
|
Chris@350
|
7977 *) as_qdir=$as_dir;;
|
Chris@350
|
7978 esac
|
Chris@350
|
7979 as_dirs="'$as_qdir' $as_dirs"
|
Chris@350
|
7980 as_dir=`$as_dirname -- "$as_dir" ||
|
Chris@350
|
7981 $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
Chris@350
|
7982 X"$as_dir" : 'X\(//\)[^/]' \| \
|
Chris@350
|
7983 X"$as_dir" : 'X\(//\)$' \| \
|
Chris@350
|
7984 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
|
Chris@350
|
7985 $as_echo X"$as_dir" |
|
Chris@350
|
7986 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
Chris@350
|
7987 s//\1/
|
Chris@350
|
7988 q
|
Chris@350
|
7989 }
|
Chris@350
|
7990 /^X\(\/\/\)[^/].*/{
|
Chris@350
|
7991 s//\1/
|
Chris@350
|
7992 q
|
Chris@350
|
7993 }
|
Chris@350
|
7994 /^X\(\/\/\)$/{
|
Chris@350
|
7995 s//\1/
|
Chris@350
|
7996 q
|
Chris@350
|
7997 }
|
Chris@350
|
7998 /^X\(\/\).*/{
|
Chris@350
|
7999 s//\1/
|
Chris@350
|
8000 q
|
Chris@350
|
8001 }
|
Chris@350
|
8002 s/.*/./; q'`
|
Chris@350
|
8003 test -d "$as_dir" && break
|
Chris@350
|
8004 done
|
Chris@350
|
8005 test -z "$as_dirs" || eval "mkdir $as_dirs"
|
Chris@594
|
8006 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
|
Chris@350
|
8007
|
Chris@350
|
8008
|
Chris@350
|
8009 } # as_fn_mkdir_p
|
Chris@350
|
8010 if mkdir -p . 2>/dev/null; then
|
Chris@350
|
8011 as_mkdir_p='mkdir -p "$as_dir"'
|
Chris@350
|
8012 else
|
Chris@350
|
8013 test -d ./-p && rmdir ./-p
|
Chris@350
|
8014 as_mkdir_p=false
|
Chris@350
|
8015 fi
|
Chris@350
|
8016
|
Chris@594
|
8017
|
Chris@594
|
8018 # as_fn_executable_p FILE
|
Chris@594
|
8019 # -----------------------
|
Chris@594
|
8020 # Test if FILE is an executable regular file.
|
Chris@594
|
8021 as_fn_executable_p ()
|
Chris@594
|
8022 {
|
Chris@594
|
8023 test -f "$1" && test -x "$1"
|
Chris@594
|
8024 } # as_fn_executable_p
|
Chris@594
|
8025 as_test_x='test -x'
|
Chris@594
|
8026 as_executable_p=as_fn_executable_p
|
Chris@350
|
8027
|
Chris@350
|
8028 # Sed expression to map a string onto a valid CPP name.
|
Chris@350
|
8029 as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
|
Chris@350
|
8030
|
Chris@350
|
8031 # Sed expression to map a string onto a valid variable name.
|
Chris@350
|
8032 as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
|
Chris@350
|
8033
|
Chris@350
|
8034
|
Chris@350
|
8035 exec 6>&1
|
Chris@350
|
8036 ## ----------------------------------- ##
|
Chris@350
|
8037 ## Main body of $CONFIG_STATUS script. ##
|
Chris@350
|
8038 ## ----------------------------------- ##
|
Chris@350
|
8039 _ASEOF
|
Chris@350
|
8040 test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
|
Chris@350
|
8041
|
Chris@350
|
8042 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
Chris@350
|
8043 # Save the log message, to keep $0 and so on meaningful, and to
|
Chris@350
|
8044 # report actual input values of CONFIG_FILES etc. instead of their
|
Chris@350
|
8045 # values after options handling.
|
Chris@350
|
8046 ac_log="
|
Chris@884
|
8047 This file was extended by Sonic Visualiser $as_me 2.4.1, which was
|
Chris@594
|
8048 generated by GNU Autoconf 2.69. Invocation command line was
|
Chris@350
|
8049
|
Chris@350
|
8050 CONFIG_FILES = $CONFIG_FILES
|
Chris@350
|
8051 CONFIG_HEADERS = $CONFIG_HEADERS
|
Chris@350
|
8052 CONFIG_LINKS = $CONFIG_LINKS
|
Chris@350
|
8053 CONFIG_COMMANDS = $CONFIG_COMMANDS
|
Chris@350
|
8054 $ $0 $@
|
Chris@350
|
8055
|
Chris@350
|
8056 on `(hostname || uname -n) 2>/dev/null | sed 1q`
|
Chris@350
|
8057 "
|
Chris@350
|
8058
|
Chris@350
|
8059 _ACEOF
|
Chris@350
|
8060
|
Chris@350
|
8061 case $ac_config_files in *"
|
Chris@350
|
8062 "*) set x $ac_config_files; shift; ac_config_files=$*;;
|
Chris@350
|
8063 esac
|
Chris@350
|
8064
|
Chris@350
|
8065
|
Chris@350
|
8066
|
Chris@350
|
8067 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
Chris@350
|
8068 # Files that config.status was made for.
|
Chris@350
|
8069 config_files="$ac_config_files"
|
Chris@350
|
8070
|
Chris@350
|
8071 _ACEOF
|
Chris@350
|
8072
|
Chris@350
|
8073 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
Chris@350
|
8074 ac_cs_usage="\
|
Chris@350
|
8075 \`$as_me' instantiates files and other configuration actions
|
Chris@350
|
8076 from templates according to the current configuration. Unless the files
|
Chris@350
|
8077 and actions are specified as TAGs, all are instantiated by default.
|
Chris@350
|
8078
|
Chris@350
|
8079 Usage: $0 [OPTION]... [TAG]...
|
Chris@350
|
8080
|
Chris@350
|
8081 -h, --help print this help, then exit
|
Chris@350
|
8082 -V, --version print version number and configuration settings, then exit
|
Chris@350
|
8083 --config print configuration, then exit
|
Chris@350
|
8084 -q, --quiet, --silent
|
Chris@350
|
8085 do not print progress messages
|
Chris@350
|
8086 -d, --debug don't remove temporary files
|
Chris@350
|
8087 --recheck update $as_me by reconfiguring in the same conditions
|
Chris@350
|
8088 --file=FILE[:TEMPLATE]
|
Chris@350
|
8089 instantiate the configuration file FILE
|
Chris@350
|
8090
|
Chris@350
|
8091 Configuration files:
|
Chris@350
|
8092 $config_files
|
Chris@350
|
8093
|
Chris@350
|
8094 Report bugs to <cannam@all-day-breakfast.com>."
|
Chris@350
|
8095
|
Chris@350
|
8096 _ACEOF
|
Chris@350
|
8097 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
Chris@350
|
8098 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
Chris@350
|
8099 ac_cs_version="\\
|
Chris@884
|
8100 Sonic Visualiser config.status 2.4.1
|
Chris@594
|
8101 configured by $0, generated by GNU Autoconf 2.69,
|
Chris@350
|
8102 with options \\"\$ac_cs_config\\"
|
Chris@350
|
8103
|
Chris@594
|
8104 Copyright (C) 2012 Free Software Foundation, Inc.
|
Chris@350
|
8105 This config.status script is free software; the Free Software Foundation
|
Chris@350
|
8106 gives unlimited permission to copy, distribute and modify it."
|
Chris@350
|
8107
|
Chris@350
|
8108 ac_pwd='$ac_pwd'
|
Chris@350
|
8109 srcdir='$srcdir'
|
Chris@350
|
8110 INSTALL='$INSTALL'
|
Chris@350
|
8111 MKDIR_P='$MKDIR_P'
|
Chris@350
|
8112 test -n "\$AWK" || AWK=awk
|
Chris@350
|
8113 _ACEOF
|
Chris@350
|
8114
|
Chris@350
|
8115 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
Chris@350
|
8116 # The default lists apply if the user does not specify any file.
|
Chris@350
|
8117 ac_need_defaults=:
|
Chris@350
|
8118 while test $# != 0
|
Chris@350
|
8119 do
|
Chris@350
|
8120 case $1 in
|
Chris@594
|
8121 --*=?*)
|
Chris@350
|
8122 ac_option=`expr "X$1" : 'X\([^=]*\)='`
|
Chris@350
|
8123 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
|
Chris@350
|
8124 ac_shift=:
|
Chris@350
|
8125 ;;
|
Chris@594
|
8126 --*=)
|
Chris@594
|
8127 ac_option=`expr "X$1" : 'X\([^=]*\)='`
|
Chris@594
|
8128 ac_optarg=
|
Chris@594
|
8129 ac_shift=:
|
Chris@594
|
8130 ;;
|
Chris@350
|
8131 *)
|
Chris@350
|
8132 ac_option=$1
|
Chris@350
|
8133 ac_optarg=$2
|
Chris@350
|
8134 ac_shift=shift
|
Chris@350
|
8135 ;;
|
Chris@350
|
8136 esac
|
Chris@350
|
8137
|
Chris@350
|
8138 case $ac_option in
|
Chris@350
|
8139 # Handling of the options.
|
Chris@350
|
8140 -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
|
Chris@350
|
8141 ac_cs_recheck=: ;;
|
Chris@350
|
8142 --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
|
Chris@350
|
8143 $as_echo "$ac_cs_version"; exit ;;
|
Chris@350
|
8144 --config | --confi | --conf | --con | --co | --c )
|
Chris@350
|
8145 $as_echo "$ac_cs_config"; exit ;;
|
Chris@350
|
8146 --debug | --debu | --deb | --de | --d | -d )
|
Chris@350
|
8147 debug=: ;;
|
Chris@350
|
8148 --file | --fil | --fi | --f )
|
Chris@350
|
8149 $ac_shift
|
Chris@350
|
8150 case $ac_optarg in
|
Chris@350
|
8151 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
|
Chris@594
|
8152 '') as_fn_error $? "missing file argument" ;;
|
Chris@350
|
8153 esac
|
Chris@350
|
8154 as_fn_append CONFIG_FILES " '$ac_optarg'"
|
Chris@350
|
8155 ac_need_defaults=false;;
|
Chris@350
|
8156 --he | --h | --help | --hel | -h )
|
Chris@350
|
8157 $as_echo "$ac_cs_usage"; exit ;;
|
Chris@350
|
8158 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
Chris@350
|
8159 | -silent | --silent | --silen | --sile | --sil | --si | --s)
|
Chris@350
|
8160 ac_cs_silent=: ;;
|
Chris@350
|
8161
|
Chris@350
|
8162 # This is an error.
|
Chris@594
|
8163 -*) as_fn_error $? "unrecognized option: \`$1'
|
Chris@350
|
8164 Try \`$0 --help' for more information." ;;
|
Chris@350
|
8165
|
Chris@350
|
8166 *) as_fn_append ac_config_targets " $1"
|
Chris@350
|
8167 ac_need_defaults=false ;;
|
Chris@350
|
8168
|
Chris@350
|
8169 esac
|
Chris@350
|
8170 shift
|
Chris@350
|
8171 done
|
Chris@350
|
8172
|
Chris@350
|
8173 ac_configure_extra_args=
|
Chris@350
|
8174
|
Chris@350
|
8175 if $ac_cs_silent; then
|
Chris@350
|
8176 exec 6>/dev/null
|
Chris@350
|
8177 ac_configure_extra_args="$ac_configure_extra_args --silent"
|
Chris@350
|
8178 fi
|
Chris@350
|
8179
|
Chris@350
|
8180 _ACEOF
|
Chris@350
|
8181 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
Chris@350
|
8182 if \$ac_cs_recheck; then
|
Chris@594
|
8183 set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
|
Chris@350
|
8184 shift
|
Chris@350
|
8185 \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
|
Chris@350
|
8186 CONFIG_SHELL='$SHELL'
|
Chris@350
|
8187 export CONFIG_SHELL
|
Chris@350
|
8188 exec "\$@"
|
Chris@350
|
8189 fi
|
Chris@350
|
8190
|
Chris@350
|
8191 _ACEOF
|
Chris@350
|
8192 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
Chris@350
|
8193 exec 5>>config.log
|
Chris@350
|
8194 {
|
Chris@350
|
8195 echo
|
Chris@350
|
8196 sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
|
Chris@350
|
8197 ## Running $as_me. ##
|
Chris@350
|
8198 _ASBOX
|
Chris@350
|
8199 $as_echo "$ac_log"
|
Chris@350
|
8200 } >&5
|
Chris@350
|
8201
|
Chris@350
|
8202 _ACEOF
|
Chris@350
|
8203 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
Chris@350
|
8204 _ACEOF
|
Chris@350
|
8205
|
Chris@350
|
8206 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
Chris@350
|
8207
|
Chris@350
|
8208 # Handling of arguments.
|
Chris@350
|
8209 for ac_config_target in $ac_config_targets
|
Chris@350
|
8210 do
|
Chris@350
|
8211 case $ac_config_target in
|
Chris@350
|
8212 "config.pri") CONFIG_FILES="$CONFIG_FILES config.pri" ;;
|
Chris@517
|
8213 "version.h") CONFIG_FILES="$CONFIG_FILES version.h" ;;
|
Chris@350
|
8214
|
Chris@594
|
8215 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
|
Chris@350
|
8216 esac
|
Chris@350
|
8217 done
|
Chris@350
|
8218
|
Chris@350
|
8219
|
Chris@350
|
8220 # If the user did not use the arguments to specify the items to instantiate,
|
Chris@350
|
8221 # then the envvar interface is used. Set only those that are not.
|
Chris@350
|
8222 # We use the long form for the default assignment because of an extremely
|
Chris@350
|
8223 # bizarre bug on SunOS 4.1.3.
|
Chris@350
|
8224 if $ac_need_defaults; then
|
Chris@350
|
8225 test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
|
Chris@350
|
8226 fi
|
Chris@350
|
8227
|
Chris@350
|
8228 # Have a temporary directory for convenience. Make it in the build tree
|
Chris@350
|
8229 # simply because there is no reason against having it here, and in addition,
|
Chris@350
|
8230 # creating and moving files from /tmp can sometimes cause problems.
|
Chris@350
|
8231 # Hook for its removal unless debugging.
|
Chris@350
|
8232 # Note that there is a small window in which the directory will not be cleaned:
|
Chris@350
|
8233 # after its creation but before its name has been assigned to `$tmp'.
|
Chris@350
|
8234 $debug ||
|
Chris@350
|
8235 {
|
Chris@594
|
8236 tmp= ac_tmp=
|
Chris@350
|
8237 trap 'exit_status=$?
|
Chris@594
|
8238 : "${ac_tmp:=$tmp}"
|
Chris@594
|
8239 { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
|
Chris@350
|
8240 ' 0
|
Chris@350
|
8241 trap 'as_fn_exit 1' 1 2 13 15
|
Chris@350
|
8242 }
|
Chris@350
|
8243 # Create a (secure) tmp directory for tmp files.
|
Chris@350
|
8244
|
Chris@350
|
8245 {
|
Chris@350
|
8246 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
|
Chris@594
|
8247 test -d "$tmp"
|
Chris@350
|
8248 } ||
|
Chris@350
|
8249 {
|
Chris@350
|
8250 tmp=./conf$$-$RANDOM
|
Chris@350
|
8251 (umask 077 && mkdir "$tmp")
|
Chris@594
|
8252 } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
|
Chris@594
|
8253 ac_tmp=$tmp
|
Chris@350
|
8254
|
Chris@350
|
8255 # Set up the scripts for CONFIG_FILES section.
|
Chris@350
|
8256 # No need to generate them if there are no CONFIG_FILES.
|
Chris@350
|
8257 # This happens for instance with `./config.status config.h'.
|
Chris@350
|
8258 if test -n "$CONFIG_FILES"; then
|
Chris@350
|
8259
|
Chris@350
|
8260
|
Chris@350
|
8261 ac_cr=`echo X | tr X '\015'`
|
Chris@350
|
8262 # On cygwin, bash can eat \r inside `` if the user requested igncr.
|
Chris@350
|
8263 # But we know of no other shell where ac_cr would be empty at this
|
Chris@350
|
8264 # point, so we can use a bashism as a fallback.
|
Chris@350
|
8265 if test "x$ac_cr" = x; then
|
Chris@350
|
8266 eval ac_cr=\$\'\\r\'
|
Chris@350
|
8267 fi
|
Chris@350
|
8268 ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
|
Chris@350
|
8269 if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
|
Chris@594
|
8270 ac_cs_awk_cr='\\r'
|
Chris@350
|
8271 else
|
Chris@350
|
8272 ac_cs_awk_cr=$ac_cr
|
Chris@350
|
8273 fi
|
Chris@350
|
8274
|
Chris@594
|
8275 echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
|
Chris@350
|
8276 _ACEOF
|
Chris@350
|
8277
|
Chris@350
|
8278
|
Chris@350
|
8279 {
|
Chris@350
|
8280 echo "cat >conf$$subs.awk <<_ACEOF" &&
|
Chris@350
|
8281 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
|
Chris@350
|
8282 echo "_ACEOF"
|
Chris@350
|
8283 } >conf$$subs.sh ||
|
Chris@594
|
8284 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
|
Chris@594
|
8285 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
|
Chris@350
|
8286 ac_delim='%!_!# '
|
Chris@350
|
8287 for ac_last_try in false false false false false :; do
|
Chris@350
|
8288 . ./conf$$subs.sh ||
|
Chris@594
|
8289 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
|
Chris@350
|
8290
|
Chris@350
|
8291 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
|
Chris@350
|
8292 if test $ac_delim_n = $ac_delim_num; then
|
Chris@350
|
8293 break
|
Chris@350
|
8294 elif $ac_last_try; then
|
Chris@594
|
8295 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
|
Chris@350
|
8296 else
|
Chris@350
|
8297 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
|
Chris@350
|
8298 fi
|
Chris@350
|
8299 done
|
Chris@350
|
8300 rm -f conf$$subs.sh
|
Chris@350
|
8301
|
Chris@350
|
8302 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
Chris@594
|
8303 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
|
Chris@350
|
8304 _ACEOF
|
Chris@350
|
8305 sed -n '
|
Chris@350
|
8306 h
|
Chris@350
|
8307 s/^/S["/; s/!.*/"]=/
|
Chris@350
|
8308 p
|
Chris@350
|
8309 g
|
Chris@350
|
8310 s/^[^!]*!//
|
Chris@350
|
8311 :repl
|
Chris@350
|
8312 t repl
|
Chris@350
|
8313 s/'"$ac_delim"'$//
|
Chris@350
|
8314 t delim
|
Chris@350
|
8315 :nl
|
Chris@350
|
8316 h
|
Chris@350
|
8317 s/\(.\{148\}\)..*/\1/
|
Chris@350
|
8318 t more1
|
Chris@350
|
8319 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
|
Chris@350
|
8320 p
|
Chris@350
|
8321 n
|
Chris@350
|
8322 b repl
|
Chris@350
|
8323 :more1
|
Chris@350
|
8324 s/["\\]/\\&/g; s/^/"/; s/$/"\\/
|
Chris@350
|
8325 p
|
Chris@350
|
8326 g
|
Chris@350
|
8327 s/.\{148\}//
|
Chris@350
|
8328 t nl
|
Chris@350
|
8329 :delim
|
Chris@350
|
8330 h
|
Chris@350
|
8331 s/\(.\{148\}\)..*/\1/
|
Chris@350
|
8332 t more2
|
Chris@350
|
8333 s/["\\]/\\&/g; s/^/"/; s/$/"/
|
Chris@350
|
8334 p
|
Chris@350
|
8335 b
|
Chris@350
|
8336 :more2
|
Chris@350
|
8337 s/["\\]/\\&/g; s/^/"/; s/$/"\\/
|
Chris@350
|
8338 p
|
Chris@350
|
8339 g
|
Chris@350
|
8340 s/.\{148\}//
|
Chris@350
|
8341 t delim
|
Chris@350
|
8342 ' <conf$$subs.awk | sed '
|
Chris@350
|
8343 /^[^""]/{
|
Chris@350
|
8344 N
|
Chris@350
|
8345 s/\n//
|
Chris@350
|
8346 }
|
Chris@350
|
8347 ' >>$CONFIG_STATUS || ac_write_fail=1
|
Chris@350
|
8348 rm -f conf$$subs.awk
|
Chris@350
|
8349 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
Chris@350
|
8350 _ACAWK
|
Chris@594
|
8351 cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
|
Chris@350
|
8352 for (key in S) S_is_set[key] = 1
|
Chris@350
|
8353 FS = ""
|
Chris@350
|
8354
|
Chris@350
|
8355 }
|
Chris@350
|
8356 {
|
Chris@350
|
8357 line = $ 0
|
Chris@350
|
8358 nfields = split(line, field, "@")
|
Chris@350
|
8359 substed = 0
|
Chris@350
|
8360 len = length(field[1])
|
Chris@350
|
8361 for (i = 2; i < nfields; i++) {
|
Chris@350
|
8362 key = field[i]
|
Chris@350
|
8363 keylen = length(key)
|
Chris@350
|
8364 if (S_is_set[key]) {
|
Chris@350
|
8365 value = S[key]
|
Chris@350
|
8366 line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
|
Chris@350
|
8367 len += length(value) + length(field[++i])
|
Chris@350
|
8368 substed = 1
|
Chris@350
|
8369 } else
|
Chris@350
|
8370 len += 1 + keylen
|
Chris@350
|
8371 }
|
Chris@350
|
8372
|
Chris@350
|
8373 print line
|
Chris@350
|
8374 }
|
Chris@350
|
8375
|
Chris@350
|
8376 _ACAWK
|
Chris@350
|
8377 _ACEOF
|
Chris@350
|
8378 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
Chris@350
|
8379 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
|
Chris@350
|
8380 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
|
Chris@350
|
8381 else
|
Chris@350
|
8382 cat
|
Chris@594
|
8383 fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
|
Chris@594
|
8384 || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
|
Chris@350
|
8385 _ACEOF
|
Chris@350
|
8386
|
Chris@594
|
8387 # VPATH may cause trouble with some makes, so we remove sole $(srcdir),
|
Chris@594
|
8388 # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
|
Chris@350
|
8389 # trailing colons and then remove the whole line if VPATH becomes empty
|
Chris@350
|
8390 # (actually we leave an empty line to preserve line numbers).
|
Chris@350
|
8391 if test "x$srcdir" = x.; then
|
Chris@594
|
8392 ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
|
Chris@594
|
8393 h
|
Chris@594
|
8394 s///
|
Chris@594
|
8395 s/^/:/
|
Chris@594
|
8396 s/[ ]*$/:/
|
Chris@594
|
8397 s/:\$(srcdir):/:/g
|
Chris@594
|
8398 s/:\${srcdir}:/:/g
|
Chris@594
|
8399 s/:@srcdir@:/:/g
|
Chris@594
|
8400 s/^:*//
|
Chris@350
|
8401 s/:*$//
|
Chris@594
|
8402 x
|
Chris@594
|
8403 s/\(=[ ]*\).*/\1/
|
Chris@594
|
8404 G
|
Chris@594
|
8405 s/\n//
|
Chris@350
|
8406 s/^[^=]*=[ ]*$//
|
Chris@350
|
8407 }'
|
Chris@350
|
8408 fi
|
Chris@350
|
8409
|
Chris@350
|
8410 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
Chris@350
|
8411 fi # test -n "$CONFIG_FILES"
|
Chris@350
|
8412
|
Chris@350
|
8413
|
Chris@350
|
8414 eval set X " :F $CONFIG_FILES "
|
Chris@350
|
8415 shift
|
Chris@350
|
8416 for ac_tag
|
Chris@350
|
8417 do
|
Chris@350
|
8418 case $ac_tag in
|
Chris@350
|
8419 :[FHLC]) ac_mode=$ac_tag; continue;;
|
Chris@350
|
8420 esac
|
Chris@350
|
8421 case $ac_mode$ac_tag in
|
Chris@350
|
8422 :[FHL]*:*);;
|
Chris@594
|
8423 :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
|
Chris@350
|
8424 :[FH]-) ac_tag=-:-;;
|
Chris@350
|
8425 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
|
Chris@350
|
8426 esac
|
Chris@350
|
8427 ac_save_IFS=$IFS
|
Chris@350
|
8428 IFS=:
|
Chris@350
|
8429 set x $ac_tag
|
Chris@350
|
8430 IFS=$ac_save_IFS
|
Chris@350
|
8431 shift
|
Chris@350
|
8432 ac_file=$1
|
Chris@350
|
8433 shift
|
Chris@350
|
8434
|
Chris@350
|
8435 case $ac_mode in
|
Chris@350
|
8436 :L) ac_source=$1;;
|
Chris@350
|
8437 :[FH])
|
Chris@350
|
8438 ac_file_inputs=
|
Chris@350
|
8439 for ac_f
|
Chris@350
|
8440 do
|
Chris@350
|
8441 case $ac_f in
|
Chris@594
|
8442 -) ac_f="$ac_tmp/stdin";;
|
Chris@350
|
8443 *) # Look for the file first in the build tree, then in the source tree
|
Chris@350
|
8444 # (if the path is not absolute). The absolute path cannot be DOS-style,
|
Chris@350
|
8445 # because $ac_f cannot contain `:'.
|
Chris@350
|
8446 test -f "$ac_f" ||
|
Chris@350
|
8447 case $ac_f in
|
Chris@350
|
8448 [\\/$]*) false;;
|
Chris@350
|
8449 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
|
Chris@350
|
8450 esac ||
|
Chris@594
|
8451 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
|
Chris@350
|
8452 esac
|
Chris@350
|
8453 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
|
Chris@350
|
8454 as_fn_append ac_file_inputs " '$ac_f'"
|
Chris@350
|
8455 done
|
Chris@350
|
8456
|
Chris@350
|
8457 # Let's still pretend it is `configure' which instantiates (i.e., don't
|
Chris@350
|
8458 # use $as_me), people would be surprised to read:
|
Chris@350
|
8459 # /* config.h. Generated by config.status. */
|
Chris@350
|
8460 configure_input='Generated from '`
|
Chris@350
|
8461 $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
|
Chris@350
|
8462 `' by configure.'
|
Chris@350
|
8463 if test x"$ac_file" != x-; then
|
Chris@350
|
8464 configure_input="$ac_file. $configure_input"
|
Chris@350
|
8465 { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
|
Chris@350
|
8466 $as_echo "$as_me: creating $ac_file" >&6;}
|
Chris@350
|
8467 fi
|
Chris@350
|
8468 # Neutralize special characters interpreted by sed in replacement strings.
|
Chris@350
|
8469 case $configure_input in #(
|
Chris@350
|
8470 *\&* | *\|* | *\\* )
|
Chris@350
|
8471 ac_sed_conf_input=`$as_echo "$configure_input" |
|
Chris@350
|
8472 sed 's/[\\\\&|]/\\\\&/g'`;; #(
|
Chris@350
|
8473 *) ac_sed_conf_input=$configure_input;;
|
Chris@350
|
8474 esac
|
Chris@350
|
8475
|
Chris@350
|
8476 case $ac_tag in
|
Chris@594
|
8477 *:-:* | *:-) cat >"$ac_tmp/stdin" \
|
Chris@594
|
8478 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
|
Chris@350
|
8479 esac
|
Chris@350
|
8480 ;;
|
Chris@350
|
8481 esac
|
Chris@350
|
8482
|
Chris@350
|
8483 ac_dir=`$as_dirname -- "$ac_file" ||
|
Chris@350
|
8484 $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
Chris@350
|
8485 X"$ac_file" : 'X\(//\)[^/]' \| \
|
Chris@350
|
8486 X"$ac_file" : 'X\(//\)$' \| \
|
Chris@350
|
8487 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
|
Chris@350
|
8488 $as_echo X"$ac_file" |
|
Chris@350
|
8489 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
Chris@350
|
8490 s//\1/
|
Chris@350
|
8491 q
|
Chris@350
|
8492 }
|
Chris@350
|
8493 /^X\(\/\/\)[^/].*/{
|
Chris@350
|
8494 s//\1/
|
Chris@350
|
8495 q
|
Chris@350
|
8496 }
|
Chris@350
|
8497 /^X\(\/\/\)$/{
|
Chris@350
|
8498 s//\1/
|
Chris@350
|
8499 q
|
Chris@350
|
8500 }
|
Chris@350
|
8501 /^X\(\/\).*/{
|
Chris@350
|
8502 s//\1/
|
Chris@350
|
8503 q
|
Chris@350
|
8504 }
|
Chris@350
|
8505 s/.*/./; q'`
|
Chris@350
|
8506 as_dir="$ac_dir"; as_fn_mkdir_p
|
Chris@350
|
8507 ac_builddir=.
|
Chris@350
|
8508
|
Chris@350
|
8509 case "$ac_dir" in
|
Chris@350
|
8510 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
Chris@350
|
8511 *)
|
Chris@350
|
8512 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
|
Chris@350
|
8513 # A ".." for each directory in $ac_dir_suffix.
|
Chris@350
|
8514 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
|
Chris@350
|
8515 case $ac_top_builddir_sub in
|
Chris@350
|
8516 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
Chris@350
|
8517 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
|
Chris@350
|
8518 esac ;;
|
Chris@350
|
8519 esac
|
Chris@350
|
8520 ac_abs_top_builddir=$ac_pwd
|
Chris@350
|
8521 ac_abs_builddir=$ac_pwd$ac_dir_suffix
|
Chris@350
|
8522 # for backward compatibility:
|
Chris@350
|
8523 ac_top_builddir=$ac_top_build_prefix
|
Chris@350
|
8524
|
Chris@350
|
8525 case $srcdir in
|
Chris@350
|
8526 .) # We are building in place.
|
Chris@350
|
8527 ac_srcdir=.
|
Chris@350
|
8528 ac_top_srcdir=$ac_top_builddir_sub
|
Chris@350
|
8529 ac_abs_top_srcdir=$ac_pwd ;;
|
Chris@350
|
8530 [\\/]* | ?:[\\/]* ) # Absolute name.
|
Chris@350
|
8531 ac_srcdir=$srcdir$ac_dir_suffix;
|
Chris@350
|
8532 ac_top_srcdir=$srcdir
|
Chris@350
|
8533 ac_abs_top_srcdir=$srcdir ;;
|
Chris@350
|
8534 *) # Relative name.
|
Chris@350
|
8535 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
|
Chris@350
|
8536 ac_top_srcdir=$ac_top_build_prefix$srcdir
|
Chris@350
|
8537 ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
|
Chris@350
|
8538 esac
|
Chris@350
|
8539 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
|
Chris@350
|
8540
|
Chris@350
|
8541
|
Chris@350
|
8542 case $ac_mode in
|
Chris@350
|
8543 :F)
|
Chris@350
|
8544 #
|
Chris@350
|
8545 # CONFIG_FILE
|
Chris@350
|
8546 #
|
Chris@350
|
8547
|
Chris@350
|
8548 case $INSTALL in
|
Chris@350
|
8549 [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
|
Chris@350
|
8550 *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
|
Chris@350
|
8551 esac
|
Chris@350
|
8552 ac_MKDIR_P=$MKDIR_P
|
Chris@350
|
8553 case $MKDIR_P in
|
Chris@350
|
8554 [\\/$]* | ?:[\\/]* ) ;;
|
Chris@350
|
8555 */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
|
Chris@350
|
8556 esac
|
Chris@350
|
8557 _ACEOF
|
Chris@350
|
8558
|
Chris@350
|
8559 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
Chris@350
|
8560 # If the template does not know about datarootdir, expand it.
|
Chris@350
|
8561 # FIXME: This hack should be removed a few years after 2.60.
|
Chris@350
|
8562 ac_datarootdir_hack=; ac_datarootdir_seen=
|
Chris@350
|
8563 ac_sed_dataroot='
|
Chris@350
|
8564 /datarootdir/ {
|
Chris@350
|
8565 p
|
Chris@350
|
8566 q
|
Chris@350
|
8567 }
|
Chris@350
|
8568 /@datadir@/p
|
Chris@350
|
8569 /@docdir@/p
|
Chris@350
|
8570 /@infodir@/p
|
Chris@350
|
8571 /@localedir@/p
|
Chris@350
|
8572 /@mandir@/p'
|
Chris@350
|
8573 case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
|
Chris@350
|
8574 *datarootdir*) ac_datarootdir_seen=yes;;
|
Chris@350
|
8575 *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
|
Chris@350
|
8576 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
|
Chris@350
|
8577 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
|
Chris@350
|
8578 _ACEOF
|
Chris@350
|
8579 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
Chris@350
|
8580 ac_datarootdir_hack='
|
Chris@350
|
8581 s&@datadir@&$datadir&g
|
Chris@350
|
8582 s&@docdir@&$docdir&g
|
Chris@350
|
8583 s&@infodir@&$infodir&g
|
Chris@350
|
8584 s&@localedir@&$localedir&g
|
Chris@350
|
8585 s&@mandir@&$mandir&g
|
Chris@350
|
8586 s&\\\${datarootdir}&$datarootdir&g' ;;
|
Chris@350
|
8587 esac
|
Chris@350
|
8588 _ACEOF
|
Chris@350
|
8589
|
Chris@350
|
8590 # Neutralize VPATH when `$srcdir' = `.'.
|
Chris@350
|
8591 # Shell code in configure.ac might set extrasub.
|
Chris@350
|
8592 # FIXME: do we really want to maintain this feature?
|
Chris@350
|
8593 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
Chris@350
|
8594 ac_sed_extra="$ac_vpsub
|
Chris@350
|
8595 $extrasub
|
Chris@350
|
8596 _ACEOF
|
Chris@350
|
8597 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
Chris@350
|
8598 :t
|
Chris@350
|
8599 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b
|
Chris@350
|
8600 s|@configure_input@|$ac_sed_conf_input|;t t
|
Chris@350
|
8601 s&@top_builddir@&$ac_top_builddir_sub&;t t
|
Chris@350
|
8602 s&@top_build_prefix@&$ac_top_build_prefix&;t t
|
Chris@350
|
8603 s&@srcdir@&$ac_srcdir&;t t
|
Chris@350
|
8604 s&@abs_srcdir@&$ac_abs_srcdir&;t t
|
Chris@350
|
8605 s&@top_srcdir@&$ac_top_srcdir&;t t
|
Chris@350
|
8606 s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
|
Chris@350
|
8607 s&@builddir@&$ac_builddir&;t t
|
Chris@350
|
8608 s&@abs_builddir@&$ac_abs_builddir&;t t
|
Chris@350
|
8609 s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
|
Chris@350
|
8610 s&@INSTALL@&$ac_INSTALL&;t t
|
Chris@350
|
8611 s&@MKDIR_P@&$ac_MKDIR_P&;t t
|
Chris@350
|
8612 $ac_datarootdir_hack
|
Chris@350
|
8613 "
|
Chris@594
|
8614 eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
|
Chris@594
|
8615 >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
|
Chris@350
|
8616
|
Chris@350
|
8617 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
|
Chris@594
|
8618 { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
|
Chris@594
|
8619 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
|
Chris@594
|
8620 "$ac_tmp/out"`; test -z "$ac_out"; } &&
|
Chris@350
|
8621 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
|
Chris@594
|
8622 which seems to be undefined. Please make sure it is defined" >&5
|
Chris@350
|
8623 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
|
Chris@594
|
8624 which seems to be undefined. Please make sure it is defined" >&2;}
|
Chris@594
|
8625
|
Chris@594
|
8626 rm -f "$ac_tmp/stdin"
|
Chris@350
|
8627 case $ac_file in
|
Chris@594
|
8628 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
|
Chris@594
|
8629 *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
|
Chris@350
|
8630 esac \
|
Chris@594
|
8631 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
|
Chris@350
|
8632 ;;
|
Chris@350
|
8633
|
Chris@350
|
8634
|
Chris@350
|
8635
|
Chris@350
|
8636 esac
|
Chris@350
|
8637
|
Chris@350
|
8638 done # for ac_tag
|
Chris@350
|
8639
|
Chris@350
|
8640
|
Chris@350
|
8641 as_fn_exit 0
|
Chris@350
|
8642 _ACEOF
|
Chris@350
|
8643 ac_clean_files=$ac_clean_files_save
|
Chris@350
|
8644
|
Chris@350
|
8645 test $ac_write_fail = 0 ||
|
Chris@594
|
8646 as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
|
Chris@350
|
8647
|
Chris@350
|
8648
|
Chris@350
|
8649 # configure is writing to config.log, and then calls config.status.
|
Chris@350
|
8650 # config.status does its own redirection, appending to config.log.
|
Chris@350
|
8651 # Unfortunately, on DOS this fails, as config.log is still kept open
|
Chris@350
|
8652 # by configure, so config.status won't be able to write to it; its
|
Chris@350
|
8653 # output is simply discarded. So we exec the FD to /dev/null,
|
Chris@350
|
8654 # effectively closing config.log, so it can be properly (re)opened and
|
Chris@350
|
8655 # appended to by config.status. When coming back to configure, we
|
Chris@350
|
8656 # need to make the FD available again.
|
Chris@350
|
8657 if test "$no_create" != yes; then
|
Chris@350
|
8658 ac_cs_success=:
|
Chris@350
|
8659 ac_config_status_args=
|
Chris@350
|
8660 test "$silent" = yes &&
|
Chris@350
|
8661 ac_config_status_args="$ac_config_status_args --quiet"
|
Chris@350
|
8662 exec 5>/dev/null
|
Chris@350
|
8663 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
|
Chris@350
|
8664 exec 5>>config.log
|
Chris@350
|
8665 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
|
Chris@350
|
8666 # would make configure fail if this is the last instruction.
|
Chris@594
|
8667 $ac_cs_success || as_fn_exit 1
|
Chris@350
|
8668 fi
|
Chris@517
|
8669
|
Chris@351
|
8670 #
|
Chris@517
|
8671 # CONFIG_SUBDIRS section.
|
Chris@351
|
8672 #
|
Chris@517
|
8673 if test "$no_recursion" != yes; then
|
Chris@517
|
8674
|
Chris@517
|
8675 # Remove --cache-file, --srcdir, and --disable-option-checking arguments
|
Chris@517
|
8676 # so they do not pile up.
|
Chris@517
|
8677 ac_sub_configure_args=
|
Chris@517
|
8678 ac_prev=
|
Chris@517
|
8679 eval "set x $ac_configure_args"
|
Chris@517
|
8680 shift
|
Chris@517
|
8681 for ac_arg
|
Chris@517
|
8682 do
|
Chris@517
|
8683 if test -n "$ac_prev"; then
|
Chris@517
|
8684 ac_prev=
|
Chris@517
|
8685 continue
|
Chris@517
|
8686 fi
|
Chris@517
|
8687 case $ac_arg in
|
Chris@517
|
8688 -cache-file | --cache-file | --cache-fil | --cache-fi \
|
Chris@517
|
8689 | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
|
Chris@517
|
8690 ac_prev=cache_file ;;
|
Chris@517
|
8691 -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
|
Chris@517
|
8692 | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* \
|
Chris@517
|
8693 | --c=*)
|
Chris@517
|
8694 ;;
|
Chris@517
|
8695 --config-cache | -C)
|
Chris@517
|
8696 ;;
|
Chris@517
|
8697 -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
|
Chris@517
|
8698 ac_prev=srcdir ;;
|
Chris@517
|
8699 -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
|
Chris@517
|
8700 ;;
|
Chris@517
|
8701 -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
|
Chris@517
|
8702 ac_prev=prefix ;;
|
Chris@517
|
8703 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
|
Chris@517
|
8704 ;;
|
Chris@517
|
8705 --disable-option-checking)
|
Chris@517
|
8706 ;;
|
Chris@517
|
8707 *)
|
Chris@517
|
8708 case $ac_arg in
|
Chris@517
|
8709 *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
|
Chris@351
|
8710 esac
|
Chris@517
|
8711 as_fn_append ac_sub_configure_args " '$ac_arg'" ;;
|
Chris@351
|
8712 esac
|
Chris@351
|
8713 done
|
Chris@351
|
8714
|
Chris@517
|
8715 # Always prepend --prefix to ensure using the same prefix
|
Chris@517
|
8716 # in subdir configurations.
|
Chris@517
|
8717 ac_arg="--prefix=$prefix"
|
Chris@517
|
8718 case $ac_arg in
|
Chris@517
|
8719 *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
|
Chris@517
|
8720 esac
|
Chris@517
|
8721 ac_sub_configure_args="'$ac_arg' $ac_sub_configure_args"
|
Chris@517
|
8722
|
Chris@517
|
8723 # Pass --silent
|
Chris@517
|
8724 if test "$silent" = yes; then
|
Chris@517
|
8725 ac_sub_configure_args="--silent $ac_sub_configure_args"
|
Chris@351
|
8726 fi
|
Chris@517
|
8727
|
Chris@517
|
8728 # Always prepend --disable-option-checking to silence warnings, since
|
Chris@517
|
8729 # different subdirs can have different --enable and --with options.
|
Chris@517
|
8730 ac_sub_configure_args="--disable-option-checking $ac_sub_configure_args"
|
Chris@517
|
8731
|
Chris@517
|
8732 ac_popdir=`pwd`
|
Chris@517
|
8733 for ac_dir in : $subdirs; do test "x$ac_dir" = x: && continue
|
Chris@517
|
8734
|
Chris@517
|
8735 # Do not complain, so a configure script can configure whichever
|
Chris@517
|
8736 # parts of a large source tree are present.
|
Chris@517
|
8737 test -d "$srcdir/$ac_dir" || continue
|
Chris@517
|
8738
|
Chris@517
|
8739 ac_msg="=== configuring in $ac_dir (`pwd`/$ac_dir)"
|
Chris@517
|
8740 $as_echo "$as_me:${as_lineno-$LINENO}: $ac_msg" >&5
|
Chris@517
|
8741 $as_echo "$ac_msg" >&6
|
Chris@517
|
8742 as_dir="$ac_dir"; as_fn_mkdir_p
|
Chris@517
|
8743 ac_builddir=.
|
Chris@351
|
8744
|
Chris@351
|
8745 case "$ac_dir" in
|
Chris@351
|
8746 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
Chris@351
|
8747 *)
|
Chris@351
|
8748 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
|
Chris@351
|
8749 # A ".." for each directory in $ac_dir_suffix.
|
Chris@351
|
8750 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
|
Chris@351
|
8751 case $ac_top_builddir_sub in
|
Chris@351
|
8752 "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
Chris@351
|
8753 *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
|
Chris@351
|
8754 esac ;;
|
Chris@351
|
8755 esac
|
Chris@351
|
8756 ac_abs_top_builddir=$ac_pwd
|
Chris@351
|
8757 ac_abs_builddir=$ac_pwd$ac_dir_suffix
|
Chris@351
|
8758 # for backward compatibility:
|
Chris@351
|
8759 ac_top_builddir=$ac_top_build_prefix
|
Chris@351
|
8760
|
Chris@351
|
8761 case $srcdir in
|
Chris@351
|
8762 .) # We are building in place.
|
Chris@351
|
8763 ac_srcdir=.
|
Chris@351
|
8764 ac_top_srcdir=$ac_top_builddir_sub
|
Chris@351
|
8765 ac_abs_top_srcdir=$ac_pwd ;;
|
Chris@351
|
8766 [\\/]* | ?:[\\/]* ) # Absolute name.
|
Chris@351
|
8767 ac_srcdir=$srcdir$ac_dir_suffix;
|
Chris@351
|
8768 ac_top_srcdir=$srcdir
|
Chris@351
|
8769 ac_abs_top_srcdir=$srcdir ;;
|
Chris@351
|
8770 *) # Relative name.
|
Chris@351
|
8771 ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
|
Chris@351
|
8772 ac_top_srcdir=$ac_top_build_prefix$srcdir
|
Chris@351
|
8773 ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
|
Chris@351
|
8774 esac
|
Chris@351
|
8775 ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
|
Chris@351
|
8776
|
Chris@351
|
8777
|
Chris@517
|
8778 cd "$ac_dir"
|
Chris@517
|
8779
|
Chris@517
|
8780 # Check for guested configure; otherwise get Cygnus style configure.
|
Chris@517
|
8781 if test -f "$ac_srcdir/configure.gnu"; then
|
Chris@517
|
8782 ac_sub_configure=$ac_srcdir/configure.gnu
|
Chris@517
|
8783 elif test -f "$ac_srcdir/configure"; then
|
Chris@517
|
8784 ac_sub_configure=$ac_srcdir/configure
|
Chris@517
|
8785 elif test -f "$ac_srcdir/configure.in"; then
|
Chris@517
|
8786 # This should be Cygnus configure.
|
Chris@517
|
8787 ac_sub_configure=$ac_aux_dir/configure
|
Chris@517
|
8788 else
|
Chris@517
|
8789 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: no configuration information is in $ac_dir" >&5
|
Chris@517
|
8790 $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2;}
|
Chris@517
|
8791 ac_sub_configure=
|
Chris@517
|
8792 fi
|
Chris@517
|
8793
|
Chris@517
|
8794 # The recursion is here.
|
Chris@517
|
8795 if test -n "$ac_sub_configure"; then
|
Chris@517
|
8796 # Make the cache file name correct relative to the subdirectory.
|
Chris@517
|
8797 case $cache_file in
|
Chris@517
|
8798 [\\/]* | ?:[\\/]* ) ac_sub_cache_file=$cache_file ;;
|
Chris@517
|
8799 *) # Relative name.
|
Chris@517
|
8800 ac_sub_cache_file=$ac_top_build_prefix$cache_file ;;
|
Chris@517
|
8801 esac
|
Chris@517
|
8802
|
Chris@517
|
8803 { $as_echo "$as_me:${as_lineno-$LINENO}: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&5
|
Chris@517
|
8804 $as_echo "$as_me: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;}
|
Chris@517
|
8805 # The eval makes quoting arguments work.
|
Chris@517
|
8806 eval "\$SHELL \"\$ac_sub_configure\" $ac_sub_configure_args \
|
Chris@517
|
8807 --cache-file=\"\$ac_sub_cache_file\" --srcdir=\"\$ac_srcdir\"" ||
|
Chris@594
|
8808 as_fn_error $? "$ac_sub_configure failed for $ac_dir" "$LINENO" 5
|
Chris@517
|
8809 fi
|
Chris@517
|
8810
|
Chris@517
|
8811 cd "$ac_popdir"
|
Chris@517
|
8812 done
|
Chris@351
|
8813 fi
|
Chris@351
|
8814 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
|
Chris@351
|
8815 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
|
Chris@351
|
8816 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
|
Chris@351
|
8817 fi
|
Chris@351
|
8818
|
Chris@350
|
8819
|
Chris@521
|
8820 if ! $QMAKE -r sonic-visualiser.pro; then
|
Chris@594
|
8821 as_fn_error $? "qmake failed: Command was \"$QMAKE -r\"" "$LINENO" 5
|
Chris@350
|
8822 fi
|
Chris@350
|
8823
|
Chris@350
|
8824 { $as_echo "$as_me:${as_lineno-$LINENO}:
|
Chris@350
|
8825
|
Chris@350
|
8826 Configuration complete.
|
Chris@350
|
8827 Please check the above messages for any warnings that you
|
Chris@350
|
8828 might care about, and then run \"make\".
|
Chris@350
|
8829
|
Chris@350
|
8830 The file config.pri contains the configuration settings for
|
Chris@350
|
8831 qmake. If you want to adjust these by hand, edit config.pri
|
Chris@548
|
8832 and run \"$QMAKE -r\" again to regenerate the Makefile.
|
Chris@350
|
8833 " >&5
|
Chris@350
|
8834 $as_echo "$as_me:
|
Chris@350
|
8835
|
Chris@350
|
8836 Configuration complete.
|
Chris@350
|
8837 Please check the above messages for any warnings that you
|
Chris@350
|
8838 might care about, and then run \"make\".
|
Chris@350
|
8839
|
Chris@350
|
8840 The file config.pri contains the configuration settings for
|
Chris@350
|
8841 qmake. If you want to adjust these by hand, edit config.pri
|
Chris@548
|
8842 and run \"$QMAKE -r\" again to regenerate the Makefile.
|
Chris@350
|
8843 " >&6;}
|