Merge lp:~spud/spud/libtool-fixes-20140425 into lp:spud

Proposed by Tim Greaves
Status: Needs review
Proposed branch: lp:~spud/spud/libtool-fixes-20140425
Merge into: lp:spud
Diff against target: 2093 lines (+267/-235)
2 files modified
aclocal.m4 (+3/-2)
configure (+264/-233)
To merge this branch: bzr merge lp:~spud/spud/libtool-fixes-20140425
Reviewer Review Type Date Requested Status
Spud developers sanity check Pending
Review via email: mp+217249@code.launchpad.net

Description of the change

Hopefully a trivial fix: as per discussion at:
http://lists.gnu.org/archive/html/bug-libtool/2012-03/msg00004.html

libtool generation breaks for wrapped gfortran >=4.6 in some cases. This is a different fix to the one proposed in the link above but seems to work; tested on Archer.

To post a comment you must log in.
Revision history for this message
Tim Greaves (tim-greaves) wrote :

Couple of months since this was proposed; any objections/thoughts from the spud team?

Unmerged revisions

537. By Tim Greaves

As per discussion at:
http://lists.gnu.org/archive/html/bug-libtool/2012-03/msg00004.html

libtool generation breaks for wrapped gfortran >=4.6 in some cases. This is
a different fix to the one proposed in the link above but seems to work;
tested on Archer with the Cray ftn wrapper around gfortran.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'aclocal.m4'
2--- aclocal.m4 2012-01-25 14:00:49 +0000
3+++ aclocal.m4 2014-04-25 14:03:59 +0000
4@@ -6927,10 +6927,11 @@
5 case ${prev}${p} in
6
7 -L* | -R* | -l*)
8- # Some compilers place space between "-{L,R}" and the path.
9+ # Some compilers place space between "-{L,R,l}" and the path.
10 # Remove the space.
11 if test $p = "-L" ||
12- test $p = "-R"; then
13+ test $p = "-R" ||
14+ test $p = "-l"; then
15 prev=$p
16 continue
17 fi
18
19=== modified file 'configure'
20--- configure 2012-02-01 13:15:01 +0000
21+++ configure 2014-04-25 14:03:59 +0000
22@@ -1,6 +1,6 @@
23 #! /bin/sh
24 # Guess values for system-dependent variables and create Makefiles.
25-# Generated by GNU Autoconf 2.67.
26+# Generated by GNU Autoconf 2.68.
27 #
28 #
29 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
30@@ -89,6 +89,7 @@
31 IFS=" "" $as_nl"
32
33 # Find who we are. Look in the path if we contain no directory separator.
34+as_myself=
35 case $0 in #((
36 *[\\/]* ) as_myself=$0 ;;
37 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
38@@ -222,11 +223,18 @@
39 # We cannot yet assume a decent shell, so we have to provide a
40 # neutralization value for shells without unset; and this also
41 # works around shells that cannot unset nonexistent variables.
42+ # Preserve -v and -x to the replacement shell.
43 BASH_ENV=/dev/null
44 ENV=/dev/null
45 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
46 export CONFIG_SHELL
47- exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
48+ case $- in # ((((
49+ *v*x* | *x*v* ) as_opts=-vx ;;
50+ *v* ) as_opts=-v ;;
51+ *x* ) as_opts=-x ;;
52+ * ) as_opts= ;;
53+ esac
54+ exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
55 fi
56
57 if test x$as_have_required = xno; then :
58@@ -1134,7 +1142,7 @@
59 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
60 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
61 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
62- : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
63+ : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
64 ;;
65
66 esac
67@@ -1445,7 +1453,7 @@
68 if $ac_init_version; then
69 cat <<\_ACEOF
70 configure
71-generated by GNU Autoconf 2.67
72+generated by GNU Autoconf 2.68
73
74 Copyright (C) 2010 Free Software Foundation, Inc.
75 This configure script is free software; the Free Software Foundation
76@@ -1491,7 +1499,7 @@
77
78 ac_retval=1
79 fi
80- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
81+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
82 as_fn_set_status $ac_retval
83
84 } # ac_fn_c_try_compile
85@@ -1537,7 +1545,7 @@
86 # interfere with the next link command; also delete a directory that is
87 # left behind by Apple's compiler. We do this before executing the actions.
88 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
89- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
90+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
91 as_fn_set_status $ac_retval
92
93 } # ac_fn_c_try_link
94@@ -1551,7 +1559,7 @@
95 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
96 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
97 $as_echo_n "checking for $2... " >&6; }
98-if eval "test \"\${$3+set}\"" = set; then :
99+if eval \${$3+:} false; then :
100 $as_echo_n "(cached) " >&6
101 else
102 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
103@@ -1569,7 +1577,7 @@
104 eval ac_res=\$$3
105 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
106 $as_echo "$ac_res" >&6; }
107- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
108+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
109
110 } # ac_fn_c_check_header_compile
111
112@@ -1605,7 +1613,7 @@
113
114 ac_retval=1
115 fi
116- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
117+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
118 as_fn_set_status $ac_retval
119
120 } # ac_fn_c_try_cpp
121@@ -1647,7 +1655,7 @@
122 ac_retval=$ac_status
123 fi
124 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
125- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
126+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
127 as_fn_set_status $ac_retval
128
129 } # ac_fn_c_try_run
130@@ -1660,7 +1668,7 @@
131 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
132 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
133 $as_echo_n "checking for $2... " >&6; }
134-if eval "test \"\${$3+set}\"" = set; then :
135+if eval \${$3+:} false; then :
136 $as_echo_n "(cached) " >&6
137 else
138 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
139@@ -1715,7 +1723,7 @@
140 eval ac_res=\$$3
141 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
142 $as_echo "$ac_res" >&6; }
143- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
144+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
145
146 } # ac_fn_c_check_func
147
148@@ -1752,7 +1760,7 @@
149
150 ac_retval=1
151 fi
152- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
153+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
154 as_fn_set_status $ac_retval
155
156 } # ac_fn_cxx_try_compile
157@@ -1789,7 +1797,7 @@
158
159 ac_retval=1
160 fi
161- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
162+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
163 as_fn_set_status $ac_retval
164
165 } # ac_fn_cxx_try_cpp
166@@ -1835,7 +1843,7 @@
167 # interfere with the next link command; also delete a directory that is
168 # left behind by Apple's compiler. We do this before executing the actions.
169 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
170- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
171+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
172 as_fn_set_status $ac_retval
173
174 } # ac_fn_cxx_try_link
175@@ -1873,7 +1881,7 @@
176
177 ac_retval=1
178 fi
179- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
180+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
181 as_fn_set_status $ac_retval
182
183 } # ac_fn_fc_try_compile
184@@ -1919,7 +1927,7 @@
185 # interfere with the next link command; also delete a directory that is
186 # left behind by Apple's compiler. We do this before executing the actions.
187 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
188- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
189+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
190 as_fn_set_status $ac_retval
191
192 } # ac_fn_fc_try_link
193@@ -1957,7 +1965,7 @@
194
195 ac_retval=1
196 fi
197- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
198+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
199 as_fn_set_status $ac_retval
200
201 } # ac_fn_f77_try_compile
202@@ -2003,7 +2011,7 @@
203 # interfere with the next link command; also delete a directory that is
204 # left behind by Apple's compiler. We do this before executing the actions.
205 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
206- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
207+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
208 as_fn_set_status $ac_retval
209
210 } # ac_fn_f77_try_link
211@@ -2181,7 +2189,7 @@
212 rm -f conftest.val
213
214 fi
215- eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
216+ eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
217 as_fn_set_status $ac_retval
218
219 } # ac_fn_c_compute_int
220@@ -2190,7 +2198,7 @@
221 running configure, to aid debugging if configure makes a mistake.
222
223 It was created by $as_me, which was
224-generated by GNU Autoconf 2.67. Invocation command line was
225+generated by GNU Autoconf 2.68. Invocation command line was
226
227 $ $0 $@
228
229@@ -2448,7 +2456,7 @@
230 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
231 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
232 as_fn_error $? "failed to load site script $ac_site_file
233-See \`config.log' for more details" "$LINENO" 5 ; }
234+See \`config.log' for more details" "$LINENO" 5; }
235 fi
236 done
237
238@@ -2598,7 +2606,7 @@
239
240 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
241 $as_echo_n "checking build system type... " >&6; }
242-if test "${ac_cv_build+set}" = set; then :
243+if ${ac_cv_build+:} false; then :
244 $as_echo_n "(cached) " >&6
245 else
246 ac_build_alias=$build_alias
247@@ -2614,7 +2622,7 @@
248 $as_echo "$ac_cv_build" >&6; }
249 case $ac_cv_build in
250 *-*-*) ;;
251-*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5 ;;
252+*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
253 esac
254 build=$ac_cv_build
255 ac_save_IFS=$IFS; IFS='-'
256@@ -2632,7 +2640,7 @@
257
258 { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
259 $as_echo_n "checking host system type... " >&6; }
260-if test "${ac_cv_host+set}" = set; then :
261+if ${ac_cv_host+:} false; then :
262 $as_echo_n "(cached) " >&6
263 else
264 if test "x$host_alias" = x; then
265@@ -2647,7 +2655,7 @@
266 $as_echo "$ac_cv_host" >&6; }
267 case $ac_cv_host in
268 *-*-*) ;;
269-*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5 ;;
270+*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
271 esac
272 host=$ac_cv_host
273 ac_save_IFS=$IFS; IFS='-'
274@@ -2742,7 +2750,7 @@
275 set dummy ${ac_tool_prefix}gcc; ac_word=$2
276 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
277 $as_echo_n "checking for $ac_word... " >&6; }
278-if test "${ac_cv_prog_CC+set}" = set; then :
279+if ${ac_cv_prog_CC+:} false; then :
280 $as_echo_n "(cached) " >&6
281 else
282 if test -n "$CC"; then
283@@ -2782,7 +2790,7 @@
284 set dummy gcc; ac_word=$2
285 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
286 $as_echo_n "checking for $ac_word... " >&6; }
287-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
288+if ${ac_cv_prog_ac_ct_CC+:} false; then :
289 $as_echo_n "(cached) " >&6
290 else
291 if test -n "$ac_ct_CC"; then
292@@ -2835,7 +2843,7 @@
293 set dummy ${ac_tool_prefix}cc; ac_word=$2
294 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
295 $as_echo_n "checking for $ac_word... " >&6; }
296-if test "${ac_cv_prog_CC+set}" = set; then :
297+if ${ac_cv_prog_CC+:} false; then :
298 $as_echo_n "(cached) " >&6
299 else
300 if test -n "$CC"; then
301@@ -2875,7 +2883,7 @@
302 set dummy cc; ac_word=$2
303 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
304 $as_echo_n "checking for $ac_word... " >&6; }
305-if test "${ac_cv_prog_CC+set}" = set; then :
306+if ${ac_cv_prog_CC+:} false; then :
307 $as_echo_n "(cached) " >&6
308 else
309 if test -n "$CC"; then
310@@ -2934,7 +2942,7 @@
311 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
312 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
313 $as_echo_n "checking for $ac_word... " >&6; }
314-if test "${ac_cv_prog_CC+set}" = set; then :
315+if ${ac_cv_prog_CC+:} false; then :
316 $as_echo_n "(cached) " >&6
317 else
318 if test -n "$CC"; then
319@@ -2978,7 +2986,7 @@
320 set dummy $ac_prog; ac_word=$2
321 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
322 $as_echo_n "checking for $ac_word... " >&6; }
323-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
324+if ${ac_cv_prog_ac_ct_CC+:} false; then :
325 $as_echo_n "(cached) " >&6
326 else
327 if test -n "$ac_ct_CC"; then
328@@ -3033,7 +3041,7 @@
329 test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
330 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
331 as_fn_error $? "no acceptable C compiler found in \$PATH
332-See \`config.log' for more details" "$LINENO" 5 ; }
333+See \`config.log' for more details" "$LINENO" 5; }
334
335 # Provide some information about the compiler.
336 $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
337@@ -3148,7 +3156,7 @@
338 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
339 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
340 as_fn_error 77 "C compiler cannot create executables
341-See \`config.log' for more details" "$LINENO" 5 ; }
342+See \`config.log' for more details" "$LINENO" 5; }
343 else
344 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
345 $as_echo "yes" >&6; }
346@@ -3191,7 +3199,7 @@
347 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
348 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
349 as_fn_error $? "cannot compute suffix of executables: cannot compile and link
350-See \`config.log' for more details" "$LINENO" 5 ; }
351+See \`config.log' for more details" "$LINENO" 5; }
352 fi
353 rm -f conftest conftest$ac_cv_exeext
354 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
355@@ -3250,7 +3258,7 @@
356 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
357 as_fn_error $? "cannot run C compiled programs.
358 If you meant to cross compile, use \`--host'.
359-See \`config.log' for more details" "$LINENO" 5 ; }
360+See \`config.log' for more details" "$LINENO" 5; }
361 fi
362 fi
363 fi
364@@ -3261,7 +3269,7 @@
365 ac_clean_files=$ac_clean_files_save
366 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
367 $as_echo_n "checking for suffix of object files... " >&6; }
368-if test "${ac_cv_objext+set}" = set; then :
369+if ${ac_cv_objext+:} false; then :
370 $as_echo_n "(cached) " >&6
371 else
372 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
373@@ -3302,7 +3310,7 @@
374 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
375 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
376 as_fn_error $? "cannot compute suffix of object files: cannot compile
377-See \`config.log' for more details" "$LINENO" 5 ; }
378+See \`config.log' for more details" "$LINENO" 5; }
379 fi
380 rm -f conftest.$ac_cv_objext conftest.$ac_ext
381 fi
382@@ -3312,7 +3320,7 @@
383 ac_objext=$OBJEXT
384 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
385 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
386-if test "${ac_cv_c_compiler_gnu+set}" = set; then :
387+if ${ac_cv_c_compiler_gnu+:} false; then :
388 $as_echo_n "(cached) " >&6
389 else
390 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
391@@ -3349,7 +3357,7 @@
392 ac_save_CFLAGS=$CFLAGS
393 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
394 $as_echo_n "checking whether $CC accepts -g... " >&6; }
395-if test "${ac_cv_prog_cc_g+set}" = set; then :
396+if ${ac_cv_prog_cc_g+:} false; then :
397 $as_echo_n "(cached) " >&6
398 else
399 ac_save_c_werror_flag=$ac_c_werror_flag
400@@ -3427,7 +3435,7 @@
401 fi
402 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
403 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
404-if test "${ac_cv_prog_cc_c89+set}" = set; then :
405+if ${ac_cv_prog_cc_c89+:} false; then :
406 $as_echo_n "(cached) " >&6
407 else
408 ac_cv_prog_cc_c89=no
409@@ -3524,7 +3532,7 @@
410
411 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
412 $as_echo_n "checking for a sed that does not truncate output... " >&6; }
413-if test "${ac_cv_path_SED+set}" = set; then :
414+if ${ac_cv_path_SED+:} false; then :
415 $as_echo_n "(cached) " >&6
416 else
417 ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
418@@ -3606,7 +3614,7 @@
419
420 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
421 $as_echo_n "checking for grep that handles long lines and -e... " >&6; }
422-if test "${ac_cv_path_GREP+set}" = set; then :
423+if ${ac_cv_path_GREP+:} false; then :
424 $as_echo_n "(cached) " >&6
425 else
426 if test -z "$GREP"; then
427@@ -3669,7 +3677,7 @@
428
429 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
430 $as_echo_n "checking for egrep... " >&6; }
431-if test "${ac_cv_path_EGREP+set}" = set; then :
432+if ${ac_cv_path_EGREP+:} false; then :
433 $as_echo_n "(cached) " >&6
434 else
435 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
436@@ -3736,7 +3744,7 @@
437
438 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5
439 $as_echo_n "checking for fgrep... " >&6; }
440-if test "${ac_cv_path_FGREP+set}" = set; then :
441+if ${ac_cv_path_FGREP+:} false; then :
442 $as_echo_n "(cached) " >&6
443 else
444 if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1
445@@ -3867,7 +3875,7 @@
446 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
447 $as_echo_n "checking for non-GNU ld... " >&6; }
448 fi
449-if test "${lt_cv_path_LD+set}" = set; then :
450+if ${lt_cv_path_LD+:} false; then :
451 $as_echo_n "(cached) " >&6
452 else
453 if test -z "$LD"; then
454@@ -3907,7 +3915,7 @@
455 test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
456 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
457 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
458-if test "${lt_cv_prog_gnu_ld+set}" = set; then :
459+if ${lt_cv_prog_gnu_ld+:} false; then :
460 $as_echo_n "(cached) " >&6
461 else
462 # I'd rather use --version here, but apparently some GNU lds only accept -v.
463@@ -3934,7 +3942,7 @@
464
465 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5
466 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; }
467-if test "${lt_cv_path_NM+set}" = set; then :
468+if ${lt_cv_path_NM+:} false; then :
469 $as_echo_n "(cached) " >&6
470 else
471 if test -n "$NM"; then
472@@ -3997,7 +4005,7 @@
473 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
474 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
475 $as_echo_n "checking for $ac_word... " >&6; }
476-if test "${ac_cv_prog_DUMPBIN+set}" = set; then :
477+if ${ac_cv_prog_DUMPBIN+:} false; then :
478 $as_echo_n "(cached) " >&6
479 else
480 if test -n "$DUMPBIN"; then
481@@ -4041,7 +4049,7 @@
482 set dummy $ac_prog; ac_word=$2
483 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
484 $as_echo_n "checking for $ac_word... " >&6; }
485-if test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then :
486+if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then :
487 $as_echo_n "(cached) " >&6
488 else
489 if test -n "$ac_ct_DUMPBIN"; then
490@@ -4113,7 +4121,7 @@
491
492 { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5
493 $as_echo_n "checking the name lister ($NM) interface... " >&6; }
494-if test "${lt_cv_nm_interface+set}" = set; then :
495+if ${lt_cv_nm_interface+:} false; then :
496 $as_echo_n "(cached) " >&6
497 else
498 lt_cv_nm_interface="BSD nm"
499@@ -4148,7 +4156,7 @@
500 # find the maximum length of command line arguments
501 { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5
502 $as_echo_n "checking the maximum length of command line arguments... " >&6; }
503-if test "${lt_cv_sys_max_cmd_len+set}" = set; then :
504+if ${lt_cv_sys_max_cmd_len+:} false; then :
505 $as_echo_n "(cached) " >&6
506 else
507 i=0
508@@ -4345,7 +4353,7 @@
509
510 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5
511 $as_echo_n "checking how to convert $build file names to $host format... " >&6; }
512-if test "${lt_cv_to_host_file_cmd+set}" = set; then :
513+if ${lt_cv_to_host_file_cmd+:} false; then :
514 $as_echo_n "(cached) " >&6
515 else
516 case $host in
517@@ -4392,7 +4400,7 @@
518
519 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5
520 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; }
521-if test "${lt_cv_to_tool_file_cmd+set}" = set; then :
522+if ${lt_cv_to_tool_file_cmd+:} false; then :
523 $as_echo_n "(cached) " >&6
524 else
525 #assume ordinary cross tools, or native build.
526@@ -4419,7 +4427,7 @@
527
528 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5
529 $as_echo_n "checking for $LD option to reload object files... " >&6; }
530-if test "${lt_cv_ld_reload_flag+set}" = set; then :
531+if ${lt_cv_ld_reload_flag+:} false; then :
532 $as_echo_n "(cached) " >&6
533 else
534 lt_cv_ld_reload_flag='-r'
535@@ -4460,7 +4468,7 @@
536 set dummy ${ac_tool_prefix}objdump; ac_word=$2
537 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
538 $as_echo_n "checking for $ac_word... " >&6; }
539-if test "${ac_cv_prog_OBJDUMP+set}" = set; then :
540+if ${ac_cv_prog_OBJDUMP+:} false; then :
541 $as_echo_n "(cached) " >&6
542 else
543 if test -n "$OBJDUMP"; then
544@@ -4500,7 +4508,7 @@
545 set dummy objdump; ac_word=$2
546 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
547 $as_echo_n "checking for $ac_word... " >&6; }
548-if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then :
549+if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :
550 $as_echo_n "(cached) " >&6
551 else
552 if test -n "$ac_ct_OBJDUMP"; then
553@@ -4559,7 +4567,7 @@
554
555 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5
556 $as_echo_n "checking how to recognize dependent libraries... " >&6; }
557-if test "${lt_cv_deplibs_check_method+set}" = set; then :
558+if ${lt_cv_deplibs_check_method+:} false; then :
559 $as_echo_n "(cached) " >&6
560 else
561 lt_cv_file_magic_cmd='$MAGIC_CMD'
562@@ -4806,7 +4814,7 @@
563 set dummy ${ac_tool_prefix}dlltool; ac_word=$2
564 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
565 $as_echo_n "checking for $ac_word... " >&6; }
566-if test "${ac_cv_prog_DLLTOOL+set}" = set; then :
567+if ${ac_cv_prog_DLLTOOL+:} false; then :
568 $as_echo_n "(cached) " >&6
569 else
570 if test -n "$DLLTOOL"; then
571@@ -4846,7 +4854,7 @@
572 set dummy dlltool; ac_word=$2
573 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
574 $as_echo_n "checking for $ac_word... " >&6; }
575-if test "${ac_cv_prog_ac_ct_DLLTOOL+set}" = set; then :
576+if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then :
577 $as_echo_n "(cached) " >&6
578 else
579 if test -n "$ac_ct_DLLTOOL"; then
580@@ -4906,7 +4914,7 @@
581
582 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5
583 $as_echo_n "checking how to associate runtime and link libraries... " >&6; }
584-if test "${lt_cv_sharedlib_from_linklib_cmd+set}" = set; then :
585+if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then :
586 $as_echo_n "(cached) " >&6
587 else
588 lt_cv_sharedlib_from_linklib_cmd='unknown'
589@@ -4950,7 +4958,7 @@
590 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
591 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
592 $as_echo_n "checking for $ac_word... " >&6; }
593-if test "${ac_cv_prog_AR+set}" = set; then :
594+if ${ac_cv_prog_AR+:} false; then :
595 $as_echo_n "(cached) " >&6
596 else
597 if test -n "$AR"; then
598@@ -4994,7 +5002,7 @@
599 set dummy $ac_prog; ac_word=$2
600 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
601 $as_echo_n "checking for $ac_word... " >&6; }
602-if test "${ac_cv_prog_ac_ct_AR+set}" = set; then :
603+if ${ac_cv_prog_ac_ct_AR+:} false; then :
604 $as_echo_n "(cached) " >&6
605 else
606 if test -n "$ac_ct_AR"; then
607@@ -5058,7 +5066,7 @@
608
609 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5
610 $as_echo_n "checking for archiver @FILE support... " >&6; }
611-if test "${lt_cv_ar_at_file+set}" = set; then :
612+if ${lt_cv_ar_at_file+:} false; then :
613 $as_echo_n "(cached) " >&6
614 else
615 lt_cv_ar_at_file=no
616@@ -5119,7 +5127,7 @@
617 set dummy ${ac_tool_prefix}strip; ac_word=$2
618 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
619 $as_echo_n "checking for $ac_word... " >&6; }
620-if test "${ac_cv_prog_STRIP+set}" = set; then :
621+if ${ac_cv_prog_STRIP+:} false; then :
622 $as_echo_n "(cached) " >&6
623 else
624 if test -n "$STRIP"; then
625@@ -5159,7 +5167,7 @@
626 set dummy strip; ac_word=$2
627 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
628 $as_echo_n "checking for $ac_word... " >&6; }
629-if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
630+if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
631 $as_echo_n "(cached) " >&6
632 else
633 if test -n "$ac_ct_STRIP"; then
634@@ -5218,7 +5226,7 @@
635 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
636 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
637 $as_echo_n "checking for $ac_word... " >&6; }
638-if test "${ac_cv_prog_RANLIB+set}" = set; then :
639+if ${ac_cv_prog_RANLIB+:} false; then :
640 $as_echo_n "(cached) " >&6
641 else
642 if test -n "$RANLIB"; then
643@@ -5258,7 +5266,7 @@
644 set dummy ranlib; ac_word=$2
645 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
646 $as_echo_n "checking for $ac_word... " >&6; }
647-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
648+if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
649 $as_echo_n "(cached) " >&6
650 else
651 if test -n "$ac_ct_RANLIB"; then
652@@ -5362,7 +5370,7 @@
653 set dummy $ac_prog; ac_word=$2
654 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
655 $as_echo_n "checking for $ac_word... " >&6; }
656-if test "${ac_cv_prog_AWK+set}" = set; then :
657+if ${ac_cv_prog_AWK+:} false; then :
658 $as_echo_n "(cached) " >&6
659 else
660 if test -n "$AWK"; then
661@@ -5429,7 +5437,7 @@
662 # Check for command to grab the raw symbol name followed by C symbol from nm.
663 { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5
664 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; }
665-if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then :
666+if ${lt_cv_sys_global_symbol_pipe+:} false; then :
667 $as_echo_n "(cached) " >&6
668 else
669
670@@ -5862,7 +5870,7 @@
671 CFLAGS="$CFLAGS -belf"
672 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5
673 $as_echo_n "checking whether the C compiler needs -belf... " >&6; }
674-if test "${lt_cv_cc_needs_belf+set}" = set; then :
675+if ${lt_cv_cc_needs_belf+:} false; then :
676 $as_echo_n "(cached) " >&6
677 else
678 ac_ext=c
679@@ -5935,7 +5943,7 @@
680 set dummy ${ac_tool_prefix}mt; ac_word=$2
681 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
682 $as_echo_n "checking for $ac_word... " >&6; }
683-if test "${ac_cv_prog_MANIFEST_TOOL+set}" = set; then :
684+if ${ac_cv_prog_MANIFEST_TOOL+:} false; then :
685 $as_echo_n "(cached) " >&6
686 else
687 if test -n "$MANIFEST_TOOL"; then
688@@ -5975,7 +5983,7 @@
689 set dummy mt; ac_word=$2
690 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
691 $as_echo_n "checking for $ac_word... " >&6; }
692-if test "${ac_cv_prog_ac_ct_MANIFEST_TOOL+set}" = set; then :
693+if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then :
694 $as_echo_n "(cached) " >&6
695 else
696 if test -n "$ac_ct_MANIFEST_TOOL"; then
697@@ -6025,7 +6033,7 @@
698 test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt
699 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5
700 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; }
701-if test "${lt_cv_path_mainfest_tool+set}" = set; then :
702+if ${lt_cv_path_mainfest_tool+:} false; then :
703 $as_echo_n "(cached) " >&6
704 else
705 lt_cv_path_mainfest_tool=no
706@@ -6055,7 +6063,7 @@
707 set dummy ${ac_tool_prefix}dsymutil; ac_word=$2
708 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
709 $as_echo_n "checking for $ac_word... " >&6; }
710-if test "${ac_cv_prog_DSYMUTIL+set}" = set; then :
711+if ${ac_cv_prog_DSYMUTIL+:} false; then :
712 $as_echo_n "(cached) " >&6
713 else
714 if test -n "$DSYMUTIL"; then
715@@ -6095,7 +6103,7 @@
716 set dummy dsymutil; ac_word=$2
717 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
718 $as_echo_n "checking for $ac_word... " >&6; }
719-if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then :
720+if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then :
721 $as_echo_n "(cached) " >&6
722 else
723 if test -n "$ac_ct_DSYMUTIL"; then
724@@ -6147,7 +6155,7 @@
725 set dummy ${ac_tool_prefix}nmedit; ac_word=$2
726 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
727 $as_echo_n "checking for $ac_word... " >&6; }
728-if test "${ac_cv_prog_NMEDIT+set}" = set; then :
729+if ${ac_cv_prog_NMEDIT+:} false; then :
730 $as_echo_n "(cached) " >&6
731 else
732 if test -n "$NMEDIT"; then
733@@ -6187,7 +6195,7 @@
734 set dummy nmedit; ac_word=$2
735 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
736 $as_echo_n "checking for $ac_word... " >&6; }
737-if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then :
738+if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then :
739 $as_echo_n "(cached) " >&6
740 else
741 if test -n "$ac_ct_NMEDIT"; then
742@@ -6239,7 +6247,7 @@
743 set dummy ${ac_tool_prefix}lipo; ac_word=$2
744 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
745 $as_echo_n "checking for $ac_word... " >&6; }
746-if test "${ac_cv_prog_LIPO+set}" = set; then :
747+if ${ac_cv_prog_LIPO+:} false; then :
748 $as_echo_n "(cached) " >&6
749 else
750 if test -n "$LIPO"; then
751@@ -6279,7 +6287,7 @@
752 set dummy lipo; ac_word=$2
753 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
754 $as_echo_n "checking for $ac_word... " >&6; }
755-if test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then :
756+if ${ac_cv_prog_ac_ct_LIPO+:} false; then :
757 $as_echo_n "(cached) " >&6
758 else
759 if test -n "$ac_ct_LIPO"; then
760@@ -6331,7 +6339,7 @@
761 set dummy ${ac_tool_prefix}otool; ac_word=$2
762 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
763 $as_echo_n "checking for $ac_word... " >&6; }
764-if test "${ac_cv_prog_OTOOL+set}" = set; then :
765+if ${ac_cv_prog_OTOOL+:} false; then :
766 $as_echo_n "(cached) " >&6
767 else
768 if test -n "$OTOOL"; then
769@@ -6371,7 +6379,7 @@
770 set dummy otool; ac_word=$2
771 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
772 $as_echo_n "checking for $ac_word... " >&6; }
773-if test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then :
774+if ${ac_cv_prog_ac_ct_OTOOL+:} false; then :
775 $as_echo_n "(cached) " >&6
776 else
777 if test -n "$ac_ct_OTOOL"; then
778@@ -6423,7 +6431,7 @@
779 set dummy ${ac_tool_prefix}otool64; ac_word=$2
780 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
781 $as_echo_n "checking for $ac_word... " >&6; }
782-if test "${ac_cv_prog_OTOOL64+set}" = set; then :
783+if ${ac_cv_prog_OTOOL64+:} false; then :
784 $as_echo_n "(cached) " >&6
785 else
786 if test -n "$OTOOL64"; then
787@@ -6463,7 +6471,7 @@
788 set dummy otool64; ac_word=$2
789 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
790 $as_echo_n "checking for $ac_word... " >&6; }
791-if test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then :
792+if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then :
793 $as_echo_n "(cached) " >&6
794 else
795 if test -n "$ac_ct_OTOOL64"; then
796@@ -6538,7 +6546,7 @@
797
798 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5
799 $as_echo_n "checking for -single_module linker flag... " >&6; }
800-if test "${lt_cv_apple_cc_single_mod+set}" = set; then :
801+if ${lt_cv_apple_cc_single_mod+:} false; then :
802 $as_echo_n "(cached) " >&6
803 else
804 lt_cv_apple_cc_single_mod=no
805@@ -6567,7 +6575,7 @@
806 $as_echo "$lt_cv_apple_cc_single_mod" >&6; }
807 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5
808 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; }
809-if test "${lt_cv_ld_exported_symbols_list+set}" = set; then :
810+if ${lt_cv_ld_exported_symbols_list+:} false; then :
811 $as_echo_n "(cached) " >&6
812 else
813 lt_cv_ld_exported_symbols_list=no
814@@ -6599,7 +6607,7 @@
815 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; }
816 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5
817 $as_echo_n "checking for -force_load linker flag... " >&6; }
818-if test "${lt_cv_ld_force_load+set}" = set; then :
819+if ${lt_cv_ld_force_load+:} false; then :
820 $as_echo_n "(cached) " >&6
821 else
822 lt_cv_ld_force_load=no
823@@ -6676,7 +6684,7 @@
824 CPP=
825 fi
826 if test -z "$CPP"; then
827- if test "${ac_cv_prog_CPP+set}" = set; then :
828+ if ${ac_cv_prog_CPP+:} false; then :
829 $as_echo_n "(cached) " >&6
830 else
831 # Double quotes because CPP needs to be expanded
832@@ -6792,7 +6800,7 @@
833 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
834 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
835 as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
836-See \`config.log' for more details" "$LINENO" 5 ; }
837+See \`config.log' for more details" "$LINENO" 5; }
838 fi
839
840 ac_ext=c
841@@ -6804,7 +6812,7 @@
842
843 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
844 $as_echo_n "checking for ANSI C header files... " >&6; }
845-if test "${ac_cv_header_stdc+set}" = set; then :
846+if ${ac_cv_header_stdc+:} false; then :
847 $as_echo_n "(cached) " >&6
848 else
849 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
850@@ -6935,7 +6943,7 @@
851 do :
852 ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default
853 "
854-if test "x$ac_cv_header_dlfcn_h" = x""yes; then :
855+if test "x$ac_cv_header_dlfcn_h" = xyes; then :
856 cat >>confdefs.h <<_ACEOF
857 #define HAVE_DLFCN_H 1
858 _ACEOF
859@@ -7122,7 +7130,7 @@
860
861 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5
862 $as_echo_n "checking for objdir... " >&6; }
863-if test "${lt_cv_objdir+set}" = set; then :
864+if ${lt_cv_objdir+:} false; then :
865 $as_echo_n "(cached) " >&6
866 else
867 rm -f .libs 2>/dev/null
868@@ -7200,7 +7208,7 @@
869 if test "$file_magic_cmd" = '$MAGIC_CMD'; then
870 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5
871 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; }
872-if test "${lt_cv_path_MAGIC_CMD+set}" = set; then :
873+if ${lt_cv_path_MAGIC_CMD+:} false; then :
874 $as_echo_n "(cached) " >&6
875 else
876 case $MAGIC_CMD in
877@@ -7266,7 +7274,7 @@
878 if test -n "$ac_tool_prefix"; then
879 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5
880 $as_echo_n "checking for file... " >&6; }
881-if test "${lt_cv_path_MAGIC_CMD+set}" = set; then :
882+if ${lt_cv_path_MAGIC_CMD+:} false; then :
883 $as_echo_n "(cached) " >&6
884 else
885 case $MAGIC_CMD in
886@@ -7404,7 +7412,7 @@
887
888 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
889 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; }
890-if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then :
891+if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then :
892 $as_echo_n "(cached) " >&6
893 else
894 lt_cv_prog_compiler_rtti_exceptions=no
895@@ -7749,7 +7757,7 @@
896
897 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5
898 $as_echo_n "checking for $compiler option to produce PIC... " >&6; }
899-if test "${lt_cv_prog_compiler_pic+set}" = set; then :
900+if ${lt_cv_prog_compiler_pic+:} false; then :
901 $as_echo_n "(cached) " >&6
902 else
903 lt_cv_prog_compiler_pic=$lt_prog_compiler_pic
904@@ -7764,7 +7772,7 @@
905 if test -n "$lt_prog_compiler_pic"; then
906 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
907 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; }
908-if test "${lt_cv_prog_compiler_pic_works+set}" = set; then :
909+if ${lt_cv_prog_compiler_pic_works+:} false; then :
910 $as_echo_n "(cached) " >&6
911 else
912 lt_cv_prog_compiler_pic_works=no
913@@ -7828,7 +7836,7 @@
914 wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
915 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
916 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
917-if test "${lt_cv_prog_compiler_static_works+set}" = set; then :
918+if ${lt_cv_prog_compiler_static_works+:} false; then :
919 $as_echo_n "(cached) " >&6
920 else
921 lt_cv_prog_compiler_static_works=no
922@@ -7871,7 +7879,7 @@
923
924 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
925 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
926-if test "${lt_cv_prog_compiler_c_o+set}" = set; then :
927+if ${lt_cv_prog_compiler_c_o+:} false; then :
928 $as_echo_n "(cached) " >&6
929 else
930 lt_cv_prog_compiler_c_o=no
931@@ -7926,7 +7934,7 @@
932
933 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
934 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
935-if test "${lt_cv_prog_compiler_c_o+set}" = set; then :
936+if ${lt_cv_prog_compiler_c_o+:} false; then :
937 $as_echo_n "(cached) " >&6
938 else
939 lt_cv_prog_compiler_c_o=no
940@@ -8491,7 +8499,7 @@
941 if test "${lt_cv_aix_libpath+set}" = set; then
942 aix_libpath=$lt_cv_aix_libpath
943 else
944- if test "${lt_cv_aix_libpath_+set}" = set; then :
945+ if ${lt_cv_aix_libpath_+:} false; then :
946 $as_echo_n "(cached) " >&6
947 else
948 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
949@@ -8544,7 +8552,7 @@
950 if test "${lt_cv_aix_libpath+set}" = set; then
951 aix_libpath=$lt_cv_aix_libpath
952 else
953- if test "${lt_cv_aix_libpath_+set}" = set; then :
954+ if ${lt_cv_aix_libpath_+:} false; then :
955 $as_echo_n "(cached) " >&6
956 else
957 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
958@@ -8816,7 +8824,7 @@
959 # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
960 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5
961 $as_echo_n "checking if $CC understands -b... " >&6; }
962-if test "${lt_cv_prog_compiler__b+set}" = set; then :
963+if ${lt_cv_prog_compiler__b+:} false; then :
964 $as_echo_n "(cached) " >&6
965 else
966 lt_cv_prog_compiler__b=no
967@@ -8885,7 +8893,7 @@
968 # This should be the same for all languages, so no per-tag cache variable.
969 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5
970 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; }
971-if test "${lt_cv_irix_exported_symbol+set}" = set; then :
972+if ${lt_cv_irix_exported_symbol+:} false; then :
973 $as_echo_n "(cached) " >&6
974 else
975 save_LDFLAGS="$LDFLAGS"
976@@ -9201,7 +9209,7 @@
977 # to ld, don't add -lc before -lgcc.
978 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
979 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
980-if test "${lt_cv_archive_cmds_need_lc+set}" = set; then :
981+if ${lt_cv_archive_cmds_need_lc+:} false; then :
982 $as_echo_n "(cached) " >&6
983 else
984 $RM conftest*
985@@ -9902,7 +9910,7 @@
986 shlibpath_overrides_runpath=no
987
988 # Some binutils ld are patched to set DT_RUNPATH
989- if test "${lt_cv_shlibpath_overrides_runpath+set}" = set; then :
990+ if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
991 $as_echo_n "(cached) " >&6
992 else
993 lt_cv_shlibpath_overrides_runpath=no
994@@ -10326,7 +10334,7 @@
995 # if libdl is installed we need to link against it
996 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
997 $as_echo_n "checking for dlopen in -ldl... " >&6; }
998-if test "${ac_cv_lib_dl_dlopen+set}" = set; then :
999+if ${ac_cv_lib_dl_dlopen+:} false; then :
1000 $as_echo_n "(cached) " >&6
1001 else
1002 ac_check_lib_save_LIBS=$LIBS
1003@@ -10360,7 +10368,7 @@
1004 fi
1005 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
1006 $as_echo "$ac_cv_lib_dl_dlopen" >&6; }
1007-if test "x$ac_cv_lib_dl_dlopen" = x""yes; then :
1008+if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
1009 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
1010 else
1011
1012@@ -10374,12 +10382,12 @@
1013
1014 *)
1015 ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load"
1016-if test "x$ac_cv_func_shl_load" = x""yes; then :
1017+if test "x$ac_cv_func_shl_load" = xyes; then :
1018 lt_cv_dlopen="shl_load"
1019 else
1020 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5
1021 $as_echo_n "checking for shl_load in -ldld... " >&6; }
1022-if test "${ac_cv_lib_dld_shl_load+set}" = set; then :
1023+if ${ac_cv_lib_dld_shl_load+:} false; then :
1024 $as_echo_n "(cached) " >&6
1025 else
1026 ac_check_lib_save_LIBS=$LIBS
1027@@ -10413,16 +10421,16 @@
1028 fi
1029 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5
1030 $as_echo "$ac_cv_lib_dld_shl_load" >&6; }
1031-if test "x$ac_cv_lib_dld_shl_load" = x""yes; then :
1032+if test "x$ac_cv_lib_dld_shl_load" = xyes; then :
1033 lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
1034 else
1035 ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen"
1036-if test "x$ac_cv_func_dlopen" = x""yes; then :
1037+if test "x$ac_cv_func_dlopen" = xyes; then :
1038 lt_cv_dlopen="dlopen"
1039 else
1040 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
1041 $as_echo_n "checking for dlopen in -ldl... " >&6; }
1042-if test "${ac_cv_lib_dl_dlopen+set}" = set; then :
1043+if ${ac_cv_lib_dl_dlopen+:} false; then :
1044 $as_echo_n "(cached) " >&6
1045 else
1046 ac_check_lib_save_LIBS=$LIBS
1047@@ -10456,12 +10464,12 @@
1048 fi
1049 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
1050 $as_echo "$ac_cv_lib_dl_dlopen" >&6; }
1051-if test "x$ac_cv_lib_dl_dlopen" = x""yes; then :
1052+if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
1053 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
1054 else
1055 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5
1056 $as_echo_n "checking for dlopen in -lsvld... " >&6; }
1057-if test "${ac_cv_lib_svld_dlopen+set}" = set; then :
1058+if ${ac_cv_lib_svld_dlopen+:} false; then :
1059 $as_echo_n "(cached) " >&6
1060 else
1061 ac_check_lib_save_LIBS=$LIBS
1062@@ -10495,12 +10503,12 @@
1063 fi
1064 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5
1065 $as_echo "$ac_cv_lib_svld_dlopen" >&6; }
1066-if test "x$ac_cv_lib_svld_dlopen" = x""yes; then :
1067+if test "x$ac_cv_lib_svld_dlopen" = xyes; then :
1068 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
1069 else
1070 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5
1071 $as_echo_n "checking for dld_link in -ldld... " >&6; }
1072-if test "${ac_cv_lib_dld_dld_link+set}" = set; then :
1073+if ${ac_cv_lib_dld_dld_link+:} false; then :
1074 $as_echo_n "(cached) " >&6
1075 else
1076 ac_check_lib_save_LIBS=$LIBS
1077@@ -10534,7 +10542,7 @@
1078 fi
1079 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5
1080 $as_echo "$ac_cv_lib_dld_dld_link" >&6; }
1081-if test "x$ac_cv_lib_dld_dld_link" = x""yes; then :
1082+if test "x$ac_cv_lib_dld_dld_link" = xyes; then :
1083 lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
1084 fi
1085
1086@@ -10575,7 +10583,7 @@
1087
1088 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5
1089 $as_echo_n "checking whether a program can dlopen itself... " >&6; }
1090-if test "${lt_cv_dlopen_self+set}" = set; then :
1091+if ${lt_cv_dlopen_self+:} false; then :
1092 $as_echo_n "(cached) " >&6
1093 else
1094 if test "$cross_compiling" = yes; then :
1095@@ -10681,7 +10689,7 @@
1096 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
1097 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5
1098 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; }
1099-if test "${lt_cv_dlopen_self_static+set}" = set; then :
1100+if ${lt_cv_dlopen_self_static+:} false; then :
1101 $as_echo_n "(cached) " >&6
1102 else
1103 if test "$cross_compiling" = yes; then :
1104@@ -10943,7 +10951,7 @@
1105 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1106 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1107 $as_echo_n "checking for $ac_word... " >&6; }
1108-if test "${ac_cv_prog_CXX+set}" = set; then :
1109+if ${ac_cv_prog_CXX+:} false; then :
1110 $as_echo_n "(cached) " >&6
1111 else
1112 if test -n "$CXX"; then
1113@@ -10987,7 +10995,7 @@
1114 set dummy $ac_prog; ac_word=$2
1115 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1116 $as_echo_n "checking for $ac_word... " >&6; }
1117-if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then :
1118+if ${ac_cv_prog_ac_ct_CXX+:} false; then :
1119 $as_echo_n "(cached) " >&6
1120 else
1121 if test -n "$ac_ct_CXX"; then
1122@@ -11065,7 +11073,7 @@
1123
1124 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5
1125 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
1126-if test "${ac_cv_cxx_compiler_gnu+set}" = set; then :
1127+if ${ac_cv_cxx_compiler_gnu+:} false; then :
1128 $as_echo_n "(cached) " >&6
1129 else
1130 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1131@@ -11102,7 +11110,7 @@
1132 ac_save_CXXFLAGS=$CXXFLAGS
1133 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5
1134 $as_echo_n "checking whether $CXX accepts -g... " >&6; }
1135-if test "${ac_cv_prog_cxx_g+set}" = set; then :
1136+if ${ac_cv_prog_cxx_g+:} false; then :
1137 $as_echo_n "(cached) " >&6
1138 else
1139 ac_save_cxx_werror_flag=$ac_cxx_werror_flag
1140@@ -11206,7 +11214,7 @@
1141 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5
1142 $as_echo_n "checking how to run the C++ preprocessor... " >&6; }
1143 if test -z "$CXXCPP"; then
1144- if test "${ac_cv_prog_CXXCPP+set}" = set; then :
1145+ if ${ac_cv_prog_CXXCPP+:} false; then :
1146 $as_echo_n "(cached) " >&6
1147 else
1148 # Double quotes because CXXCPP needs to be expanded
1149@@ -11322,7 +11330,7 @@
1150 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1151 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1152 as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check
1153-See \`config.log' for more details" "$LINENO" 5 ; }
1154+See \`config.log' for more details" "$LINENO" 5; }
1155 fi
1156
1157 ac_ext=c
1158@@ -11509,7 +11517,7 @@
1159 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
1160 $as_echo_n "checking for non-GNU ld... " >&6; }
1161 fi
1162-if test "${lt_cv_path_LD+set}" = set; then :
1163+if ${lt_cv_path_LD+:} false; then :
1164 $as_echo_n "(cached) " >&6
1165 else
1166 if test -z "$LD"; then
1167@@ -11549,7 +11557,7 @@
1168 test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
1169 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
1170 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
1171-if test "${lt_cv_prog_gnu_ld+set}" = set; then :
1172+if ${lt_cv_prog_gnu_ld+:} false; then :
1173 $as_echo_n "(cached) " >&6
1174 else
1175 # I'd rather use --version here, but apparently some GNU lds only accept -v.
1176@@ -11721,7 +11729,7 @@
1177 if test "${lt_cv_aix_libpath+set}" = set; then
1178 aix_libpath=$lt_cv_aix_libpath
1179 else
1180- if test "${lt_cv_aix_libpath__CXX+set}" = set; then :
1181+ if ${lt_cv_aix_libpath__CXX+:} false; then :
1182 $as_echo_n "(cached) " >&6
1183 else
1184 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1185@@ -11775,7 +11783,7 @@
1186 if test "${lt_cv_aix_libpath+set}" = set; then
1187 aix_libpath=$lt_cv_aix_libpath
1188 else
1189- if test "${lt_cv_aix_libpath__CXX+set}" = set; then :
1190+ if ${lt_cv_aix_libpath__CXX+:} false; then :
1191 $as_echo_n "(cached) " >&6
1192 else
1193 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1194@@ -12672,10 +12680,11 @@
1195 case ${prev}${p} in
1196
1197 -L* | -R* | -l*)
1198- # Some compilers place space between "-{L,R}" and the path.
1199+ # Some compilers place space between "-{L,R,l}" and the path.
1200 # Remove the space.
1201 if test $p = "-L" ||
1202- test $p = "-R"; then
1203+ test $p = "-R" ||
1204+ test $p = "-l"; then
1205 prev=$p
1206 continue
1207 fi
1208@@ -13181,7 +13190,7 @@
1209
1210 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5
1211 $as_echo_n "checking for $compiler option to produce PIC... " >&6; }
1212-if test "${lt_cv_prog_compiler_pic_CXX+set}" = set; then :
1213+if ${lt_cv_prog_compiler_pic_CXX+:} false; then :
1214 $as_echo_n "(cached) " >&6
1215 else
1216 lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX
1217@@ -13196,7 +13205,7 @@
1218 if test -n "$lt_prog_compiler_pic_CXX"; then
1219 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5
1220 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; }
1221-if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then :
1222+if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then :
1223 $as_echo_n "(cached) " >&6
1224 else
1225 lt_cv_prog_compiler_pic_works_CXX=no
1226@@ -13254,7 +13263,7 @@
1227 wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\"
1228 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
1229 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
1230-if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then :
1231+if ${lt_cv_prog_compiler_static_works_CXX+:} false; then :
1232 $as_echo_n "(cached) " >&6
1233 else
1234 lt_cv_prog_compiler_static_works_CXX=no
1235@@ -13294,7 +13303,7 @@
1236
1237 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
1238 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
1239-if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then :
1240+if ${lt_cv_prog_compiler_c_o_CXX+:} false; then :
1241 $as_echo_n "(cached) " >&6
1242 else
1243 lt_cv_prog_compiler_c_o_CXX=no
1244@@ -13346,7 +13355,7 @@
1245
1246 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
1247 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
1248-if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then :
1249+if ${lt_cv_prog_compiler_c_o_CXX+:} false; then :
1250 $as_echo_n "(cached) " >&6
1251 else
1252 lt_cv_prog_compiler_c_o_CXX=no
1253@@ -13485,7 +13494,7 @@
1254 # to ld, don't add -lc before -lgcc.
1255 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
1256 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
1257-if test "${lt_cv_archive_cmds_need_lc_CXX+set}" = set; then :
1258+if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then :
1259 $as_echo_n "(cached) " >&6
1260 else
1261 $RM conftest*
1262@@ -14027,7 +14036,7 @@
1263 shlibpath_overrides_runpath=no
1264
1265 # Some binutils ld are patched to set DT_RUNPATH
1266- if test "${lt_cv_shlibpath_overrides_runpath+set}" = set; then :
1267+ if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
1268 $as_echo_n "(cached) " >&6
1269 else
1270 lt_cv_shlibpath_overrides_runpath=no
1271@@ -14401,7 +14410,7 @@
1272 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1273 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1274 $as_echo_n "checking for $ac_word... " >&6; }
1275-if test "${ac_cv_prog_FC+set}" = set; then :
1276+if ${ac_cv_prog_FC+:} false; then :
1277 $as_echo_n "(cached) " >&6
1278 else
1279 if test -n "$FC"; then
1280@@ -14445,7 +14454,7 @@
1281 set dummy $ac_prog; ac_word=$2
1282 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1283 $as_echo_n "checking for $ac_word... " >&6; }
1284-if test "${ac_cv_prog_ac_ct_FC+set}" = set; then :
1285+if ${ac_cv_prog_ac_ct_FC+:} false; then :
1286 $as_echo_n "(cached) " >&6
1287 else
1288 if test -n "$ac_ct_FC"; then
1289@@ -14527,7 +14536,7 @@
1290 ac_ext=F
1291 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran compiler" >&5
1292 $as_echo_n "checking whether we are using the GNU Fortran compiler... " >&6; }
1293-if test "${ac_cv_fc_compiler_gnu+set}" = set; then :
1294+if ${ac_cv_fc_compiler_gnu+:} false; then :
1295 $as_echo_n "(cached) " >&6
1296 else
1297 cat > conftest.$ac_ext <<_ACEOF
1298@@ -14555,7 +14564,7 @@
1299 FCFLAGS=
1300 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $FC accepts -g" >&5
1301 $as_echo_n "checking whether $FC accepts -g... " >&6; }
1302-if test "${ac_cv_prog_fc_g+set}" = set; then :
1303+if ${ac_cv_prog_fc_g+:} false; then :
1304 $as_echo_n "(cached) " >&6
1305 else
1306 FCFLAGS=-g
1307@@ -14788,10 +14797,11 @@
1308 case ${prev}${p} in
1309
1310 -L* | -R* | -l*)
1311- # Some compilers place space between "-{L,R}" and the path.
1312+ # Some compilers place space between "-{L,R,l}" and the path.
1313 # Remove the space.
1314 if test $p = "-L" ||
1315- test $p = "-R"; then
1316+ test $p = "-R" ||
1317+ test $p = "-l"; then
1318 prev=$p
1319 continue
1320 fi
1321@@ -15189,7 +15199,7 @@
1322
1323 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5
1324 $as_echo_n "checking for $compiler option to produce PIC... " >&6; }
1325-if test "${lt_cv_prog_compiler_pic_FC+set}" = set; then :
1326+if ${lt_cv_prog_compiler_pic_FC+:} false; then :
1327 $as_echo_n "(cached) " >&6
1328 else
1329 lt_cv_prog_compiler_pic_FC=$lt_prog_compiler_pic_FC
1330@@ -15204,7 +15214,7 @@
1331 if test -n "$lt_prog_compiler_pic_FC"; then
1332 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_FC works" >&5
1333 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_FC works... " >&6; }
1334-if test "${lt_cv_prog_compiler_pic_works_FC+set}" = set; then :
1335+if ${lt_cv_prog_compiler_pic_works_FC+:} false; then :
1336 $as_echo_n "(cached) " >&6
1337 else
1338 lt_cv_prog_compiler_pic_works_FC=no
1339@@ -15262,7 +15272,7 @@
1340 wl=$lt_prog_compiler_wl_FC eval lt_tmp_static_flag=\"$lt_prog_compiler_static_FC\"
1341 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
1342 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
1343-if test "${lt_cv_prog_compiler_static_works_FC+set}" = set; then :
1344+if ${lt_cv_prog_compiler_static_works_FC+:} false; then :
1345 $as_echo_n "(cached) " >&6
1346 else
1347 lt_cv_prog_compiler_static_works_FC=no
1348@@ -15302,7 +15312,7 @@
1349
1350 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
1351 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
1352-if test "${lt_cv_prog_compiler_c_o_FC+set}" = set; then :
1353+if ${lt_cv_prog_compiler_c_o_FC+:} false; then :
1354 $as_echo_n "(cached) " >&6
1355 else
1356 lt_cv_prog_compiler_c_o_FC=no
1357@@ -15354,7 +15364,7 @@
1358
1359 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
1360 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
1361-if test "${lt_cv_prog_compiler_c_o_FC+set}" = set; then :
1362+if ${lt_cv_prog_compiler_c_o_FC+:} false; then :
1363 $as_echo_n "(cached) " >&6
1364 else
1365 lt_cv_prog_compiler_c_o_FC=no
1366@@ -15916,7 +15926,7 @@
1367 if test "${lt_cv_aix_libpath+set}" = set; then
1368 aix_libpath=$lt_cv_aix_libpath
1369 else
1370- if test "${lt_cv_aix_libpath__FC+set}" = set; then :
1371+ if ${lt_cv_aix_libpath__FC+:} false; then :
1372 $as_echo_n "(cached) " >&6
1373 else
1374 cat > conftest.$ac_ext <<_ACEOF
1375@@ -15963,7 +15973,7 @@
1376 if test "${lt_cv_aix_libpath+set}" = set; then
1377 aix_libpath=$lt_cv_aix_libpath
1378 else
1379- if test "${lt_cv_aix_libpath__FC+set}" = set; then :
1380+ if ${lt_cv_aix_libpath__FC+:} false; then :
1381 $as_echo_n "(cached) " >&6
1382 else
1383 cat > conftest.$ac_ext <<_ACEOF
1384@@ -16259,7 +16269,7 @@
1385 # This should be the same for all languages, so no per-tag cache variable.
1386 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5
1387 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; }
1388-if test "${lt_cv_irix_exported_symbol+set}" = set; then :
1389+if ${lt_cv_irix_exported_symbol+:} false; then :
1390 $as_echo_n "(cached) " >&6
1391 else
1392 save_LDFLAGS="$LDFLAGS"
1393@@ -16567,7 +16577,7 @@
1394 # to ld, don't add -lc before -lgcc.
1395 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
1396 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
1397-if test "${lt_cv_archive_cmds_need_lc_FC+set}" = set; then :
1398+if ${lt_cv_archive_cmds_need_lc_FC+:} false; then :
1399 $as_echo_n "(cached) " >&6
1400 else
1401 $RM conftest*
1402@@ -17109,7 +17119,7 @@
1403 shlibpath_overrides_runpath=no
1404
1405 # Some binutils ld are patched to set DT_RUNPATH
1406- if test "${lt_cv_shlibpath_overrides_runpath+set}" = set; then :
1407+ if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
1408 $as_echo_n "(cached) " >&6
1409 else
1410 lt_cv_shlibpath_overrides_runpath=no
1411@@ -17489,7 +17499,7 @@
1412 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1413 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1414 $as_echo_n "checking for $ac_word... " >&6; }
1415-if test "${ac_cv_prog_F77+set}" = set; then :
1416+if ${ac_cv_prog_F77+:} false; then :
1417 $as_echo_n "(cached) " >&6
1418 else
1419 if test -n "$F77"; then
1420@@ -17533,7 +17543,7 @@
1421 set dummy $ac_prog; ac_word=$2
1422 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1423 $as_echo_n "checking for $ac_word... " >&6; }
1424-if test "${ac_cv_prog_ac_ct_F77+set}" = set; then :
1425+if ${ac_cv_prog_ac_ct_F77+:} false; then :
1426 $as_echo_n "(cached) " >&6
1427 else
1428 if test -n "$ac_ct_F77"; then
1429@@ -17615,7 +17625,7 @@
1430 ac_ext=F
1431 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran 77 compiler" >&5
1432 $as_echo_n "checking whether we are using the GNU Fortran 77 compiler... " >&6; }
1433-if test "${ac_cv_f77_compiler_gnu+set}" = set; then :
1434+if ${ac_cv_f77_compiler_gnu+:} false; then :
1435 $as_echo_n "(cached) " >&6
1436 else
1437 cat > conftest.$ac_ext <<_ACEOF
1438@@ -17643,7 +17653,7 @@
1439 FFLAGS=
1440 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $F77 accepts -g" >&5
1441 $as_echo_n "checking whether $F77 accepts -g... " >&6; }
1442-if test "${ac_cv_prog_f77_g+set}" = set; then :
1443+if ${ac_cv_prog_f77_g+:} false; then :
1444 $as_echo_n "(cached) " >&6
1445 else
1446 FFLAGS=-g
1447@@ -18135,7 +18145,7 @@
1448
1449 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5
1450 $as_echo_n "checking for $compiler option to produce PIC... " >&6; }
1451-if test "${lt_cv_prog_compiler_pic_F77+set}" = set; then :
1452+if ${lt_cv_prog_compiler_pic_F77+:} false; then :
1453 $as_echo_n "(cached) " >&6
1454 else
1455 lt_cv_prog_compiler_pic_F77=$lt_prog_compiler_pic_F77
1456@@ -18150,7 +18160,7 @@
1457 if test -n "$lt_prog_compiler_pic_F77"; then
1458 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5
1459 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... " >&6; }
1460-if test "${lt_cv_prog_compiler_pic_works_F77+set}" = set; then :
1461+if ${lt_cv_prog_compiler_pic_works_F77+:} false; then :
1462 $as_echo_n "(cached) " >&6
1463 else
1464 lt_cv_prog_compiler_pic_works_F77=no
1465@@ -18208,7 +18218,7 @@
1466 wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\"
1467 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
1468 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
1469-if test "${lt_cv_prog_compiler_static_works_F77+set}" = set; then :
1470+if ${lt_cv_prog_compiler_static_works_F77+:} false; then :
1471 $as_echo_n "(cached) " >&6
1472 else
1473 lt_cv_prog_compiler_static_works_F77=no
1474@@ -18248,7 +18258,7 @@
1475
1476 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
1477 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
1478-if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then :
1479+if ${lt_cv_prog_compiler_c_o_F77+:} false; then :
1480 $as_echo_n "(cached) " >&6
1481 else
1482 lt_cv_prog_compiler_c_o_F77=no
1483@@ -18300,7 +18310,7 @@
1484
1485 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
1486 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
1487-if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then :
1488+if ${lt_cv_prog_compiler_c_o_F77+:} false; then :
1489 $as_echo_n "(cached) " >&6
1490 else
1491 lt_cv_prog_compiler_c_o_F77=no
1492@@ -18862,7 +18872,7 @@
1493 if test "${lt_cv_aix_libpath+set}" = set; then
1494 aix_libpath=$lt_cv_aix_libpath
1495 else
1496- if test "${lt_cv_aix_libpath__F77+set}" = set; then :
1497+ if ${lt_cv_aix_libpath__F77+:} false; then :
1498 $as_echo_n "(cached) " >&6
1499 else
1500 cat > conftest.$ac_ext <<_ACEOF
1501@@ -18909,7 +18919,7 @@
1502 if test "${lt_cv_aix_libpath+set}" = set; then
1503 aix_libpath=$lt_cv_aix_libpath
1504 else
1505- if test "${lt_cv_aix_libpath__F77+set}" = set; then :
1506+ if ${lt_cv_aix_libpath__F77+:} false; then :
1507 $as_echo_n "(cached) " >&6
1508 else
1509 cat > conftest.$ac_ext <<_ACEOF
1510@@ -19205,7 +19215,7 @@
1511 # This should be the same for all languages, so no per-tag cache variable.
1512 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5
1513 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; }
1514-if test "${lt_cv_irix_exported_symbol+set}" = set; then :
1515+if ${lt_cv_irix_exported_symbol+:} false; then :
1516 $as_echo_n "(cached) " >&6
1517 else
1518 save_LDFLAGS="$LDFLAGS"
1519@@ -19513,7 +19523,7 @@
1520 # to ld, don't add -lc before -lgcc.
1521 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
1522 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
1523-if test "${lt_cv_archive_cmds_need_lc_F77+set}" = set; then :
1524+if ${lt_cv_archive_cmds_need_lc_F77+:} false; then :
1525 $as_echo_n "(cached) " >&6
1526 else
1527 $RM conftest*
1528@@ -20055,7 +20065,7 @@
1529 shlibpath_overrides_runpath=no
1530
1531 # Some binutils ld are patched to set DT_RUNPATH
1532- if test "${lt_cv_shlibpath_overrides_runpath+set}" = set; then :
1533+ if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
1534 $as_echo_n "(cached) " >&6
1535 else
1536 lt_cv_shlibpath_overrides_runpath=no
1537@@ -20411,7 +20421,7 @@
1538 ac_compiler_gnu=$ac_cv_f77_compiler_gnu
1539 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to get verbose linking output from $F77" >&5
1540 $as_echo_n "checking how to get verbose linking output from $F77... " >&6; }
1541-if test "${ac_cv_prog_f77_v+set}" = set; then :
1542+if ${ac_cv_prog_f77_v+:} false; then :
1543 $as_echo_n "(cached) " >&6
1544 else
1545 cat > conftest.$ac_ext <<_ACEOF
1546@@ -20441,7 +20451,8 @@
1547 # gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,
1548 # LIBRARY_PATH; skip all such settings.
1549 ac_f77_v_output=`eval $ac_link 5>&1 2>&1 |
1550- grep -v 'Driving:' | grep -v "^[_$as_cr_Letters][_$as_cr_alnum]*="`
1551+ sed '/^Driving:/d; /^Configured with:/d;
1552+ '"/^[_$as_cr_Letters][_$as_cr_alnum]*=/d"`
1553 $as_echo "$ac_f77_v_output" >&5
1554 FFLAGS=$ac_save_FFLAGS
1555
1556@@ -20506,7 +20517,7 @@
1557 $as_echo "$ac_cv_prog_f77_v" >&6; }
1558 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 libraries of $F77" >&5
1559 $as_echo_n "checking for Fortran 77 libraries of $F77... " >&6; }
1560-if test "${ac_cv_f77_libs+set}" = set; then :
1561+if ${ac_cv_f77_libs+:} false; then :
1562 $as_echo_n "(cached) " >&6
1563 else
1564 if test "x$FLIBS" != "x"; then
1565@@ -20531,7 +20542,8 @@
1566 # gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,
1567 # LIBRARY_PATH; skip all such settings.
1568 ac_f77_v_output=`eval $ac_link 5>&1 2>&1 |
1569- grep -v 'Driving:' | grep -v "^[_$as_cr_Letters][_$as_cr_alnum]*="`
1570+ sed '/^Driving:/d; /^Configured with:/d;
1571+ '"/^[_$as_cr_Letters][_$as_cr_alnum]*=/d"`
1572 $as_echo "$ac_f77_v_output" >&5
1573 FFLAGS=$ac_save_FFLAGS
1574
1575@@ -20727,7 +20739,7 @@
1576 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1577 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1578 $as_echo_n "checking for $ac_word... " >&6; }
1579-if test "${ac_cv_prog_FC+set}" = set; then :
1580+if ${ac_cv_prog_FC+:} false; then :
1581 $as_echo_n "(cached) " >&6
1582 else
1583 if test -n "$FC"; then
1584@@ -20771,7 +20783,7 @@
1585 set dummy $ac_prog; ac_word=$2
1586 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1587 $as_echo_n "checking for $ac_word... " >&6; }
1588-if test "${ac_cv_prog_ac_ct_FC+set}" = set; then :
1589+if ${ac_cv_prog_ac_ct_FC+:} false; then :
1590 $as_echo_n "(cached) " >&6
1591 else
1592 if test -n "$ac_ct_FC"; then
1593@@ -20853,7 +20865,7 @@
1594 ac_ext=F
1595 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran compiler" >&5
1596 $as_echo_n "checking whether we are using the GNU Fortran compiler... " >&6; }
1597-if test "${ac_cv_fc_compiler_gnu+set}" = set; then :
1598+if ${ac_cv_fc_compiler_gnu+:} false; then :
1599 $as_echo_n "(cached) " >&6
1600 else
1601 cat > conftest.$ac_ext <<_ACEOF
1602@@ -20881,7 +20893,7 @@
1603 FCFLAGS=
1604 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $FC accepts -g" >&5
1605 $as_echo_n "checking whether $FC accepts -g... " >&6; }
1606-if test "${ac_cv_prog_fc_g+set}" = set; then :
1607+if ${ac_cv_prog_fc_g+:} false; then :
1608 $as_echo_n "(cached) " >&6
1609 else
1610 FCFLAGS=-g
1611@@ -20928,7 +20940,7 @@
1612 ac_compiler_gnu=$ac_cv_fc_compiler_gnu
1613 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to get verbose linking output from $FC" >&5
1614 $as_echo_n "checking how to get verbose linking output from $FC... " >&6; }
1615-if test "${ac_cv_prog_fc_v+set}" = set; then :
1616+if ${ac_cv_prog_fc_v+:} false; then :
1617 $as_echo_n "(cached) " >&6
1618 else
1619 cat > conftest.$ac_ext <<_ACEOF
1620@@ -20958,7 +20970,8 @@
1621 # gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,
1622 # LIBRARY_PATH; skip all such settings.
1623 ac_fc_v_output=`eval $ac_link 5>&1 2>&1 |
1624- grep -v 'Driving:' | grep -v "^[_$as_cr_Letters][_$as_cr_alnum]*="`
1625+ sed '/^Driving:/d; /^Configured with:/d;
1626+ '"/^[_$as_cr_Letters][_$as_cr_alnum]*=/d"`
1627 $as_echo "$ac_fc_v_output" >&5
1628 FCFLAGS=$ac_save_FCFLAGS
1629
1630@@ -21023,7 +21036,7 @@
1631 $as_echo "$ac_cv_prog_fc_v" >&6; }
1632 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran libraries of $FC" >&5
1633 $as_echo_n "checking for Fortran libraries of $FC... " >&6; }
1634-if test "${ac_cv_fc_libs+set}" = set; then :
1635+if ${ac_cv_fc_libs+:} false; then :
1636 $as_echo_n "(cached) " >&6
1637 else
1638 if test "x$FCLIBS" != "x"; then
1639@@ -21048,7 +21061,8 @@
1640 # gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,
1641 # LIBRARY_PATH; skip all such settings.
1642 ac_fc_v_output=`eval $ac_link 5>&1 2>&1 |
1643- grep -v 'Driving:' | grep -v "^[_$as_cr_Letters][_$as_cr_alnum]*="`
1644+ sed '/^Driving:/d; /^Configured with:/d;
1645+ '"/^[_$as_cr_Letters][_$as_cr_alnum]*=/d"`
1646 $as_echo "$ac_fc_v_output" >&5
1647 FCFLAGS=$ac_save_FCFLAGS
1648
1649@@ -21265,7 +21279,7 @@
1650 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
1651 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1652 $as_echo_n "checking for $ac_word... " >&6; }
1653-if test "${ac_cv_prog_CXX+set}" = set; then :
1654+if ${ac_cv_prog_CXX+:} false; then :
1655 $as_echo_n "(cached) " >&6
1656 else
1657 if test -n "$CXX"; then
1658@@ -21309,7 +21323,7 @@
1659 set dummy $ac_prog; ac_word=$2
1660 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1661 $as_echo_n "checking for $ac_word... " >&6; }
1662-if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then :
1663+if ${ac_cv_prog_ac_ct_CXX+:} false; then :
1664 $as_echo_n "(cached) " >&6
1665 else
1666 if test -n "$ac_ct_CXX"; then
1667@@ -21387,7 +21401,7 @@
1668
1669 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5
1670 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
1671-if test "${ac_cv_cxx_compiler_gnu+set}" = set; then :
1672+if ${ac_cv_cxx_compiler_gnu+:} false; then :
1673 $as_echo_n "(cached) " >&6
1674 else
1675 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1676@@ -21424,7 +21438,7 @@
1677 ac_save_CXXFLAGS=$CXXFLAGS
1678 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5
1679 $as_echo_n "checking whether $CXX accepts -g... " >&6; }
1680-if test "${ac_cv_prog_cxx_g+set}" = set; then :
1681+if ${ac_cv_prog_cxx_g+:} false; then :
1682 $as_echo_n "(cached) " >&6
1683 else
1684 ac_save_cxx_werror_flag=$ac_cxx_werror_flag
1685@@ -21518,7 +21532,7 @@
1686 CPP=
1687 fi
1688 if test -z "$CPP"; then
1689- if test "${ac_cv_prog_CPP+set}" = set; then :
1690+ if ${ac_cv_prog_CPP+:} false; then :
1691 $as_echo_n "(cached) " >&6
1692 else
1693 # Double quotes because CPP needs to be expanded
1694@@ -21634,7 +21648,7 @@
1695 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1696 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1697 as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
1698-See \`config.log' for more details" "$LINENO" 5 ; }
1699+See \`config.log' for more details" "$LINENO" 5; }
1700 fi
1701
1702 ac_ext=c
1703@@ -21651,7 +21665,7 @@
1704 # This bug is HP SR number 8606223364.
1705 { $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long int" >&5
1706 $as_echo_n "checking size of long int... " >&6; }
1707-if test "${ac_cv_sizeof_long_int+set}" = set; then :
1708+if ${ac_cv_sizeof_long_int+:} false; then :
1709 $as_echo_n "(cached) " >&6
1710 else
1711 if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long int))" "ac_cv_sizeof_long_int" "$ac_includes_default"; then :
1712@@ -21661,7 +21675,7 @@
1713 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1714 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1715 as_fn_error 77 "cannot compute sizeof (long int)
1716-See \`config.log' for more details" "$LINENO" 5 ; }
1717+See \`config.log' for more details" "$LINENO" 5; }
1718 else
1719 ac_cv_sizeof_long_int=0
1720 fi
1721@@ -21691,7 +21705,7 @@
1722 ac_compiler_gnu=$ac_cv_fc_compiler_gnu
1723 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to get verbose linking output from $FC" >&5
1724 $as_echo_n "checking how to get verbose linking output from $FC... " >&6; }
1725-if test "${ac_cv_prog_fc_v+set}" = set; then :
1726+if ${ac_cv_prog_fc_v+:} false; then :
1727 $as_echo_n "(cached) " >&6
1728 else
1729 cat > conftest.$ac_ext <<_ACEOF
1730@@ -21721,7 +21735,8 @@
1731 # gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,
1732 # LIBRARY_PATH; skip all such settings.
1733 ac_fc_v_output=`eval $ac_link 5>&1 2>&1 |
1734- grep -v 'Driving:' | grep -v "^[_$as_cr_Letters][_$as_cr_alnum]*="`
1735+ sed '/^Driving:/d; /^Configured with:/d;
1736+ '"/^[_$as_cr_Letters][_$as_cr_alnum]*=/d"`
1737 $as_echo "$ac_fc_v_output" >&5
1738 FCFLAGS=$ac_save_FCFLAGS
1739
1740@@ -21786,7 +21801,7 @@
1741 $as_echo "$ac_cv_prog_fc_v" >&6; }
1742 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran libraries of $FC" >&5
1743 $as_echo_n "checking for Fortran libraries of $FC... " >&6; }
1744-if test "${ac_cv_fc_libs+set}" = set; then :
1745+if ${ac_cv_fc_libs+:} false; then :
1746 $as_echo_n "(cached) " >&6
1747 else
1748 if test "x$FCLIBS" != "x"; then
1749@@ -21811,7 +21826,8 @@
1750 # gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,
1751 # LIBRARY_PATH; skip all such settings.
1752 ac_fc_v_output=`eval $ac_link 5>&1 2>&1 |
1753- grep -v 'Driving:' | grep -v "^[_$as_cr_Letters][_$as_cr_alnum]*="`
1754+ sed '/^Driving:/d; /^Configured with:/d;
1755+ '"/^[_$as_cr_Letters][_$as_cr_alnum]*=/d"`
1756 $as_echo "$ac_fc_v_output" >&5
1757 FCFLAGS=$ac_save_FCFLAGS
1758
1759@@ -22000,7 +22016,7 @@
1760
1761 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dummy main to link with Fortran 77 libraries" >&5
1762 $as_echo_n "checking for dummy main to link with Fortran 77 libraries... " >&6; }
1763-if test "${ac_cv_f77_dummy_main+set}" = set; then :
1764+if ${ac_cv_f77_dummy_main+:} false; then :
1765 $as_echo_n "(cached) " >&6
1766 else
1767 ac_f77_dm_save_LIBS=$LIBS
1768@@ -22097,7 +22113,7 @@
1769 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1770 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1771 as_fn_error $? "linking to Fortran libraries from C fails
1772-See \`config.log' for more details" "$LINENO" 5 ; }
1773+See \`config.log' for more details" "$LINENO" 5; }
1774 fi
1775
1776 ac_ext=c
1777@@ -22112,7 +22128,7 @@
1778 ac_compiler_gnu=$ac_cv_f77_compiler_gnu
1779 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 name-mangling scheme" >&5
1780 $as_echo_n "checking for Fortran 77 name-mangling scheme... " >&6; }
1781-if test "${ac_cv_f77_mangling+set}" = set; then :
1782+if ${ac_cv_f77_mangling+:} false; then :
1783 $as_echo_n "(cached) " >&6
1784 else
1785 cat > conftest.$ac_ext <<_ACEOF
1786@@ -22259,7 +22275,7 @@
1787 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
1788 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
1789 as_fn_error $? "cannot compile a simple Fortran program
1790-See \`config.log' for more details" "$LINENO" 5 ; }
1791+See \`config.log' for more details" "$LINENO" 5; }
1792 fi
1793 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1794
1795@@ -22340,7 +22356,7 @@
1796
1797 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lstdc++" >&5
1798 $as_echo_n "checking for main in -lstdc++... " >&6; }
1799-if test "${ac_cv_lib_stdcpp_main+set}" = set; then :
1800+if ${ac_cv_lib_stdcpp_main+:} false; then :
1801 $as_echo_n "(cached) " >&6
1802 else
1803 ac_check_lib_save_LIBS=$LIBS
1804@@ -22376,7 +22392,7 @@
1805 fi
1806 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_stdcpp_main" >&5
1807 $as_echo "$ac_cv_lib_stdcpp_main" >&6; }
1808-if test "x$ac_cv_lib_stdcpp_main" = x""yes; then :
1809+if test "x$ac_cv_lib_stdcpp_main" = xyes; then :
1810 cat >>confdefs.h <<_ACEOF
1811 #define HAVE_LIBSTDC__ 1
1812 _ACEOF
1813@@ -22387,7 +22403,7 @@
1814
1815 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lm" >&5
1816 $as_echo_n "checking for main in -lm... " >&6; }
1817-if test "${ac_cv_lib_m_main+set}" = set; then :
1818+if ${ac_cv_lib_m_main+:} false; then :
1819 $as_echo_n "(cached) " >&6
1820 else
1821 ac_check_lib_save_LIBS=$LIBS
1822@@ -22423,7 +22439,7 @@
1823 fi
1824 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_main" >&5
1825 $as_echo "$ac_cv_lib_m_main" >&6; }
1826-if test "x$ac_cv_lib_m_main" = x""yes; then :
1827+if test "x$ac_cv_lib_m_main" = xyes; then :
1828 cat >>confdefs.h <<_ACEOF
1829 #define HAVE_LIBM 1
1830 _ACEOF
1831@@ -22434,7 +22450,7 @@
1832
1833 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lpthread" >&5
1834 $as_echo_n "checking for main in -lpthread... " >&6; }
1835-if test "${ac_cv_lib_pthread_main+set}" = set; then :
1836+if ${ac_cv_lib_pthread_main+:} false; then :
1837 $as_echo_n "(cached) " >&6
1838 else
1839 ac_check_lib_save_LIBS=$LIBS
1840@@ -22470,7 +22486,7 @@
1841 fi
1842 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_main" >&5
1843 $as_echo "$ac_cv_lib_pthread_main" >&6; }
1844-if test "x$ac_cv_lib_pthread_main" = x""yes; then :
1845+if test "x$ac_cv_lib_pthread_main" = xyes; then :
1846 cat >>confdefs.h <<_ACEOF
1847 #define HAVE_LIBPTHREAD 1
1848 _ACEOF
1849@@ -22720,7 +22736,7 @@
1850 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
1851 $as_echo_n "checking for a BSD-compatible install... " >&6; }
1852 if test -z "$INSTALL"; then
1853-if test "${ac_cv_path_install+set}" = set; then :
1854+if ${ac_cv_path_install+:} false; then :
1855 $as_echo_n "(cached) " >&6
1856 else
1857 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1858@@ -22800,7 +22816,7 @@
1859 set dummy gmake; ac_word=$2
1860 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1861 $as_echo_n "checking for $ac_word... " >&6; }
1862-if test "${ac_cv_prog_MAKE+set}" = set; then :
1863+if ${ac_cv_prog_MAKE+:} false; then :
1864 $as_echo_n "(cached) " >&6
1865 else
1866 if test -n "$MAKE"; then
1867@@ -22841,7 +22857,7 @@
1868 set dummy ar; ac_word=$2
1869 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1870 $as_echo_n "checking for $ac_word... " >&6; }
1871-if test "${ac_cv_prog_AR+set}" = set; then :
1872+if ${ac_cv_prog_AR+:} false; then :
1873 $as_echo_n "(cached) " >&6
1874 else
1875 if test -n "$AR"; then
1876@@ -22880,7 +22896,7 @@
1877 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
1878 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1879 $as_echo_n "checking for $ac_word... " >&6; }
1880-if test "${ac_cv_prog_RANLIB+set}" = set; then :
1881+if ${ac_cv_prog_RANLIB+:} false; then :
1882 $as_echo_n "(cached) " >&6
1883 else
1884 if test -n "$RANLIB"; then
1885@@ -22920,7 +22936,7 @@
1886 set dummy ranlib; ac_word=$2
1887 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
1888 $as_echo_n "checking for $ac_word... " >&6; }
1889-if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
1890+if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
1891 $as_echo_n "(cached) " >&6
1892 else
1893 if test -n "$ac_ct_RANLIB"; then
1894@@ -23101,10 +23117,21 @@
1895 :end' >>confcache
1896 if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
1897 if test -w "$cache_file"; then
1898- test "x$cache_file" != "x/dev/null" &&
1899+ if test "x$cache_file" != "x/dev/null"; then
1900 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
1901 $as_echo "$as_me: updating cache $cache_file" >&6;}
1902- cat confcache >$cache_file
1903+ if test ! -f "$cache_file" || test -h "$cache_file"; then
1904+ cat confcache >"$cache_file"
1905+ else
1906+ case $cache_file in #(
1907+ */* | ?:*)
1908+ mv -f confcache "$cache_file"$$ &&
1909+ mv -f "$cache_file"$$ "$cache_file" ;; #(
1910+ *)
1911+ mv -f confcache "$cache_file" ;;
1912+ esac
1913+ fi
1914+ fi
1915 else
1916 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
1917 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
1918@@ -23172,7 +23199,7 @@
1919
1920
1921
1922-: ${CONFIG_STATUS=./config.status}
1923+: "${CONFIG_STATUS=./config.status}"
1924 ac_write_fail=0
1925 ac_clean_files_save=$ac_clean_files
1926 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
1927@@ -23273,6 +23300,7 @@
1928 IFS=" "" $as_nl"
1929
1930 # Find who we are. Look in the path if we contain no directory separator.
1931+as_myself=
1932 case $0 in #((
1933 *[\\/]* ) as_myself=$0 ;;
1934 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
1935@@ -23580,7 +23608,7 @@
1936 # values after options handling.
1937 ac_log="
1938 This file was extended by $as_me, which was
1939-generated by GNU Autoconf 2.67. Invocation command line was
1940+generated by GNU Autoconf 2.68. Invocation command line was
1941
1942 CONFIG_FILES = $CONFIG_FILES
1943 CONFIG_HEADERS = $CONFIG_HEADERS
1944@@ -23637,7 +23665,7 @@
1945 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
1946 ac_cs_version="\\
1947 config.status
1948-configured by $0, generated by GNU Autoconf 2.67,
1949+configured by $0, generated by GNU Autoconf 2.68,
1950 with options \\"\$ac_cs_config\\"
1951
1952 Copyright (C) 2010 Free Software Foundation, Inc.
1953@@ -24314,7 +24342,7 @@
1954 "diamond/diamond/plugins.py") CONFIG_FILES="$CONFIG_FILES diamond/diamond/plugins.py" ;;
1955 "diamond/diamond/preprocess.py") CONFIG_FILES="$CONFIG_FILES diamond/diamond/preprocess.py" ;;
1956
1957- *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;;
1958+ *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
1959 esac
1960 done
1961
1962@@ -24336,9 +24364,10 @@
1963 # after its creation but before its name has been assigned to `$tmp'.
1964 $debug ||
1965 {
1966- tmp=
1967+ tmp= ac_tmp=
1968 trap 'exit_status=$?
1969- { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
1970+ : "${ac_tmp:=$tmp}"
1971+ { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
1972 ' 0
1973 trap 'as_fn_exit 1' 1 2 13 15
1974 }
1975@@ -24346,12 +24375,13 @@
1976
1977 {
1978 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
1979- test -n "$tmp" && test -d "$tmp"
1980+ test -d "$tmp"
1981 } ||
1982 {
1983 tmp=./conf$$-$RANDOM
1984 (umask 077 && mkdir "$tmp")
1985 } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
1986+ac_tmp=$tmp
1987
1988 # Set up the scripts for CONFIG_FILES section.
1989 # No need to generate them if there are no CONFIG_FILES.
1990@@ -24373,7 +24403,7 @@
1991 ac_cs_awk_cr=$ac_cr
1992 fi
1993
1994-echo 'BEGIN {' >"$tmp/subs1.awk" &&
1995+echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
1996 _ACEOF
1997
1998
1999@@ -24401,7 +24431,7 @@
2000 rm -f conf$$subs.sh
2001
2002 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2003-cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
2004+cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
2005 _ACEOF
2006 sed -n '
2007 h
2008@@ -24449,7 +24479,7 @@
2009 rm -f conf$$subs.awk
2010 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2011 _ACAWK
2012-cat >>"\$tmp/subs1.awk" <<_ACAWK &&
2013+cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
2014 for (key in S) S_is_set[key] = 1
2015 FS = ""
2016
2017@@ -24481,7 +24511,7 @@
2018 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
2019 else
2020 cat
2021-fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
2022+fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
2023 || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
2024 _ACEOF
2025
2026@@ -24521,7 +24551,7 @@
2027 esac
2028 case $ac_mode$ac_tag in
2029 :[FHL]*:*);;
2030- :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;;
2031+ :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
2032 :[FH]-) ac_tag=-:-;;
2033 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
2034 esac
2035@@ -24540,7 +24570,7 @@
2036 for ac_f
2037 do
2038 case $ac_f in
2039- -) ac_f="$tmp/stdin";;
2040+ -) ac_f="$ac_tmp/stdin";;
2041 *) # Look for the file first in the build tree, then in the source tree
2042 # (if the path is not absolute). The absolute path cannot be DOS-style,
2043 # because $ac_f cannot contain `:'.
2044@@ -24549,7 +24579,7 @@
2045 [\\/$]*) false;;
2046 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
2047 esac ||
2048- as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;;
2049+ as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
2050 esac
2051 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
2052 as_fn_append ac_file_inputs " '$ac_f'"
2053@@ -24575,8 +24605,8 @@
2054 esac
2055
2056 case $ac_tag in
2057- *:-:* | *:-) cat >"$tmp/stdin" \
2058- || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
2059+ *:-:* | *:-) cat >"$ac_tmp/stdin" \
2060+ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
2061 esac
2062 ;;
2063 esac
2064@@ -24706,21 +24736,22 @@
2065 s&@INSTALL@&$ac_INSTALL&;t t
2066 $ac_datarootdir_hack
2067 "
2068-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
2069- || as_fn_error $? "could not create $ac_file" "$LINENO" 5
2070+eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
2071+ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
2072
2073 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
2074- { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
2075- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
2076+ { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
2077+ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
2078+ "$ac_tmp/out"`; test -z "$ac_out"; } &&
2079 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
2080 which seems to be undefined. Please make sure it is defined" >&5
2081 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
2082 which seems to be undefined. Please make sure it is defined" >&2;}
2083
2084- rm -f "$tmp/stdin"
2085+ rm -f "$ac_tmp/stdin"
2086 case $ac_file in
2087- -) cat "$tmp/out" && rm -f "$tmp/out";;
2088- *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
2089+ -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
2090+ *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
2091 esac \
2092 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
2093 ;;

Subscribers

People subscribed via source and target branches