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
=== modified file 'aclocal.m4'
--- aclocal.m4 2012-01-25 14:00:49 +0000
+++ aclocal.m4 2014-04-25 14:03:59 +0000
@@ -6927,10 +6927,11 @@
6927 case ${prev}${p} in6927 case ${prev}${p} in
69286928
6929 -L* | -R* | -l*)6929 -L* | -R* | -l*)
6930 # Some compilers place space between "-{L,R}" and the path.6930 # Some compilers place space between "-{L,R,l}" and the path.
6931 # Remove the space.6931 # Remove the space.
6932 if test $p = "-L" ||6932 if test $p = "-L" ||
6933 test $p = "-R"; then6933 test $p = "-R" ||
6934 test $p = "-l"; then
6934 prev=$p6935 prev=$p
6935 continue6936 continue
6936 fi6937 fi
69376938
=== modified file 'configure'
--- configure 2012-02-01 13:15:01 +0000
+++ configure 2014-04-25 14:03:59 +0000
@@ -1,6 +1,6 @@
1#! /bin/sh1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles.2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.67.3# Generated by GNU Autoconf 2.68.
4#4#
5#5#
6# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,6# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -89,6 +89,7 @@
89IFS=" "" $as_nl"89IFS=" "" $as_nl"
9090
91# Find who we are. Look in the path if we contain no directory separator.91# Find who we are. Look in the path if we contain no directory separator.
92as_myself=
92case $0 in #((93case $0 in #((
93 *[\\/]* ) as_myself=$0 ;;94 *[\\/]* ) as_myself=$0 ;;
94 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR95 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -222,11 +223,18 @@
222 # We cannot yet assume a decent shell, so we have to provide a223 # We cannot yet assume a decent shell, so we have to provide a
223 # neutralization value for shells without unset; and this also224 # neutralization value for shells without unset; and this also
224 # works around shells that cannot unset nonexistent variables.225 # works around shells that cannot unset nonexistent variables.
226 # Preserve -v and -x to the replacement shell.
225 BASH_ENV=/dev/null227 BASH_ENV=/dev/null
226 ENV=/dev/null228 ENV=/dev/null
227 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV229 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
228 export CONFIG_SHELL230 export CONFIG_SHELL
229 exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}231 case $- in # ((((
232 *v*x* | *x*v* ) as_opts=-vx ;;
233 *v* ) as_opts=-v ;;
234 *x* ) as_opts=-x ;;
235 * ) as_opts= ;;
236 esac
237 exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
230fi238fi
231239
232 if test x$as_have_required = xno; then :240 if test x$as_have_required = xno; then :
@@ -1134,7 +1142,7 @@
1134 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&21142 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1135 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&1143 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1136 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&21144 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1137 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}1145 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
1138 ;;1146 ;;
11391147
1140 esac1148 esac
@@ -1445,7 +1453,7 @@
1445if $ac_init_version; then1453if $ac_init_version; then
1446 cat <<\_ACEOF1454 cat <<\_ACEOF
1447configure1455configure
1448generated by GNU Autoconf 2.671456generated by GNU Autoconf 2.68
14491457
1450Copyright (C) 2010 Free Software Foundation, Inc.1458Copyright (C) 2010 Free Software Foundation, Inc.
1451This configure script is free software; the Free Software Foundation1459This configure script is free software; the Free Software Foundation
@@ -1491,7 +1499,7 @@
14911499
1492 ac_retval=11500 ac_retval=1
1493fi1501fi
1494 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}1502 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1495 as_fn_set_status $ac_retval1503 as_fn_set_status $ac_retval
14961504
1497} # ac_fn_c_try_compile1505} # ac_fn_c_try_compile
@@ -1537,7 +1545,7 @@
1537 # interfere with the next link command; also delete a directory that is1545 # interfere with the next link command; also delete a directory that is
1538 # left behind by Apple's compiler. We do this before executing the actions.1546 # left behind by Apple's compiler. We do this before executing the actions.
1539 rm -rf conftest.dSYM conftest_ipa8_conftest.oo1547 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
1540 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}1548 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1541 as_fn_set_status $ac_retval1549 as_fn_set_status $ac_retval
15421550
1543} # ac_fn_c_try_link1551} # ac_fn_c_try_link
@@ -1551,7 +1559,7 @@
1551 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack1559 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1552 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&51560 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1553$as_echo_n "checking for $2... " >&6; }1561$as_echo_n "checking for $2... " >&6; }
1554if eval "test \"\${$3+set}\"" = set; then :1562if eval \${$3+:} false; then :
1555 $as_echo_n "(cached) " >&61563 $as_echo_n "(cached) " >&6
1556else1564else
1557 cat confdefs.h - <<_ACEOF >conftest.$ac_ext1565 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1569,7 +1577,7 @@
1569eval ac_res=\$$31577eval ac_res=\$$3
1570 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&51578 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1571$as_echo "$ac_res" >&6; }1579$as_echo "$ac_res" >&6; }
1572 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}1580 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
15731581
1574} # ac_fn_c_check_header_compile1582} # ac_fn_c_check_header_compile
15751583
@@ -1605,7 +1613,7 @@
16051613
1606 ac_retval=11614 ac_retval=1
1607fi1615fi
1608 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}1616 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1609 as_fn_set_status $ac_retval1617 as_fn_set_status $ac_retval
16101618
1611} # ac_fn_c_try_cpp1619} # ac_fn_c_try_cpp
@@ -1647,7 +1655,7 @@
1647 ac_retval=$ac_status1655 ac_retval=$ac_status
1648fi1656fi
1649 rm -rf conftest.dSYM conftest_ipa8_conftest.oo1657 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
1650 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}1658 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1651 as_fn_set_status $ac_retval1659 as_fn_set_status $ac_retval
16521660
1653} # ac_fn_c_try_run1661} # ac_fn_c_try_run
@@ -1660,7 +1668,7 @@
1660 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack1668 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1661 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&51669 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1662$as_echo_n "checking for $2... " >&6; }1670$as_echo_n "checking for $2... " >&6; }
1663if eval "test \"\${$3+set}\"" = set; then :1671if eval \${$3+:} false; then :
1664 $as_echo_n "(cached) " >&61672 $as_echo_n "(cached) " >&6
1665else1673else
1666 cat confdefs.h - <<_ACEOF >conftest.$ac_ext1674 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1715,7 +1723,7 @@
1715eval ac_res=\$$31723eval ac_res=\$$3
1716 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&51724 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1717$as_echo "$ac_res" >&6; }1725$as_echo "$ac_res" >&6; }
1718 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}1726 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
17191727
1720} # ac_fn_c_check_func1728} # ac_fn_c_check_func
17211729
@@ -1752,7 +1760,7 @@
17521760
1753 ac_retval=11761 ac_retval=1
1754fi1762fi
1755 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}1763 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1756 as_fn_set_status $ac_retval1764 as_fn_set_status $ac_retval
17571765
1758} # ac_fn_cxx_try_compile1766} # ac_fn_cxx_try_compile
@@ -1789,7 +1797,7 @@
17891797
1790 ac_retval=11798 ac_retval=1
1791fi1799fi
1792 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}1800 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1793 as_fn_set_status $ac_retval1801 as_fn_set_status $ac_retval
17941802
1795} # ac_fn_cxx_try_cpp1803} # ac_fn_cxx_try_cpp
@@ -1835,7 +1843,7 @@
1835 # interfere with the next link command; also delete a directory that is1843 # interfere with the next link command; also delete a directory that is
1836 # left behind by Apple's compiler. We do this before executing the actions.1844 # left behind by Apple's compiler. We do this before executing the actions.
1837 rm -rf conftest.dSYM conftest_ipa8_conftest.oo1845 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
1838 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}1846 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1839 as_fn_set_status $ac_retval1847 as_fn_set_status $ac_retval
18401848
1841} # ac_fn_cxx_try_link1849} # ac_fn_cxx_try_link
@@ -1873,7 +1881,7 @@
18731881
1874 ac_retval=11882 ac_retval=1
1875fi1883fi
1876 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}1884 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1877 as_fn_set_status $ac_retval1885 as_fn_set_status $ac_retval
18781886
1879} # ac_fn_fc_try_compile1887} # ac_fn_fc_try_compile
@@ -1919,7 +1927,7 @@
1919 # interfere with the next link command; also delete a directory that is1927 # interfere with the next link command; also delete a directory that is
1920 # left behind by Apple's compiler. We do this before executing the actions.1928 # left behind by Apple's compiler. We do this before executing the actions.
1921 rm -rf conftest.dSYM conftest_ipa8_conftest.oo1929 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
1922 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}1930 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1923 as_fn_set_status $ac_retval1931 as_fn_set_status $ac_retval
19241932
1925} # ac_fn_fc_try_link1933} # ac_fn_fc_try_link
@@ -1957,7 +1965,7 @@
19571965
1958 ac_retval=11966 ac_retval=1
1959fi1967fi
1960 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}1968 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1961 as_fn_set_status $ac_retval1969 as_fn_set_status $ac_retval
19621970
1963} # ac_fn_f77_try_compile1971} # ac_fn_f77_try_compile
@@ -2003,7 +2011,7 @@
2003 # interfere with the next link command; also delete a directory that is2011 # interfere with the next link command; also delete a directory that is
2004 # left behind by Apple's compiler. We do this before executing the actions.2012 # left behind by Apple's compiler. We do this before executing the actions.
2005 rm -rf conftest.dSYM conftest_ipa8_conftest.oo2013 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
2006 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}2014 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2007 as_fn_set_status $ac_retval2015 as_fn_set_status $ac_retval
20082016
2009} # ac_fn_f77_try_link2017} # ac_fn_f77_try_link
@@ -2181,7 +2189,7 @@
2181rm -f conftest.val2189rm -f conftest.val
21822190
2183 fi2191 fi
2184 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}2192 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2185 as_fn_set_status $ac_retval2193 as_fn_set_status $ac_retval
21862194
2187} # ac_fn_c_compute_int2195} # ac_fn_c_compute_int
@@ -2190,7 +2198,7 @@
2190running configure, to aid debugging if configure makes a mistake.2198running configure, to aid debugging if configure makes a mistake.
21912199
2192It was created by $as_me, which was2200It was created by $as_me, which was
2193generated by GNU Autoconf 2.67. Invocation command line was2201generated by GNU Autoconf 2.68. Invocation command line was
21942202
2195 $ $0 $@2203 $ $0 $@
21962204
@@ -2448,7 +2456,7 @@
2448 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&52456 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2449$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}2457$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2450as_fn_error $? "failed to load site script $ac_site_file2458as_fn_error $? "failed to load site script $ac_site_file
2451See \`config.log' for more details" "$LINENO" 5 ; }2459See \`config.log' for more details" "$LINENO" 5; }
2452 fi2460 fi
2453done2461done
24542462
@@ -2598,7 +2606,7 @@
25982606
2599{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&52607{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
2600$as_echo_n "checking build system type... " >&6; }2608$as_echo_n "checking build system type... " >&6; }
2601if test "${ac_cv_build+set}" = set; then :2609if ${ac_cv_build+:} false; then :
2602 $as_echo_n "(cached) " >&62610 $as_echo_n "(cached) " >&6
2603else2611else
2604 ac_build_alias=$build_alias2612 ac_build_alias=$build_alias
@@ -2614,7 +2622,7 @@
2614$as_echo "$ac_cv_build" >&6; }2622$as_echo "$ac_cv_build" >&6; }
2615case $ac_cv_build in2623case $ac_cv_build in
2616*-*-*) ;;2624*-*-*) ;;
2617*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5 ;;2625*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
2618esac2626esac
2619build=$ac_cv_build2627build=$ac_cv_build
2620ac_save_IFS=$IFS; IFS='-'2628ac_save_IFS=$IFS; IFS='-'
@@ -2632,7 +2640,7 @@
26322640
2633{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&52641{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
2634$as_echo_n "checking host system type... " >&6; }2642$as_echo_n "checking host system type... " >&6; }
2635if test "${ac_cv_host+set}" = set; then :2643if ${ac_cv_host+:} false; then :
2636 $as_echo_n "(cached) " >&62644 $as_echo_n "(cached) " >&6
2637else2645else
2638 if test "x$host_alias" = x; then2646 if test "x$host_alias" = x; then
@@ -2647,7 +2655,7 @@
2647$as_echo "$ac_cv_host" >&6; }2655$as_echo "$ac_cv_host" >&6; }
2648case $ac_cv_host in2656case $ac_cv_host in
2649*-*-*) ;;2657*-*-*) ;;
2650*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5 ;;2658*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
2651esac2659esac
2652host=$ac_cv_host2660host=$ac_cv_host
2653ac_save_IFS=$IFS; IFS='-'2661ac_save_IFS=$IFS; IFS='-'
@@ -2742,7 +2750,7 @@
2742set dummy ${ac_tool_prefix}gcc; ac_word=$22750set dummy ${ac_tool_prefix}gcc; ac_word=$2
2743{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&52751{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2744$as_echo_n "checking for $ac_word... " >&6; }2752$as_echo_n "checking for $ac_word... " >&6; }
2745if test "${ac_cv_prog_CC+set}" = set; then :2753if ${ac_cv_prog_CC+:} false; then :
2746 $as_echo_n "(cached) " >&62754 $as_echo_n "(cached) " >&6
2747else2755else
2748 if test -n "$CC"; then2756 if test -n "$CC"; then
@@ -2782,7 +2790,7 @@
2782set dummy gcc; ac_word=$22790set dummy gcc; ac_word=$2
2783{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&52791{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2784$as_echo_n "checking for $ac_word... " >&6; }2792$as_echo_n "checking for $ac_word... " >&6; }
2785if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :2793if ${ac_cv_prog_ac_ct_CC+:} false; then :
2786 $as_echo_n "(cached) " >&62794 $as_echo_n "(cached) " >&6
2787else2795else
2788 if test -n "$ac_ct_CC"; then2796 if test -n "$ac_ct_CC"; then
@@ -2835,7 +2843,7 @@
2835set dummy ${ac_tool_prefix}cc; ac_word=$22843set dummy ${ac_tool_prefix}cc; ac_word=$2
2836{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&52844{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2837$as_echo_n "checking for $ac_word... " >&6; }2845$as_echo_n "checking for $ac_word... " >&6; }
2838if test "${ac_cv_prog_CC+set}" = set; then :2846if ${ac_cv_prog_CC+:} false; then :
2839 $as_echo_n "(cached) " >&62847 $as_echo_n "(cached) " >&6
2840else2848else
2841 if test -n "$CC"; then2849 if test -n "$CC"; then
@@ -2875,7 +2883,7 @@
2875set dummy cc; ac_word=$22883set dummy cc; ac_word=$2
2876{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&52884{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2877$as_echo_n "checking for $ac_word... " >&6; }2885$as_echo_n "checking for $ac_word... " >&6; }
2878if test "${ac_cv_prog_CC+set}" = set; then :2886if ${ac_cv_prog_CC+:} false; then :
2879 $as_echo_n "(cached) " >&62887 $as_echo_n "(cached) " >&6
2880else2888else
2881 if test -n "$CC"; then2889 if test -n "$CC"; then
@@ -2934,7 +2942,7 @@
2934set dummy $ac_tool_prefix$ac_prog; ac_word=$22942set dummy $ac_tool_prefix$ac_prog; ac_word=$2
2935{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&52943{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2936$as_echo_n "checking for $ac_word... " >&6; }2944$as_echo_n "checking for $ac_word... " >&6; }
2937if test "${ac_cv_prog_CC+set}" = set; then :2945if ${ac_cv_prog_CC+:} false; then :
2938 $as_echo_n "(cached) " >&62946 $as_echo_n "(cached) " >&6
2939else2947else
2940 if test -n "$CC"; then2948 if test -n "$CC"; then
@@ -2978,7 +2986,7 @@
2978set dummy $ac_prog; ac_word=$22986set dummy $ac_prog; ac_word=$2
2979{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&52987{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2980$as_echo_n "checking for $ac_word... " >&6; }2988$as_echo_n "checking for $ac_word... " >&6; }
2981if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :2989if ${ac_cv_prog_ac_ct_CC+:} false; then :
2982 $as_echo_n "(cached) " >&62990 $as_echo_n "(cached) " >&6
2983else2991else
2984 if test -n "$ac_ct_CC"; then2992 if test -n "$ac_ct_CC"; then
@@ -3033,7 +3041,7 @@
3033test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&53041test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3034$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}3042$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3035as_fn_error $? "no acceptable C compiler found in \$PATH3043as_fn_error $? "no acceptable C compiler found in \$PATH
3036See \`config.log' for more details" "$LINENO" 5 ; }3044See \`config.log' for more details" "$LINENO" 5; }
30373045
3038# Provide some information about the compiler.3046# Provide some information about the compiler.
3039$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&53047$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
@@ -3148,7 +3156,7 @@
3148{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&53156{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3149$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}3157$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3150as_fn_error 77 "C compiler cannot create executables3158as_fn_error 77 "C compiler cannot create executables
3151See \`config.log' for more details" "$LINENO" 5 ; }3159See \`config.log' for more details" "$LINENO" 5; }
3152else3160else
3153 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&53161 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3154$as_echo "yes" >&6; }3162$as_echo "yes" >&6; }
@@ -3191,7 +3199,7 @@
3191 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&53199 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3192$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}3200$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3193as_fn_error $? "cannot compute suffix of executables: cannot compile and link3201as_fn_error $? "cannot compute suffix of executables: cannot compile and link
3194See \`config.log' for more details" "$LINENO" 5 ; }3202See \`config.log' for more details" "$LINENO" 5; }
3195fi3203fi
3196rm -f conftest conftest$ac_cv_exeext3204rm -f conftest conftest$ac_cv_exeext
3197{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&53205{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
@@ -3250,7 +3258,7 @@
3250$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}3258$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3251as_fn_error $? "cannot run C compiled programs.3259as_fn_error $? "cannot run C compiled programs.
3252If you meant to cross compile, use \`--host'.3260If you meant to cross compile, use \`--host'.
3253See \`config.log' for more details" "$LINENO" 5 ; }3261See \`config.log' for more details" "$LINENO" 5; }
3254 fi3262 fi
3255 fi3263 fi
3256fi3264fi
@@ -3261,7 +3269,7 @@
3261ac_clean_files=$ac_clean_files_save3269ac_clean_files=$ac_clean_files_save
3262{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&53270{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
3263$as_echo_n "checking for suffix of object files... " >&6; }3271$as_echo_n "checking for suffix of object files... " >&6; }
3264if test "${ac_cv_objext+set}" = set; then :3272if ${ac_cv_objext+:} false; then :
3265 $as_echo_n "(cached) " >&63273 $as_echo_n "(cached) " >&6
3266else3274else
3267 cat confdefs.h - <<_ACEOF >conftest.$ac_ext3275 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -3302,7 +3310,7 @@
3302{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&53310{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3303$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}3311$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3304as_fn_error $? "cannot compute suffix of object files: cannot compile3312as_fn_error $? "cannot compute suffix of object files: cannot compile
3305See \`config.log' for more details" "$LINENO" 5 ; }3313See \`config.log' for more details" "$LINENO" 5; }
3306fi3314fi
3307rm -f conftest.$ac_cv_objext conftest.$ac_ext3315rm -f conftest.$ac_cv_objext conftest.$ac_ext
3308fi3316fi
@@ -3312,7 +3320,7 @@
3312ac_objext=$OBJEXT3320ac_objext=$OBJEXT
3313{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&53321{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
3314$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }3322$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
3315if test "${ac_cv_c_compiler_gnu+set}" = set; then :3323if ${ac_cv_c_compiler_gnu+:} false; then :
3316 $as_echo_n "(cached) " >&63324 $as_echo_n "(cached) " >&6
3317else3325else
3318 cat confdefs.h - <<_ACEOF >conftest.$ac_ext3326 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -3349,7 +3357,7 @@
3349ac_save_CFLAGS=$CFLAGS3357ac_save_CFLAGS=$CFLAGS
3350{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&53358{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
3351$as_echo_n "checking whether $CC accepts -g... " >&6; }3359$as_echo_n "checking whether $CC accepts -g... " >&6; }
3352if test "${ac_cv_prog_cc_g+set}" = set; then :3360if ${ac_cv_prog_cc_g+:} false; then :
3353 $as_echo_n "(cached) " >&63361 $as_echo_n "(cached) " >&6
3354else3362else
3355 ac_save_c_werror_flag=$ac_c_werror_flag3363 ac_save_c_werror_flag=$ac_c_werror_flag
@@ -3427,7 +3435,7 @@
3427fi3435fi
3428{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&53436{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
3429$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }3437$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
3430if test "${ac_cv_prog_cc_c89+set}" = set; then :3438if ${ac_cv_prog_cc_c89+:} false; then :
3431 $as_echo_n "(cached) " >&63439 $as_echo_n "(cached) " >&6
3432else3440else
3433 ac_cv_prog_cc_c89=no3441 ac_cv_prog_cc_c89=no
@@ -3524,7 +3532,7 @@
35243532
3525{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&53533{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5
3526$as_echo_n "checking for a sed that does not truncate output... " >&6; }3534$as_echo_n "checking for a sed that does not truncate output... " >&6; }
3527if test "${ac_cv_path_SED+set}" = set; then :3535if ${ac_cv_path_SED+:} false; then :
3528 $as_echo_n "(cached) " >&63536 $as_echo_n "(cached) " >&6
3529else3537else
3530 ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/3538 ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/
@@ -3606,7 +3614,7 @@
36063614
3607{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&53615{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
3608$as_echo_n "checking for grep that handles long lines and -e... " >&6; }3616$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
3609if test "${ac_cv_path_GREP+set}" = set; then :3617if ${ac_cv_path_GREP+:} false; then :
3610 $as_echo_n "(cached) " >&63618 $as_echo_n "(cached) " >&6
3611else3619else
3612 if test -z "$GREP"; then3620 if test -z "$GREP"; then
@@ -3669,7 +3677,7 @@
36693677
3670{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&53678{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
3671$as_echo_n "checking for egrep... " >&6; }3679$as_echo_n "checking for egrep... " >&6; }
3672if test "${ac_cv_path_EGREP+set}" = set; then :3680if ${ac_cv_path_EGREP+:} false; then :
3673 $as_echo_n "(cached) " >&63681 $as_echo_n "(cached) " >&6
3674else3682else
3675 if echo a | $GREP -E '(a|b)' >/dev/null 2>&13683 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
@@ -3736,7 +3744,7 @@
37363744
3737{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&53745{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5
3738$as_echo_n "checking for fgrep... " >&6; }3746$as_echo_n "checking for fgrep... " >&6; }
3739if test "${ac_cv_path_FGREP+set}" = set; then :3747if ${ac_cv_path_FGREP+:} false; then :
3740 $as_echo_n "(cached) " >&63748 $as_echo_n "(cached) " >&6
3741else3749else
3742 if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&13750 if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1
@@ -3867,7 +3875,7 @@
3867 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&53875 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
3868$as_echo_n "checking for non-GNU ld... " >&6; }3876$as_echo_n "checking for non-GNU ld... " >&6; }
3869fi3877fi
3870if test "${lt_cv_path_LD+set}" = set; then :3878if ${lt_cv_path_LD+:} false; then :
3871 $as_echo_n "(cached) " >&63879 $as_echo_n "(cached) " >&6
3872else3880else
3873 if test -z "$LD"; then3881 if test -z "$LD"; then
@@ -3907,7 +3915,7 @@
3907test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 53915test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
3908{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&53916{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
3909$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }3917$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
3910if test "${lt_cv_prog_gnu_ld+set}" = set; then :3918if ${lt_cv_prog_gnu_ld+:} false; then :
3911 $as_echo_n "(cached) " >&63919 $as_echo_n "(cached) " >&6
3912else3920else
3913 # I'd rather use --version here, but apparently some GNU lds only accept -v.3921 # I'd rather use --version here, but apparently some GNU lds only accept -v.
@@ -3934,7 +3942,7 @@
39343942
3935{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&53943{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5
3936$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; }3944$as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; }
3937if test "${lt_cv_path_NM+set}" = set; then :3945if ${lt_cv_path_NM+:} false; then :
3938 $as_echo_n "(cached) " >&63946 $as_echo_n "(cached) " >&6
3939else3947else
3940 if test -n "$NM"; then3948 if test -n "$NM"; then
@@ -3997,7 +4005,7 @@
3997set dummy $ac_tool_prefix$ac_prog; ac_word=$24005set dummy $ac_tool_prefix$ac_prog; ac_word=$2
3998{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&54006{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3999$as_echo_n "checking for $ac_word... " >&6; }4007$as_echo_n "checking for $ac_word... " >&6; }
4000if test "${ac_cv_prog_DUMPBIN+set}" = set; then :4008if ${ac_cv_prog_DUMPBIN+:} false; then :
4001 $as_echo_n "(cached) " >&64009 $as_echo_n "(cached) " >&6
4002else4010else
4003 if test -n "$DUMPBIN"; then4011 if test -n "$DUMPBIN"; then
@@ -4041,7 +4049,7 @@
4041set dummy $ac_prog; ac_word=$24049set dummy $ac_prog; ac_word=$2
4042{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&54050{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4043$as_echo_n "checking for $ac_word... " >&6; }4051$as_echo_n "checking for $ac_word... " >&6; }
4044if test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then :4052if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then :
4045 $as_echo_n "(cached) " >&64053 $as_echo_n "(cached) " >&6
4046else4054else
4047 if test -n "$ac_ct_DUMPBIN"; then4055 if test -n "$ac_ct_DUMPBIN"; then
@@ -4113,7 +4121,7 @@
41134121
4114{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&54122{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5
4115$as_echo_n "checking the name lister ($NM) interface... " >&6; }4123$as_echo_n "checking the name lister ($NM) interface... " >&6; }
4116if test "${lt_cv_nm_interface+set}" = set; then :4124if ${lt_cv_nm_interface+:} false; then :
4117 $as_echo_n "(cached) " >&64125 $as_echo_n "(cached) " >&6
4118else4126else
4119 lt_cv_nm_interface="BSD nm"4127 lt_cv_nm_interface="BSD nm"
@@ -4148,7 +4156,7 @@
4148# find the maximum length of command line arguments4156# find the maximum length of command line arguments
4149{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&54157{ $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5
4150$as_echo_n "checking the maximum length of command line arguments... " >&6; }4158$as_echo_n "checking the maximum length of command line arguments... " >&6; }
4151if test "${lt_cv_sys_max_cmd_len+set}" = set; then :4159if ${lt_cv_sys_max_cmd_len+:} false; then :
4152 $as_echo_n "(cached) " >&64160 $as_echo_n "(cached) " >&6
4153else4161else
4154 i=04162 i=0
@@ -4345,7 +4353,7 @@
43454353
4346{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&54354{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5
4347$as_echo_n "checking how to convert $build file names to $host format... " >&6; }4355$as_echo_n "checking how to convert $build file names to $host format... " >&6; }
4348if test "${lt_cv_to_host_file_cmd+set}" = set; then :4356if ${lt_cv_to_host_file_cmd+:} false; then :
4349 $as_echo_n "(cached) " >&64357 $as_echo_n "(cached) " >&6
4350else4358else
4351 case $host in4359 case $host in
@@ -4392,7 +4400,7 @@
43924400
4393{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&54401{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5
4394$as_echo_n "checking how to convert $build file names to toolchain format... " >&6; }4402$as_echo_n "checking how to convert $build file names to toolchain format... " >&6; }
4395if test "${lt_cv_to_tool_file_cmd+set}" = set; then :4403if ${lt_cv_to_tool_file_cmd+:} false; then :
4396 $as_echo_n "(cached) " >&64404 $as_echo_n "(cached) " >&6
4397else4405else
4398 #assume ordinary cross tools, or native build.4406 #assume ordinary cross tools, or native build.
@@ -4419,7 +4427,7 @@
44194427
4420{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&54428{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5
4421$as_echo_n "checking for $LD option to reload object files... " >&6; }4429$as_echo_n "checking for $LD option to reload object files... " >&6; }
4422if test "${lt_cv_ld_reload_flag+set}" = set; then :4430if ${lt_cv_ld_reload_flag+:} false; then :
4423 $as_echo_n "(cached) " >&64431 $as_echo_n "(cached) " >&6
4424else4432else
4425 lt_cv_ld_reload_flag='-r'4433 lt_cv_ld_reload_flag='-r'
@@ -4460,7 +4468,7 @@
4460set dummy ${ac_tool_prefix}objdump; ac_word=$24468set dummy ${ac_tool_prefix}objdump; ac_word=$2
4461{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&54469{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4462$as_echo_n "checking for $ac_word... " >&6; }4470$as_echo_n "checking for $ac_word... " >&6; }
4463if test "${ac_cv_prog_OBJDUMP+set}" = set; then :4471if ${ac_cv_prog_OBJDUMP+:} false; then :
4464 $as_echo_n "(cached) " >&64472 $as_echo_n "(cached) " >&6
4465else4473else
4466 if test -n "$OBJDUMP"; then4474 if test -n "$OBJDUMP"; then
@@ -4500,7 +4508,7 @@
4500set dummy objdump; ac_word=$24508set dummy objdump; ac_word=$2
4501{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&54509{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4502$as_echo_n "checking for $ac_word... " >&6; }4510$as_echo_n "checking for $ac_word... " >&6; }
4503if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then :4511if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then :
4504 $as_echo_n "(cached) " >&64512 $as_echo_n "(cached) " >&6
4505else4513else
4506 if test -n "$ac_ct_OBJDUMP"; then4514 if test -n "$ac_ct_OBJDUMP"; then
@@ -4559,7 +4567,7 @@
45594567
4560{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&54568{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5
4561$as_echo_n "checking how to recognize dependent libraries... " >&6; }4569$as_echo_n "checking how to recognize dependent libraries... " >&6; }
4562if test "${lt_cv_deplibs_check_method+set}" = set; then :4570if ${lt_cv_deplibs_check_method+:} false; then :
4563 $as_echo_n "(cached) " >&64571 $as_echo_n "(cached) " >&6
4564else4572else
4565 lt_cv_file_magic_cmd='$MAGIC_CMD'4573 lt_cv_file_magic_cmd='$MAGIC_CMD'
@@ -4806,7 +4814,7 @@
4806set dummy ${ac_tool_prefix}dlltool; ac_word=$24814set dummy ${ac_tool_prefix}dlltool; ac_word=$2
4807{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&54815{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4808$as_echo_n "checking for $ac_word... " >&6; }4816$as_echo_n "checking for $ac_word... " >&6; }
4809if test "${ac_cv_prog_DLLTOOL+set}" = set; then :4817if ${ac_cv_prog_DLLTOOL+:} false; then :
4810 $as_echo_n "(cached) " >&64818 $as_echo_n "(cached) " >&6
4811else4819else
4812 if test -n "$DLLTOOL"; then4820 if test -n "$DLLTOOL"; then
@@ -4846,7 +4854,7 @@
4846set dummy dlltool; ac_word=$24854set dummy dlltool; ac_word=$2
4847{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&54855{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4848$as_echo_n "checking for $ac_word... " >&6; }4856$as_echo_n "checking for $ac_word... " >&6; }
4849if test "${ac_cv_prog_ac_ct_DLLTOOL+set}" = set; then :4857if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then :
4850 $as_echo_n "(cached) " >&64858 $as_echo_n "(cached) " >&6
4851else4859else
4852 if test -n "$ac_ct_DLLTOOL"; then4860 if test -n "$ac_ct_DLLTOOL"; then
@@ -4906,7 +4914,7 @@
49064914
4907{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&54915{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5
4908$as_echo_n "checking how to associate runtime and link libraries... " >&6; }4916$as_echo_n "checking how to associate runtime and link libraries... " >&6; }
4909if test "${lt_cv_sharedlib_from_linklib_cmd+set}" = set; then :4917if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then :
4910 $as_echo_n "(cached) " >&64918 $as_echo_n "(cached) " >&6
4911else4919else
4912 lt_cv_sharedlib_from_linklib_cmd='unknown'4920 lt_cv_sharedlib_from_linklib_cmd='unknown'
@@ -4950,7 +4958,7 @@
4950set dummy $ac_tool_prefix$ac_prog; ac_word=$24958set dummy $ac_tool_prefix$ac_prog; ac_word=$2
4951{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&54959{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4952$as_echo_n "checking for $ac_word... " >&6; }4960$as_echo_n "checking for $ac_word... " >&6; }
4953if test "${ac_cv_prog_AR+set}" = set; then :4961if ${ac_cv_prog_AR+:} false; then :
4954 $as_echo_n "(cached) " >&64962 $as_echo_n "(cached) " >&6
4955else4963else
4956 if test -n "$AR"; then4964 if test -n "$AR"; then
@@ -4994,7 +5002,7 @@
4994set dummy $ac_prog; ac_word=$25002set dummy $ac_prog; ac_word=$2
4995{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&55003{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4996$as_echo_n "checking for $ac_word... " >&6; }5004$as_echo_n "checking for $ac_word... " >&6; }
4997if test "${ac_cv_prog_ac_ct_AR+set}" = set; then :5005if ${ac_cv_prog_ac_ct_AR+:} false; then :
4998 $as_echo_n "(cached) " >&65006 $as_echo_n "(cached) " >&6
4999else5007else
5000 if test -n "$ac_ct_AR"; then5008 if test -n "$ac_ct_AR"; then
@@ -5058,7 +5066,7 @@
50585066
5059{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&55067{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5
5060$as_echo_n "checking for archiver @FILE support... " >&6; }5068$as_echo_n "checking for archiver @FILE support... " >&6; }
5061if test "${lt_cv_ar_at_file+set}" = set; then :5069if ${lt_cv_ar_at_file+:} false; then :
5062 $as_echo_n "(cached) " >&65070 $as_echo_n "(cached) " >&6
5063else5071else
5064 lt_cv_ar_at_file=no5072 lt_cv_ar_at_file=no
@@ -5119,7 +5127,7 @@
5119set dummy ${ac_tool_prefix}strip; ac_word=$25127set dummy ${ac_tool_prefix}strip; ac_word=$2
5120{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&55128{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5121$as_echo_n "checking for $ac_word... " >&6; }5129$as_echo_n "checking for $ac_word... " >&6; }
5122if test "${ac_cv_prog_STRIP+set}" = set; then :5130if ${ac_cv_prog_STRIP+:} false; then :
5123 $as_echo_n "(cached) " >&65131 $as_echo_n "(cached) " >&6
5124else5132else
5125 if test -n "$STRIP"; then5133 if test -n "$STRIP"; then
@@ -5159,7 +5167,7 @@
5159set dummy strip; ac_word=$25167set dummy strip; ac_word=$2
5160{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&55168{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5161$as_echo_n "checking for $ac_word... " >&6; }5169$as_echo_n "checking for $ac_word... " >&6; }
5162if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :5170if ${ac_cv_prog_ac_ct_STRIP+:} false; then :
5163 $as_echo_n "(cached) " >&65171 $as_echo_n "(cached) " >&6
5164else5172else
5165 if test -n "$ac_ct_STRIP"; then5173 if test -n "$ac_ct_STRIP"; then
@@ -5218,7 +5226,7 @@
5218set dummy ${ac_tool_prefix}ranlib; ac_word=$25226set dummy ${ac_tool_prefix}ranlib; ac_word=$2
5219{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&55227{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5220$as_echo_n "checking for $ac_word... " >&6; }5228$as_echo_n "checking for $ac_word... " >&6; }
5221if test "${ac_cv_prog_RANLIB+set}" = set; then :5229if ${ac_cv_prog_RANLIB+:} false; then :
5222 $as_echo_n "(cached) " >&65230 $as_echo_n "(cached) " >&6
5223else5231else
5224 if test -n "$RANLIB"; then5232 if test -n "$RANLIB"; then
@@ -5258,7 +5266,7 @@
5258set dummy ranlib; ac_word=$25266set dummy ranlib; ac_word=$2
5259{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&55267{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5260$as_echo_n "checking for $ac_word... " >&6; }5268$as_echo_n "checking for $ac_word... " >&6; }
5261if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :5269if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
5262 $as_echo_n "(cached) " >&65270 $as_echo_n "(cached) " >&6
5263else5271else
5264 if test -n "$ac_ct_RANLIB"; then5272 if test -n "$ac_ct_RANLIB"; then
@@ -5362,7 +5370,7 @@
5362set dummy $ac_prog; ac_word=$25370set dummy $ac_prog; ac_word=$2
5363{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&55371{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5364$as_echo_n "checking for $ac_word... " >&6; }5372$as_echo_n "checking for $ac_word... " >&6; }
5365if test "${ac_cv_prog_AWK+set}" = set; then :5373if ${ac_cv_prog_AWK+:} false; then :
5366 $as_echo_n "(cached) " >&65374 $as_echo_n "(cached) " >&6
5367else5375else
5368 if test -n "$AWK"; then5376 if test -n "$AWK"; then
@@ -5429,7 +5437,7 @@
5429# Check for command to grab the raw symbol name followed by C symbol from nm.5437# Check for command to grab the raw symbol name followed by C symbol from nm.
5430{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&55438{ $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5
5431$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; }5439$as_echo_n "checking command to parse $NM output from $compiler object... " >&6; }
5432if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then :5440if ${lt_cv_sys_global_symbol_pipe+:} false; then :
5433 $as_echo_n "(cached) " >&65441 $as_echo_n "(cached) " >&6
5434else5442else
54355443
@@ -5862,7 +5870,7 @@
5862 CFLAGS="$CFLAGS -belf"5870 CFLAGS="$CFLAGS -belf"
5863 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&55871 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5
5864$as_echo_n "checking whether the C compiler needs -belf... " >&6; }5872$as_echo_n "checking whether the C compiler needs -belf... " >&6; }
5865if test "${lt_cv_cc_needs_belf+set}" = set; then :5873if ${lt_cv_cc_needs_belf+:} false; then :
5866 $as_echo_n "(cached) " >&65874 $as_echo_n "(cached) " >&6
5867else5875else
5868 ac_ext=c5876 ac_ext=c
@@ -5935,7 +5943,7 @@
5935set dummy ${ac_tool_prefix}mt; ac_word=$25943set dummy ${ac_tool_prefix}mt; ac_word=$2
5936{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&55944{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5937$as_echo_n "checking for $ac_word... " >&6; }5945$as_echo_n "checking for $ac_word... " >&6; }
5938if test "${ac_cv_prog_MANIFEST_TOOL+set}" = set; then :5946if ${ac_cv_prog_MANIFEST_TOOL+:} false; then :
5939 $as_echo_n "(cached) " >&65947 $as_echo_n "(cached) " >&6
5940else5948else
5941 if test -n "$MANIFEST_TOOL"; then5949 if test -n "$MANIFEST_TOOL"; then
@@ -5975,7 +5983,7 @@
5975set dummy mt; ac_word=$25983set dummy mt; ac_word=$2
5976{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&55984{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5977$as_echo_n "checking for $ac_word... " >&6; }5985$as_echo_n "checking for $ac_word... " >&6; }
5978if test "${ac_cv_prog_ac_ct_MANIFEST_TOOL+set}" = set; then :5986if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then :
5979 $as_echo_n "(cached) " >&65987 $as_echo_n "(cached) " >&6
5980else5988else
5981 if test -n "$ac_ct_MANIFEST_TOOL"; then5989 if test -n "$ac_ct_MANIFEST_TOOL"; then
@@ -6025,7 +6033,7 @@
6025test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt6033test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt
6026{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&56034{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5
6027$as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; }6035$as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; }
6028if test "${lt_cv_path_mainfest_tool+set}" = set; then :6036if ${lt_cv_path_mainfest_tool+:} false; then :
6029 $as_echo_n "(cached) " >&66037 $as_echo_n "(cached) " >&6
6030else6038else
6031 lt_cv_path_mainfest_tool=no6039 lt_cv_path_mainfest_tool=no
@@ -6055,7 +6063,7 @@
6055set dummy ${ac_tool_prefix}dsymutil; ac_word=$26063set dummy ${ac_tool_prefix}dsymutil; ac_word=$2
6056{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&56064{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6057$as_echo_n "checking for $ac_word... " >&6; }6065$as_echo_n "checking for $ac_word... " >&6; }
6058if test "${ac_cv_prog_DSYMUTIL+set}" = set; then :6066if ${ac_cv_prog_DSYMUTIL+:} false; then :
6059 $as_echo_n "(cached) " >&66067 $as_echo_n "(cached) " >&6
6060else6068else
6061 if test -n "$DSYMUTIL"; then6069 if test -n "$DSYMUTIL"; then
@@ -6095,7 +6103,7 @@
6095set dummy dsymutil; ac_word=$26103set dummy dsymutil; ac_word=$2
6096{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&56104{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6097$as_echo_n "checking for $ac_word... " >&6; }6105$as_echo_n "checking for $ac_word... " >&6; }
6098if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then :6106if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then :
6099 $as_echo_n "(cached) " >&66107 $as_echo_n "(cached) " >&6
6100else6108else
6101 if test -n "$ac_ct_DSYMUTIL"; then6109 if test -n "$ac_ct_DSYMUTIL"; then
@@ -6147,7 +6155,7 @@
6147set dummy ${ac_tool_prefix}nmedit; ac_word=$26155set dummy ${ac_tool_prefix}nmedit; ac_word=$2
6148{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&56156{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6149$as_echo_n "checking for $ac_word... " >&6; }6157$as_echo_n "checking for $ac_word... " >&6; }
6150if test "${ac_cv_prog_NMEDIT+set}" = set; then :6158if ${ac_cv_prog_NMEDIT+:} false; then :
6151 $as_echo_n "(cached) " >&66159 $as_echo_n "(cached) " >&6
6152else6160else
6153 if test -n "$NMEDIT"; then6161 if test -n "$NMEDIT"; then
@@ -6187,7 +6195,7 @@
6187set dummy nmedit; ac_word=$26195set dummy nmedit; ac_word=$2
6188{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&56196{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6189$as_echo_n "checking for $ac_word... " >&6; }6197$as_echo_n "checking for $ac_word... " >&6; }
6190if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then :6198if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then :
6191 $as_echo_n "(cached) " >&66199 $as_echo_n "(cached) " >&6
6192else6200else
6193 if test -n "$ac_ct_NMEDIT"; then6201 if test -n "$ac_ct_NMEDIT"; then
@@ -6239,7 +6247,7 @@
6239set dummy ${ac_tool_prefix}lipo; ac_word=$26247set dummy ${ac_tool_prefix}lipo; ac_word=$2
6240{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&56248{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6241$as_echo_n "checking for $ac_word... " >&6; }6249$as_echo_n "checking for $ac_word... " >&6; }
6242if test "${ac_cv_prog_LIPO+set}" = set; then :6250if ${ac_cv_prog_LIPO+:} false; then :
6243 $as_echo_n "(cached) " >&66251 $as_echo_n "(cached) " >&6
6244else6252else
6245 if test -n "$LIPO"; then6253 if test -n "$LIPO"; then
@@ -6279,7 +6287,7 @@
6279set dummy lipo; ac_word=$26287set dummy lipo; ac_word=$2
6280{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&56288{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6281$as_echo_n "checking for $ac_word... " >&6; }6289$as_echo_n "checking for $ac_word... " >&6; }
6282if test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then :6290if ${ac_cv_prog_ac_ct_LIPO+:} false; then :
6283 $as_echo_n "(cached) " >&66291 $as_echo_n "(cached) " >&6
6284else6292else
6285 if test -n "$ac_ct_LIPO"; then6293 if test -n "$ac_ct_LIPO"; then
@@ -6331,7 +6339,7 @@
6331set dummy ${ac_tool_prefix}otool; ac_word=$26339set dummy ${ac_tool_prefix}otool; ac_word=$2
6332{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&56340{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6333$as_echo_n "checking for $ac_word... " >&6; }6341$as_echo_n "checking for $ac_word... " >&6; }
6334if test "${ac_cv_prog_OTOOL+set}" = set; then :6342if ${ac_cv_prog_OTOOL+:} false; then :
6335 $as_echo_n "(cached) " >&66343 $as_echo_n "(cached) " >&6
6336else6344else
6337 if test -n "$OTOOL"; then6345 if test -n "$OTOOL"; then
@@ -6371,7 +6379,7 @@
6371set dummy otool; ac_word=$26379set dummy otool; ac_word=$2
6372{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&56380{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6373$as_echo_n "checking for $ac_word... " >&6; }6381$as_echo_n "checking for $ac_word... " >&6; }
6374if test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then :6382if ${ac_cv_prog_ac_ct_OTOOL+:} false; then :
6375 $as_echo_n "(cached) " >&66383 $as_echo_n "(cached) " >&6
6376else6384else
6377 if test -n "$ac_ct_OTOOL"; then6385 if test -n "$ac_ct_OTOOL"; then
@@ -6423,7 +6431,7 @@
6423set dummy ${ac_tool_prefix}otool64; ac_word=$26431set dummy ${ac_tool_prefix}otool64; ac_word=$2
6424{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&56432{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6425$as_echo_n "checking for $ac_word... " >&6; }6433$as_echo_n "checking for $ac_word... " >&6; }
6426if test "${ac_cv_prog_OTOOL64+set}" = set; then :6434if ${ac_cv_prog_OTOOL64+:} false; then :
6427 $as_echo_n "(cached) " >&66435 $as_echo_n "(cached) " >&6
6428else6436else
6429 if test -n "$OTOOL64"; then6437 if test -n "$OTOOL64"; then
@@ -6463,7 +6471,7 @@
6463set dummy otool64; ac_word=$26471set dummy otool64; ac_word=$2
6464{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&56472{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6465$as_echo_n "checking for $ac_word... " >&6; }6473$as_echo_n "checking for $ac_word... " >&6; }
6466if test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then :6474if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then :
6467 $as_echo_n "(cached) " >&66475 $as_echo_n "(cached) " >&6
6468else6476else
6469 if test -n "$ac_ct_OTOOL64"; then6477 if test -n "$ac_ct_OTOOL64"; then
@@ -6538,7 +6546,7 @@
65386546
6539 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&56547 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5
6540$as_echo_n "checking for -single_module linker flag... " >&6; }6548$as_echo_n "checking for -single_module linker flag... " >&6; }
6541if test "${lt_cv_apple_cc_single_mod+set}" = set; then :6549if ${lt_cv_apple_cc_single_mod+:} false; then :
6542 $as_echo_n "(cached) " >&66550 $as_echo_n "(cached) " >&6
6543else6551else
6544 lt_cv_apple_cc_single_mod=no6552 lt_cv_apple_cc_single_mod=no
@@ -6567,7 +6575,7 @@
6567$as_echo "$lt_cv_apple_cc_single_mod" >&6; }6575$as_echo "$lt_cv_apple_cc_single_mod" >&6; }
6568 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&56576 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5
6569$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; }6577$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; }
6570if test "${lt_cv_ld_exported_symbols_list+set}" = set; then :6578if ${lt_cv_ld_exported_symbols_list+:} false; then :
6571 $as_echo_n "(cached) " >&66579 $as_echo_n "(cached) " >&6
6572else6580else
6573 lt_cv_ld_exported_symbols_list=no6581 lt_cv_ld_exported_symbols_list=no
@@ -6599,7 +6607,7 @@
6599$as_echo "$lt_cv_ld_exported_symbols_list" >&6; }6607$as_echo "$lt_cv_ld_exported_symbols_list" >&6; }
6600 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&56608 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5
6601$as_echo_n "checking for -force_load linker flag... " >&6; }6609$as_echo_n "checking for -force_load linker flag... " >&6; }
6602if test "${lt_cv_ld_force_load+set}" = set; then :6610if ${lt_cv_ld_force_load+:} false; then :
6603 $as_echo_n "(cached) " >&66611 $as_echo_n "(cached) " >&6
6604else6612else
6605 lt_cv_ld_force_load=no6613 lt_cv_ld_force_load=no
@@ -6676,7 +6684,7 @@
6676 CPP=6684 CPP=
6677fi6685fi
6678if test -z "$CPP"; then6686if test -z "$CPP"; then
6679 if test "${ac_cv_prog_CPP+set}" = set; then :6687 if ${ac_cv_prog_CPP+:} false; then :
6680 $as_echo_n "(cached) " >&66688 $as_echo_n "(cached) " >&6
6681else6689else
6682 # Double quotes because CPP needs to be expanded6690 # Double quotes because CPP needs to be expanded
@@ -6792,7 +6800,7 @@
6792 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&56800 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
6793$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}6801$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
6794as_fn_error $? "C preprocessor \"$CPP\" fails sanity check6802as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
6795See \`config.log' for more details" "$LINENO" 5 ; }6803See \`config.log' for more details" "$LINENO" 5; }
6796fi6804fi
67976805
6798ac_ext=c6806ac_ext=c
@@ -6804,7 +6812,7 @@
68046812
6805{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&56813{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
6806$as_echo_n "checking for ANSI C header files... " >&6; }6814$as_echo_n "checking for ANSI C header files... " >&6; }
6807if test "${ac_cv_header_stdc+set}" = set; then :6815if ${ac_cv_header_stdc+:} false; then :
6808 $as_echo_n "(cached) " >&66816 $as_echo_n "(cached) " >&6
6809else6817else
6810 cat confdefs.h - <<_ACEOF >conftest.$ac_ext6818 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6935,7 +6943,7 @@
6935do :6943do :
6936 ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default6944 ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default
6937"6945"
6938if test "x$ac_cv_header_dlfcn_h" = x""yes; then :6946if test "x$ac_cv_header_dlfcn_h" = xyes; then :
6939 cat >>confdefs.h <<_ACEOF6947 cat >>confdefs.h <<_ACEOF
6940#define HAVE_DLFCN_H 16948#define HAVE_DLFCN_H 1
6941_ACEOF6949_ACEOF
@@ -7122,7 +7130,7 @@
71227130
7123{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&57131{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5
7124$as_echo_n "checking for objdir... " >&6; }7132$as_echo_n "checking for objdir... " >&6; }
7125if test "${lt_cv_objdir+set}" = set; then :7133if ${lt_cv_objdir+:} false; then :
7126 $as_echo_n "(cached) " >&67134 $as_echo_n "(cached) " >&6
7127else7135else
7128 rm -f .libs 2>/dev/null7136 rm -f .libs 2>/dev/null
@@ -7200,7 +7208,7 @@
7200 if test "$file_magic_cmd" = '$MAGIC_CMD'; then7208 if test "$file_magic_cmd" = '$MAGIC_CMD'; then
7201 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&57209 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5
7202$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; }7210$as_echo_n "checking for ${ac_tool_prefix}file... " >&6; }
7203if test "${lt_cv_path_MAGIC_CMD+set}" = set; then :7211if ${lt_cv_path_MAGIC_CMD+:} false; then :
7204 $as_echo_n "(cached) " >&67212 $as_echo_n "(cached) " >&6
7205else7213else
7206 case $MAGIC_CMD in7214 case $MAGIC_CMD in
@@ -7266,7 +7274,7 @@
7266 if test -n "$ac_tool_prefix"; then7274 if test -n "$ac_tool_prefix"; then
7267 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&57275 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5
7268$as_echo_n "checking for file... " >&6; }7276$as_echo_n "checking for file... " >&6; }
7269if test "${lt_cv_path_MAGIC_CMD+set}" = set; then :7277if ${lt_cv_path_MAGIC_CMD+:} false; then :
7270 $as_echo_n "(cached) " >&67278 $as_echo_n "(cached) " >&6
7271else7279else
7272 case $MAGIC_CMD in7280 case $MAGIC_CMD in
@@ -7404,7 +7412,7 @@
74047412
7405 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&57413 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
7406$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; }7414$as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; }
7407if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then :7415if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then :
7408 $as_echo_n "(cached) " >&67416 $as_echo_n "(cached) " >&6
7409else7417else
7410 lt_cv_prog_compiler_rtti_exceptions=no7418 lt_cv_prog_compiler_rtti_exceptions=no
@@ -7749,7 +7757,7 @@
77497757
7750{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&57758{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5
7751$as_echo_n "checking for $compiler option to produce PIC... " >&6; }7759$as_echo_n "checking for $compiler option to produce PIC... " >&6; }
7752if test "${lt_cv_prog_compiler_pic+set}" = set; then :7760if ${lt_cv_prog_compiler_pic+:} false; then :
7753 $as_echo_n "(cached) " >&67761 $as_echo_n "(cached) " >&6
7754else7762else
7755 lt_cv_prog_compiler_pic=$lt_prog_compiler_pic7763 lt_cv_prog_compiler_pic=$lt_prog_compiler_pic
@@ -7764,7 +7772,7 @@
7764if test -n "$lt_prog_compiler_pic"; then7772if test -n "$lt_prog_compiler_pic"; then
7765 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&57773 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5
7766$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; }7774$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; }
7767if test "${lt_cv_prog_compiler_pic_works+set}" = set; then :7775if ${lt_cv_prog_compiler_pic_works+:} false; then :
7768 $as_echo_n "(cached) " >&67776 $as_echo_n "(cached) " >&6
7769else7777else
7770 lt_cv_prog_compiler_pic_works=no7778 lt_cv_prog_compiler_pic_works=no
@@ -7828,7 +7836,7 @@
7828wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"7836wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\"
7829{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&57837{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
7830$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }7838$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
7831if test "${lt_cv_prog_compiler_static_works+set}" = set; then :7839if ${lt_cv_prog_compiler_static_works+:} false; then :
7832 $as_echo_n "(cached) " >&67840 $as_echo_n "(cached) " >&6
7833else7841else
7834 lt_cv_prog_compiler_static_works=no7842 lt_cv_prog_compiler_static_works=no
@@ -7871,7 +7879,7 @@
78717879
7872 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&57880 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
7873$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }7881$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
7874if test "${lt_cv_prog_compiler_c_o+set}" = set; then :7882if ${lt_cv_prog_compiler_c_o+:} false; then :
7875 $as_echo_n "(cached) " >&67883 $as_echo_n "(cached) " >&6
7876else7884else
7877 lt_cv_prog_compiler_c_o=no7885 lt_cv_prog_compiler_c_o=no
@@ -7926,7 +7934,7 @@
79267934
7927 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&57935 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
7928$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }7936$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
7929if test "${lt_cv_prog_compiler_c_o+set}" = set; then :7937if ${lt_cv_prog_compiler_c_o+:} false; then :
7930 $as_echo_n "(cached) " >&67938 $as_echo_n "(cached) " >&6
7931else7939else
7932 lt_cv_prog_compiler_c_o=no7940 lt_cv_prog_compiler_c_o=no
@@ -8491,7 +8499,7 @@
8491 if test "${lt_cv_aix_libpath+set}" = set; then8499 if test "${lt_cv_aix_libpath+set}" = set; then
8492 aix_libpath=$lt_cv_aix_libpath8500 aix_libpath=$lt_cv_aix_libpath
8493else8501else
8494 if test "${lt_cv_aix_libpath_+set}" = set; then :8502 if ${lt_cv_aix_libpath_+:} false; then :
8495 $as_echo_n "(cached) " >&68503 $as_echo_n "(cached) " >&6
8496else8504else
8497 cat confdefs.h - <<_ACEOF >conftest.$ac_ext8505 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -8544,7 +8552,7 @@
8544 if test "${lt_cv_aix_libpath+set}" = set; then8552 if test "${lt_cv_aix_libpath+set}" = set; then
8545 aix_libpath=$lt_cv_aix_libpath8553 aix_libpath=$lt_cv_aix_libpath
8546else8554else
8547 if test "${lt_cv_aix_libpath_+set}" = set; then :8555 if ${lt_cv_aix_libpath_+:} false; then :
8548 $as_echo_n "(cached) " >&68556 $as_echo_n "(cached) " >&6
8549else8557else
8550 cat confdefs.h - <<_ACEOF >conftest.$ac_ext8558 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -8816,7 +8824,7 @@
8816 # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)8824 # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
8817 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&58825 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5
8818$as_echo_n "checking if $CC understands -b... " >&6; }8826$as_echo_n "checking if $CC understands -b... " >&6; }
8819if test "${lt_cv_prog_compiler__b+set}" = set; then :8827if ${lt_cv_prog_compiler__b+:} false; then :
8820 $as_echo_n "(cached) " >&68828 $as_echo_n "(cached) " >&6
8821else8829else
8822 lt_cv_prog_compiler__b=no8830 lt_cv_prog_compiler__b=no
@@ -8885,7 +8893,7 @@
8885 # This should be the same for all languages, so no per-tag cache variable.8893 # This should be the same for all languages, so no per-tag cache variable.
8886 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&58894 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5
8887$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; }8895$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; }
8888if test "${lt_cv_irix_exported_symbol+set}" = set; then :8896if ${lt_cv_irix_exported_symbol+:} false; then :
8889 $as_echo_n "(cached) " >&68897 $as_echo_n "(cached) " >&6
8890else8898else
8891 save_LDFLAGS="$LDFLAGS"8899 save_LDFLAGS="$LDFLAGS"
@@ -9201,7 +9209,7 @@
9201 # to ld, don't add -lc before -lgcc.9209 # to ld, don't add -lc before -lgcc.
9202 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&59210 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
9203$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }9211$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
9204if test "${lt_cv_archive_cmds_need_lc+set}" = set; then :9212if ${lt_cv_archive_cmds_need_lc+:} false; then :
9205 $as_echo_n "(cached) " >&69213 $as_echo_n "(cached) " >&6
9206else9214else
9207 $RM conftest*9215 $RM conftest*
@@ -9902,7 +9910,7 @@
9902 shlibpath_overrides_runpath=no9910 shlibpath_overrides_runpath=no
99039911
9904 # Some binutils ld are patched to set DT_RUNPATH9912 # Some binutils ld are patched to set DT_RUNPATH
9905 if test "${lt_cv_shlibpath_overrides_runpath+set}" = set; then :9913 if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
9906 $as_echo_n "(cached) " >&69914 $as_echo_n "(cached) " >&6
9907else9915else
9908 lt_cv_shlibpath_overrides_runpath=no9916 lt_cv_shlibpath_overrides_runpath=no
@@ -10326,7 +10334,7 @@
10326 # if libdl is installed we need to link against it10334 # if libdl is installed we need to link against it
10327 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&510335 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
10328$as_echo_n "checking for dlopen in -ldl... " >&6; }10336$as_echo_n "checking for dlopen in -ldl... " >&6; }
10329if test "${ac_cv_lib_dl_dlopen+set}" = set; then :10337if ${ac_cv_lib_dl_dlopen+:} false; then :
10330 $as_echo_n "(cached) " >&610338 $as_echo_n "(cached) " >&6
10331else10339else
10332 ac_check_lib_save_LIBS=$LIBS10340 ac_check_lib_save_LIBS=$LIBS
@@ -10360,7 +10368,7 @@
10360fi10368fi
10361{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&510369{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
10362$as_echo "$ac_cv_lib_dl_dlopen" >&6; }10370$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
10363if test "x$ac_cv_lib_dl_dlopen" = x""yes; then :10371if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
10364 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"10372 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
10365else10373else
1036610374
@@ -10374,12 +10382,12 @@
1037410382
10375 *)10383 *)
10376 ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load"10384 ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load"
10377if test "x$ac_cv_func_shl_load" = x""yes; then :10385if test "x$ac_cv_func_shl_load" = xyes; then :
10378 lt_cv_dlopen="shl_load"10386 lt_cv_dlopen="shl_load"
10379else10387else
10380 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&510388 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5
10381$as_echo_n "checking for shl_load in -ldld... " >&6; }10389$as_echo_n "checking for shl_load in -ldld... " >&6; }
10382if test "${ac_cv_lib_dld_shl_load+set}" = set; then :10390if ${ac_cv_lib_dld_shl_load+:} false; then :
10383 $as_echo_n "(cached) " >&610391 $as_echo_n "(cached) " >&6
10384else10392else
10385 ac_check_lib_save_LIBS=$LIBS10393 ac_check_lib_save_LIBS=$LIBS
@@ -10413,16 +10421,16 @@
10413fi10421fi
10414{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&510422{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5
10415$as_echo "$ac_cv_lib_dld_shl_load" >&6; }10423$as_echo "$ac_cv_lib_dld_shl_load" >&6; }
10416if test "x$ac_cv_lib_dld_shl_load" = x""yes; then :10424if test "x$ac_cv_lib_dld_shl_load" = xyes; then :
10417 lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"10425 lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
10418else10426else
10419 ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen"10427 ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen"
10420if test "x$ac_cv_func_dlopen" = x""yes; then :10428if test "x$ac_cv_func_dlopen" = xyes; then :
10421 lt_cv_dlopen="dlopen"10429 lt_cv_dlopen="dlopen"
10422else10430else
10423 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&510431 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5
10424$as_echo_n "checking for dlopen in -ldl... " >&6; }10432$as_echo_n "checking for dlopen in -ldl... " >&6; }
10425if test "${ac_cv_lib_dl_dlopen+set}" = set; then :10433if ${ac_cv_lib_dl_dlopen+:} false; then :
10426 $as_echo_n "(cached) " >&610434 $as_echo_n "(cached) " >&6
10427else10435else
10428 ac_check_lib_save_LIBS=$LIBS10436 ac_check_lib_save_LIBS=$LIBS
@@ -10456,12 +10464,12 @@
10456fi10464fi
10457{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&510465{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5
10458$as_echo "$ac_cv_lib_dl_dlopen" >&6; }10466$as_echo "$ac_cv_lib_dl_dlopen" >&6; }
10459if test "x$ac_cv_lib_dl_dlopen" = x""yes; then :10467if test "x$ac_cv_lib_dl_dlopen" = xyes; then :
10460 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"10468 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
10461else10469else
10462 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&510470 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5
10463$as_echo_n "checking for dlopen in -lsvld... " >&6; }10471$as_echo_n "checking for dlopen in -lsvld... " >&6; }
10464if test "${ac_cv_lib_svld_dlopen+set}" = set; then :10472if ${ac_cv_lib_svld_dlopen+:} false; then :
10465 $as_echo_n "(cached) " >&610473 $as_echo_n "(cached) " >&6
10466else10474else
10467 ac_check_lib_save_LIBS=$LIBS10475 ac_check_lib_save_LIBS=$LIBS
@@ -10495,12 +10503,12 @@
10495fi10503fi
10496{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&510504{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5
10497$as_echo "$ac_cv_lib_svld_dlopen" >&6; }10505$as_echo "$ac_cv_lib_svld_dlopen" >&6; }
10498if test "x$ac_cv_lib_svld_dlopen" = x""yes; then :10506if test "x$ac_cv_lib_svld_dlopen" = xyes; then :
10499 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"10507 lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"
10500else10508else
10501 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&510509 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5
10502$as_echo_n "checking for dld_link in -ldld... " >&6; }10510$as_echo_n "checking for dld_link in -ldld... " >&6; }
10503if test "${ac_cv_lib_dld_dld_link+set}" = set; then :10511if ${ac_cv_lib_dld_dld_link+:} false; then :
10504 $as_echo_n "(cached) " >&610512 $as_echo_n "(cached) " >&6
10505else10513else
10506 ac_check_lib_save_LIBS=$LIBS10514 ac_check_lib_save_LIBS=$LIBS
@@ -10534,7 +10542,7 @@
10534fi10542fi
10535{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&510543{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5
10536$as_echo "$ac_cv_lib_dld_dld_link" >&6; }10544$as_echo "$ac_cv_lib_dld_dld_link" >&6; }
10537if test "x$ac_cv_lib_dld_dld_link" = x""yes; then :10545if test "x$ac_cv_lib_dld_dld_link" = xyes; then :
10538 lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"10546 lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
10539fi10547fi
1054010548
@@ -10575,7 +10583,7 @@
1057510583
10576 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&510584 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5
10577$as_echo_n "checking whether a program can dlopen itself... " >&6; }10585$as_echo_n "checking whether a program can dlopen itself... " >&6; }
10578if test "${lt_cv_dlopen_self+set}" = set; then :10586if ${lt_cv_dlopen_self+:} false; then :
10579 $as_echo_n "(cached) " >&610587 $as_echo_n "(cached) " >&6
10580else10588else
10581 if test "$cross_compiling" = yes; then :10589 if test "$cross_compiling" = yes; then :
@@ -10681,7 +10689,7 @@
10681 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"10689 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
10682 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&510690 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5
10683$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; }10691$as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; }
10684if test "${lt_cv_dlopen_self_static+set}" = set; then :10692if ${lt_cv_dlopen_self_static+:} false; then :
10685 $as_echo_n "(cached) " >&610693 $as_echo_n "(cached) " >&6
10686else10694else
10687 if test "$cross_compiling" = yes; then :10695 if test "$cross_compiling" = yes; then :
@@ -10943,7 +10951,7 @@
10943set dummy $ac_tool_prefix$ac_prog; ac_word=$210951set dummy $ac_tool_prefix$ac_prog; ac_word=$2
10944{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&510952{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10945$as_echo_n "checking for $ac_word... " >&6; }10953$as_echo_n "checking for $ac_word... " >&6; }
10946if test "${ac_cv_prog_CXX+set}" = set; then :10954if ${ac_cv_prog_CXX+:} false; then :
10947 $as_echo_n "(cached) " >&610955 $as_echo_n "(cached) " >&6
10948else10956else
10949 if test -n "$CXX"; then10957 if test -n "$CXX"; then
@@ -10987,7 +10995,7 @@
10987set dummy $ac_prog; ac_word=$210995set dummy $ac_prog; ac_word=$2
10988{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&510996{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10989$as_echo_n "checking for $ac_word... " >&6; }10997$as_echo_n "checking for $ac_word... " >&6; }
10990if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then :10998if ${ac_cv_prog_ac_ct_CXX+:} false; then :
10991 $as_echo_n "(cached) " >&610999 $as_echo_n "(cached) " >&6
10992else11000else
10993 if test -n "$ac_ct_CXX"; then11001 if test -n "$ac_ct_CXX"; then
@@ -11065,7 +11073,7 @@
1106511073
11066{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&511074{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5
11067$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }11075$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
11068if test "${ac_cv_cxx_compiler_gnu+set}" = set; then :11076if ${ac_cv_cxx_compiler_gnu+:} false; then :
11069 $as_echo_n "(cached) " >&611077 $as_echo_n "(cached) " >&6
11070else11078else
11071 cat confdefs.h - <<_ACEOF >conftest.$ac_ext11079 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -11102,7 +11110,7 @@
11102ac_save_CXXFLAGS=$CXXFLAGS11110ac_save_CXXFLAGS=$CXXFLAGS
11103{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&511111{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5
11104$as_echo_n "checking whether $CXX accepts -g... " >&6; }11112$as_echo_n "checking whether $CXX accepts -g... " >&6; }
11105if test "${ac_cv_prog_cxx_g+set}" = set; then :11113if ${ac_cv_prog_cxx_g+:} false; then :
11106 $as_echo_n "(cached) " >&611114 $as_echo_n "(cached) " >&6
11107else11115else
11108 ac_save_cxx_werror_flag=$ac_cxx_werror_flag11116 ac_save_cxx_werror_flag=$ac_cxx_werror_flag
@@ -11206,7 +11214,7 @@
11206{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&511214{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5
11207$as_echo_n "checking how to run the C++ preprocessor... " >&6; }11215$as_echo_n "checking how to run the C++ preprocessor... " >&6; }
11208if test -z "$CXXCPP"; then11216if test -z "$CXXCPP"; then
11209 if test "${ac_cv_prog_CXXCPP+set}" = set; then :11217 if ${ac_cv_prog_CXXCPP+:} false; then :
11210 $as_echo_n "(cached) " >&611218 $as_echo_n "(cached) " >&6
11211else11219else
11212 # Double quotes because CXXCPP needs to be expanded11220 # Double quotes because CXXCPP needs to be expanded
@@ -11322,7 +11330,7 @@
11322 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&511330 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
11323$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}11331$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
11324as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check11332as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check
11325See \`config.log' for more details" "$LINENO" 5 ; }11333See \`config.log' for more details" "$LINENO" 5; }
11326fi11334fi
1132711335
11328ac_ext=c11336ac_ext=c
@@ -11509,7 +11517,7 @@
11509 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&511517 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5
11510$as_echo_n "checking for non-GNU ld... " >&6; }11518$as_echo_n "checking for non-GNU ld... " >&6; }
11511fi11519fi
11512if test "${lt_cv_path_LD+set}" = set; then :11520if ${lt_cv_path_LD+:} false; then :
11513 $as_echo_n "(cached) " >&611521 $as_echo_n "(cached) " >&6
11514else11522else
11515 if test -z "$LD"; then11523 if test -z "$LD"; then
@@ -11549,7 +11557,7 @@
11549test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 511557test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5
11550{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&511558{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5
11551$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }11559$as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
11552if test "${lt_cv_prog_gnu_ld+set}" = set; then :11560if ${lt_cv_prog_gnu_ld+:} false; then :
11553 $as_echo_n "(cached) " >&611561 $as_echo_n "(cached) " >&6
11554else11562else
11555 # I'd rather use --version here, but apparently some GNU lds only accept -v.11563 # I'd rather use --version here, but apparently some GNU lds only accept -v.
@@ -11721,7 +11729,7 @@
11721 if test "${lt_cv_aix_libpath+set}" = set; then11729 if test "${lt_cv_aix_libpath+set}" = set; then
11722 aix_libpath=$lt_cv_aix_libpath11730 aix_libpath=$lt_cv_aix_libpath
11723else11731else
11724 if test "${lt_cv_aix_libpath__CXX+set}" = set; then :11732 if ${lt_cv_aix_libpath__CXX+:} false; then :
11725 $as_echo_n "(cached) " >&611733 $as_echo_n "(cached) " >&6
11726else11734else
11727 cat confdefs.h - <<_ACEOF >conftest.$ac_ext11735 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -11775,7 +11783,7 @@
11775 if test "${lt_cv_aix_libpath+set}" = set; then11783 if test "${lt_cv_aix_libpath+set}" = set; then
11776 aix_libpath=$lt_cv_aix_libpath11784 aix_libpath=$lt_cv_aix_libpath
11777else11785else
11778 if test "${lt_cv_aix_libpath__CXX+set}" = set; then :11786 if ${lt_cv_aix_libpath__CXX+:} false; then :
11779 $as_echo_n "(cached) " >&611787 $as_echo_n "(cached) " >&6
11780else11788else
11781 cat confdefs.h - <<_ACEOF >conftest.$ac_ext11789 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -12672,10 +12680,11 @@
12672 case ${prev}${p} in12680 case ${prev}${p} in
1267312681
12674 -L* | -R* | -l*)12682 -L* | -R* | -l*)
12675 # Some compilers place space between "-{L,R}" and the path.12683 # Some compilers place space between "-{L,R,l}" and the path.
12676 # Remove the space.12684 # Remove the space.
12677 if test $p = "-L" ||12685 if test $p = "-L" ||
12678 test $p = "-R"; then12686 test $p = "-R" ||
12687 test $p = "-l"; then
12679 prev=$p12688 prev=$p
12680 continue12689 continue
12681 fi12690 fi
@@ -13181,7 +13190,7 @@
1318113190
13182{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&513191{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5
13183$as_echo_n "checking for $compiler option to produce PIC... " >&6; }13192$as_echo_n "checking for $compiler option to produce PIC... " >&6; }
13184if test "${lt_cv_prog_compiler_pic_CXX+set}" = set; then :13193if ${lt_cv_prog_compiler_pic_CXX+:} false; then :
13185 $as_echo_n "(cached) " >&613194 $as_echo_n "(cached) " >&6
13186else13195else
13187 lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX13196 lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX
@@ -13196,7 +13205,7 @@
13196if test -n "$lt_prog_compiler_pic_CXX"; then13205if test -n "$lt_prog_compiler_pic_CXX"; then
13197 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&513206 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5
13198$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; }13207$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; }
13199if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then :13208if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then :
13200 $as_echo_n "(cached) " >&613209 $as_echo_n "(cached) " >&6
13201else13210else
13202 lt_cv_prog_compiler_pic_works_CXX=no13211 lt_cv_prog_compiler_pic_works_CXX=no
@@ -13254,7 +13263,7 @@
13254wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\"13263wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\"
13255{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&513264{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
13256$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }13265$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
13257if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then :13266if ${lt_cv_prog_compiler_static_works_CXX+:} false; then :
13258 $as_echo_n "(cached) " >&613267 $as_echo_n "(cached) " >&6
13259else13268else
13260 lt_cv_prog_compiler_static_works_CXX=no13269 lt_cv_prog_compiler_static_works_CXX=no
@@ -13294,7 +13303,7 @@
1329413303
13295 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&513304 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
13296$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }13305$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
13297if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then :13306if ${lt_cv_prog_compiler_c_o_CXX+:} false; then :
13298 $as_echo_n "(cached) " >&613307 $as_echo_n "(cached) " >&6
13299else13308else
13300 lt_cv_prog_compiler_c_o_CXX=no13309 lt_cv_prog_compiler_c_o_CXX=no
@@ -13346,7 +13355,7 @@
1334613355
13347 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&513356 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
13348$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }13357$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
13349if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then :13358if ${lt_cv_prog_compiler_c_o_CXX+:} false; then :
13350 $as_echo_n "(cached) " >&613359 $as_echo_n "(cached) " >&6
13351else13360else
13352 lt_cv_prog_compiler_c_o_CXX=no13361 lt_cv_prog_compiler_c_o_CXX=no
@@ -13485,7 +13494,7 @@
13485 # to ld, don't add -lc before -lgcc.13494 # to ld, don't add -lc before -lgcc.
13486 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&513495 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
13487$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }13496$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
13488if test "${lt_cv_archive_cmds_need_lc_CXX+set}" = set; then :13497if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then :
13489 $as_echo_n "(cached) " >&613498 $as_echo_n "(cached) " >&6
13490else13499else
13491 $RM conftest*13500 $RM conftest*
@@ -14027,7 +14036,7 @@
14027 shlibpath_overrides_runpath=no14036 shlibpath_overrides_runpath=no
1402814037
14029 # Some binutils ld are patched to set DT_RUNPATH14038 # Some binutils ld are patched to set DT_RUNPATH
14030 if test "${lt_cv_shlibpath_overrides_runpath+set}" = set; then :14039 if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
14031 $as_echo_n "(cached) " >&614040 $as_echo_n "(cached) " >&6
14032else14041else
14033 lt_cv_shlibpath_overrides_runpath=no14042 lt_cv_shlibpath_overrides_runpath=no
@@ -14401,7 +14410,7 @@
14401set dummy $ac_tool_prefix$ac_prog; ac_word=$214410set dummy $ac_tool_prefix$ac_prog; ac_word=$2
14402{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&514411{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
14403$as_echo_n "checking for $ac_word... " >&6; }14412$as_echo_n "checking for $ac_word... " >&6; }
14404if test "${ac_cv_prog_FC+set}" = set; then :14413if ${ac_cv_prog_FC+:} false; then :
14405 $as_echo_n "(cached) " >&614414 $as_echo_n "(cached) " >&6
14406else14415else
14407 if test -n "$FC"; then14416 if test -n "$FC"; then
@@ -14445,7 +14454,7 @@
14445set dummy $ac_prog; ac_word=$214454set dummy $ac_prog; ac_word=$2
14446{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&514455{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
14447$as_echo_n "checking for $ac_word... " >&6; }14456$as_echo_n "checking for $ac_word... " >&6; }
14448if test "${ac_cv_prog_ac_ct_FC+set}" = set; then :14457if ${ac_cv_prog_ac_ct_FC+:} false; then :
14449 $as_echo_n "(cached) " >&614458 $as_echo_n "(cached) " >&6
14450else14459else
14451 if test -n "$ac_ct_FC"; then14460 if test -n "$ac_ct_FC"; then
@@ -14527,7 +14536,7 @@
14527ac_ext=F14536ac_ext=F
14528{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran compiler" >&514537{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran compiler" >&5
14529$as_echo_n "checking whether we are using the GNU Fortran compiler... " >&6; }14538$as_echo_n "checking whether we are using the GNU Fortran compiler... " >&6; }
14530if test "${ac_cv_fc_compiler_gnu+set}" = set; then :14539if ${ac_cv_fc_compiler_gnu+:} false; then :
14531 $as_echo_n "(cached) " >&614540 $as_echo_n "(cached) " >&6
14532else14541else
14533 cat > conftest.$ac_ext <<_ACEOF14542 cat > conftest.$ac_ext <<_ACEOF
@@ -14555,7 +14564,7 @@
14555FCFLAGS=14564FCFLAGS=
14556{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $FC accepts -g" >&514565{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $FC accepts -g" >&5
14557$as_echo_n "checking whether $FC accepts -g... " >&6; }14566$as_echo_n "checking whether $FC accepts -g... " >&6; }
14558if test "${ac_cv_prog_fc_g+set}" = set; then :14567if ${ac_cv_prog_fc_g+:} false; then :
14559 $as_echo_n "(cached) " >&614568 $as_echo_n "(cached) " >&6
14560else14569else
14561 FCFLAGS=-g14570 FCFLAGS=-g
@@ -14788,10 +14797,11 @@
14788 case ${prev}${p} in14797 case ${prev}${p} in
1478914798
14790 -L* | -R* | -l*)14799 -L* | -R* | -l*)
14791 # Some compilers place space between "-{L,R}" and the path.14800 # Some compilers place space between "-{L,R,l}" and the path.
14792 # Remove the space.14801 # Remove the space.
14793 if test $p = "-L" ||14802 if test $p = "-L" ||
14794 test $p = "-R"; then14803 test $p = "-R" ||
14804 test $p = "-l"; then
14795 prev=$p14805 prev=$p
14796 continue14806 continue
14797 fi14807 fi
@@ -15189,7 +15199,7 @@
1518915199
15190{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&515200{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5
15191$as_echo_n "checking for $compiler option to produce PIC... " >&6; }15201$as_echo_n "checking for $compiler option to produce PIC... " >&6; }
15192if test "${lt_cv_prog_compiler_pic_FC+set}" = set; then :15202if ${lt_cv_prog_compiler_pic_FC+:} false; then :
15193 $as_echo_n "(cached) " >&615203 $as_echo_n "(cached) " >&6
15194else15204else
15195 lt_cv_prog_compiler_pic_FC=$lt_prog_compiler_pic_FC15205 lt_cv_prog_compiler_pic_FC=$lt_prog_compiler_pic_FC
@@ -15204,7 +15214,7 @@
15204if test -n "$lt_prog_compiler_pic_FC"; then15214if test -n "$lt_prog_compiler_pic_FC"; then
15205 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_FC works" >&515215 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_FC works" >&5
15206$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_FC works... " >&6; }15216$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_FC works... " >&6; }
15207if test "${lt_cv_prog_compiler_pic_works_FC+set}" = set; then :15217if ${lt_cv_prog_compiler_pic_works_FC+:} false; then :
15208 $as_echo_n "(cached) " >&615218 $as_echo_n "(cached) " >&6
15209else15219else
15210 lt_cv_prog_compiler_pic_works_FC=no15220 lt_cv_prog_compiler_pic_works_FC=no
@@ -15262,7 +15272,7 @@
15262wl=$lt_prog_compiler_wl_FC eval lt_tmp_static_flag=\"$lt_prog_compiler_static_FC\"15272wl=$lt_prog_compiler_wl_FC eval lt_tmp_static_flag=\"$lt_prog_compiler_static_FC\"
15263{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&515273{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
15264$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }15274$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
15265if test "${lt_cv_prog_compiler_static_works_FC+set}" = set; then :15275if ${lt_cv_prog_compiler_static_works_FC+:} false; then :
15266 $as_echo_n "(cached) " >&615276 $as_echo_n "(cached) " >&6
15267else15277else
15268 lt_cv_prog_compiler_static_works_FC=no15278 lt_cv_prog_compiler_static_works_FC=no
@@ -15302,7 +15312,7 @@
1530215312
15303 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&515313 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
15304$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }15314$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
15305if test "${lt_cv_prog_compiler_c_o_FC+set}" = set; then :15315if ${lt_cv_prog_compiler_c_o_FC+:} false; then :
15306 $as_echo_n "(cached) " >&615316 $as_echo_n "(cached) " >&6
15307else15317else
15308 lt_cv_prog_compiler_c_o_FC=no15318 lt_cv_prog_compiler_c_o_FC=no
@@ -15354,7 +15364,7 @@
1535415364
15355 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&515365 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
15356$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }15366$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
15357if test "${lt_cv_prog_compiler_c_o_FC+set}" = set; then :15367if ${lt_cv_prog_compiler_c_o_FC+:} false; then :
15358 $as_echo_n "(cached) " >&615368 $as_echo_n "(cached) " >&6
15359else15369else
15360 lt_cv_prog_compiler_c_o_FC=no15370 lt_cv_prog_compiler_c_o_FC=no
@@ -15916,7 +15926,7 @@
15916 if test "${lt_cv_aix_libpath+set}" = set; then15926 if test "${lt_cv_aix_libpath+set}" = set; then
15917 aix_libpath=$lt_cv_aix_libpath15927 aix_libpath=$lt_cv_aix_libpath
15918else15928else
15919 if test "${lt_cv_aix_libpath__FC+set}" = set; then :15929 if ${lt_cv_aix_libpath__FC+:} false; then :
15920 $as_echo_n "(cached) " >&615930 $as_echo_n "(cached) " >&6
15921else15931else
15922 cat > conftest.$ac_ext <<_ACEOF15932 cat > conftest.$ac_ext <<_ACEOF
@@ -15963,7 +15973,7 @@
15963 if test "${lt_cv_aix_libpath+set}" = set; then15973 if test "${lt_cv_aix_libpath+set}" = set; then
15964 aix_libpath=$lt_cv_aix_libpath15974 aix_libpath=$lt_cv_aix_libpath
15965else15975else
15966 if test "${lt_cv_aix_libpath__FC+set}" = set; then :15976 if ${lt_cv_aix_libpath__FC+:} false; then :
15967 $as_echo_n "(cached) " >&615977 $as_echo_n "(cached) " >&6
15968else15978else
15969 cat > conftest.$ac_ext <<_ACEOF15979 cat > conftest.$ac_ext <<_ACEOF
@@ -16259,7 +16269,7 @@
16259 # This should be the same for all languages, so no per-tag cache variable.16269 # This should be the same for all languages, so no per-tag cache variable.
16260 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&516270 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5
16261$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; }16271$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; }
16262if test "${lt_cv_irix_exported_symbol+set}" = set; then :16272if ${lt_cv_irix_exported_symbol+:} false; then :
16263 $as_echo_n "(cached) " >&616273 $as_echo_n "(cached) " >&6
16264else16274else
16265 save_LDFLAGS="$LDFLAGS"16275 save_LDFLAGS="$LDFLAGS"
@@ -16567,7 +16577,7 @@
16567 # to ld, don't add -lc before -lgcc.16577 # to ld, don't add -lc before -lgcc.
16568 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&516578 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
16569$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }16579$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
16570if test "${lt_cv_archive_cmds_need_lc_FC+set}" = set; then :16580if ${lt_cv_archive_cmds_need_lc_FC+:} false; then :
16571 $as_echo_n "(cached) " >&616581 $as_echo_n "(cached) " >&6
16572else16582else
16573 $RM conftest*16583 $RM conftest*
@@ -17109,7 +17119,7 @@
17109 shlibpath_overrides_runpath=no17119 shlibpath_overrides_runpath=no
1711017120
17111 # Some binutils ld are patched to set DT_RUNPATH17121 # Some binutils ld are patched to set DT_RUNPATH
17112 if test "${lt_cv_shlibpath_overrides_runpath+set}" = set; then :17122 if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
17113 $as_echo_n "(cached) " >&617123 $as_echo_n "(cached) " >&6
17114else17124else
17115 lt_cv_shlibpath_overrides_runpath=no17125 lt_cv_shlibpath_overrides_runpath=no
@@ -17489,7 +17499,7 @@
17489set dummy $ac_tool_prefix$ac_prog; ac_word=$217499set dummy $ac_tool_prefix$ac_prog; ac_word=$2
17490{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&517500{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
17491$as_echo_n "checking for $ac_word... " >&6; }17501$as_echo_n "checking for $ac_word... " >&6; }
17492if test "${ac_cv_prog_F77+set}" = set; then :17502if ${ac_cv_prog_F77+:} false; then :
17493 $as_echo_n "(cached) " >&617503 $as_echo_n "(cached) " >&6
17494else17504else
17495 if test -n "$F77"; then17505 if test -n "$F77"; then
@@ -17533,7 +17543,7 @@
17533set dummy $ac_prog; ac_word=$217543set dummy $ac_prog; ac_word=$2
17534{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&517544{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
17535$as_echo_n "checking for $ac_word... " >&6; }17545$as_echo_n "checking for $ac_word... " >&6; }
17536if test "${ac_cv_prog_ac_ct_F77+set}" = set; then :17546if ${ac_cv_prog_ac_ct_F77+:} false; then :
17537 $as_echo_n "(cached) " >&617547 $as_echo_n "(cached) " >&6
17538else17548else
17539 if test -n "$ac_ct_F77"; then17549 if test -n "$ac_ct_F77"; then
@@ -17615,7 +17625,7 @@
17615ac_ext=F17625ac_ext=F
17616{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran 77 compiler" >&517626{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran 77 compiler" >&5
17617$as_echo_n "checking whether we are using the GNU Fortran 77 compiler... " >&6; }17627$as_echo_n "checking whether we are using the GNU Fortran 77 compiler... " >&6; }
17618if test "${ac_cv_f77_compiler_gnu+set}" = set; then :17628if ${ac_cv_f77_compiler_gnu+:} false; then :
17619 $as_echo_n "(cached) " >&617629 $as_echo_n "(cached) " >&6
17620else17630else
17621 cat > conftest.$ac_ext <<_ACEOF17631 cat > conftest.$ac_ext <<_ACEOF
@@ -17643,7 +17653,7 @@
17643FFLAGS=17653FFLAGS=
17644{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $F77 accepts -g" >&517654{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $F77 accepts -g" >&5
17645$as_echo_n "checking whether $F77 accepts -g... " >&6; }17655$as_echo_n "checking whether $F77 accepts -g... " >&6; }
17646if test "${ac_cv_prog_f77_g+set}" = set; then :17656if ${ac_cv_prog_f77_g+:} false; then :
17647 $as_echo_n "(cached) " >&617657 $as_echo_n "(cached) " >&6
17648else17658else
17649 FFLAGS=-g17659 FFLAGS=-g
@@ -18135,7 +18145,7 @@
1813518145
18136{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&518146{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5
18137$as_echo_n "checking for $compiler option to produce PIC... " >&6; }18147$as_echo_n "checking for $compiler option to produce PIC... " >&6; }
18138if test "${lt_cv_prog_compiler_pic_F77+set}" = set; then :18148if ${lt_cv_prog_compiler_pic_F77+:} false; then :
18139 $as_echo_n "(cached) " >&618149 $as_echo_n "(cached) " >&6
18140else18150else
18141 lt_cv_prog_compiler_pic_F77=$lt_prog_compiler_pic_F7718151 lt_cv_prog_compiler_pic_F77=$lt_prog_compiler_pic_F77
@@ -18150,7 +18160,7 @@
18150if test -n "$lt_prog_compiler_pic_F77"; then18160if test -n "$lt_prog_compiler_pic_F77"; then
18151 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&518161 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works" >&5
18152$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... " >&6; }18162$as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_F77 works... " >&6; }
18153if test "${lt_cv_prog_compiler_pic_works_F77+set}" = set; then :18163if ${lt_cv_prog_compiler_pic_works_F77+:} false; then :
18154 $as_echo_n "(cached) " >&618164 $as_echo_n "(cached) " >&6
18155else18165else
18156 lt_cv_prog_compiler_pic_works_F77=no18166 lt_cv_prog_compiler_pic_works_F77=no
@@ -18208,7 +18218,7 @@
18208wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\"18218wl=$lt_prog_compiler_wl_F77 eval lt_tmp_static_flag=\"$lt_prog_compiler_static_F77\"
18209{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&518219{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5
18210$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }18220$as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; }
18211if test "${lt_cv_prog_compiler_static_works_F77+set}" = set; then :18221if ${lt_cv_prog_compiler_static_works_F77+:} false; then :
18212 $as_echo_n "(cached) " >&618222 $as_echo_n "(cached) " >&6
18213else18223else
18214 lt_cv_prog_compiler_static_works_F77=no18224 lt_cv_prog_compiler_static_works_F77=no
@@ -18248,7 +18258,7 @@
1824818258
18249 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&518259 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
18250$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }18260$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
18251if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then :18261if ${lt_cv_prog_compiler_c_o_F77+:} false; then :
18252 $as_echo_n "(cached) " >&618262 $as_echo_n "(cached) " >&6
18253else18263else
18254 lt_cv_prog_compiler_c_o_F77=no18264 lt_cv_prog_compiler_c_o_F77=no
@@ -18300,7 +18310,7 @@
1830018310
18301 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&518311 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5
18302$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }18312$as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; }
18303if test "${lt_cv_prog_compiler_c_o_F77+set}" = set; then :18313if ${lt_cv_prog_compiler_c_o_F77+:} false; then :
18304 $as_echo_n "(cached) " >&618314 $as_echo_n "(cached) " >&6
18305else18315else
18306 lt_cv_prog_compiler_c_o_F77=no18316 lt_cv_prog_compiler_c_o_F77=no
@@ -18862,7 +18872,7 @@
18862 if test "${lt_cv_aix_libpath+set}" = set; then18872 if test "${lt_cv_aix_libpath+set}" = set; then
18863 aix_libpath=$lt_cv_aix_libpath18873 aix_libpath=$lt_cv_aix_libpath
18864else18874else
18865 if test "${lt_cv_aix_libpath__F77+set}" = set; then :18875 if ${lt_cv_aix_libpath__F77+:} false; then :
18866 $as_echo_n "(cached) " >&618876 $as_echo_n "(cached) " >&6
18867else18877else
18868 cat > conftest.$ac_ext <<_ACEOF18878 cat > conftest.$ac_ext <<_ACEOF
@@ -18909,7 +18919,7 @@
18909 if test "${lt_cv_aix_libpath+set}" = set; then18919 if test "${lt_cv_aix_libpath+set}" = set; then
18910 aix_libpath=$lt_cv_aix_libpath18920 aix_libpath=$lt_cv_aix_libpath
18911else18921else
18912 if test "${lt_cv_aix_libpath__F77+set}" = set; then :18922 if ${lt_cv_aix_libpath__F77+:} false; then :
18913 $as_echo_n "(cached) " >&618923 $as_echo_n "(cached) " >&6
18914else18924else
18915 cat > conftest.$ac_ext <<_ACEOF18925 cat > conftest.$ac_ext <<_ACEOF
@@ -19205,7 +19215,7 @@
19205 # This should be the same for all languages, so no per-tag cache variable.19215 # This should be the same for all languages, so no per-tag cache variable.
19206 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&519216 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5
19207$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; }19217$as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; }
19208if test "${lt_cv_irix_exported_symbol+set}" = set; then :19218if ${lt_cv_irix_exported_symbol+:} false; then :
19209 $as_echo_n "(cached) " >&619219 $as_echo_n "(cached) " >&6
19210else19220else
19211 save_LDFLAGS="$LDFLAGS"19221 save_LDFLAGS="$LDFLAGS"
@@ -19513,7 +19523,7 @@
19513 # to ld, don't add -lc before -lgcc.19523 # to ld, don't add -lc before -lgcc.
19514 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&519524 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5
19515$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }19525$as_echo_n "checking whether -lc should be explicitly linked in... " >&6; }
19516if test "${lt_cv_archive_cmds_need_lc_F77+set}" = set; then :19526if ${lt_cv_archive_cmds_need_lc_F77+:} false; then :
19517 $as_echo_n "(cached) " >&619527 $as_echo_n "(cached) " >&6
19518else19528else
19519 $RM conftest*19529 $RM conftest*
@@ -20055,7 +20065,7 @@
20055 shlibpath_overrides_runpath=no20065 shlibpath_overrides_runpath=no
2005620066
20057 # Some binutils ld are patched to set DT_RUNPATH20067 # Some binutils ld are patched to set DT_RUNPATH
20058 if test "${lt_cv_shlibpath_overrides_runpath+set}" = set; then :20068 if ${lt_cv_shlibpath_overrides_runpath+:} false; then :
20059 $as_echo_n "(cached) " >&620069 $as_echo_n "(cached) " >&6
20060else20070else
20061 lt_cv_shlibpath_overrides_runpath=no20071 lt_cv_shlibpath_overrides_runpath=no
@@ -20411,7 +20421,7 @@
20411ac_compiler_gnu=$ac_cv_f77_compiler_gnu20421ac_compiler_gnu=$ac_cv_f77_compiler_gnu
20412{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to get verbose linking output from $F77" >&520422{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to get verbose linking output from $F77" >&5
20413$as_echo_n "checking how to get verbose linking output from $F77... " >&6; }20423$as_echo_n "checking how to get verbose linking output from $F77... " >&6; }
20414if test "${ac_cv_prog_f77_v+set}" = set; then :20424if ${ac_cv_prog_f77_v+:} false; then :
20415 $as_echo_n "(cached) " >&620425 $as_echo_n "(cached) " >&6
20416else20426else
20417 cat > conftest.$ac_ext <<_ACEOF20427 cat > conftest.$ac_ext <<_ACEOF
@@ -20441,7 +20451,8 @@
20441# gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,20451# gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,
20442# LIBRARY_PATH; skip all such settings.20452# LIBRARY_PATH; skip all such settings.
20443ac_f77_v_output=`eval $ac_link 5>&1 2>&1 |20453ac_f77_v_output=`eval $ac_link 5>&1 2>&1 |
20444 grep -v 'Driving:' | grep -v "^[_$as_cr_Letters][_$as_cr_alnum]*="`20454 sed '/^Driving:/d; /^Configured with:/d;
20455 '"/^[_$as_cr_Letters][_$as_cr_alnum]*=/d"`
20445$as_echo "$ac_f77_v_output" >&520456$as_echo "$ac_f77_v_output" >&5
20446FFLAGS=$ac_save_FFLAGS20457FFLAGS=$ac_save_FFLAGS
2044720458
@@ -20506,7 +20517,7 @@
20506$as_echo "$ac_cv_prog_f77_v" >&6; }20517$as_echo "$ac_cv_prog_f77_v" >&6; }
20507{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 libraries of $F77" >&520518{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 libraries of $F77" >&5
20508$as_echo_n "checking for Fortran 77 libraries of $F77... " >&6; }20519$as_echo_n "checking for Fortran 77 libraries of $F77... " >&6; }
20509if test "${ac_cv_f77_libs+set}" = set; then :20520if ${ac_cv_f77_libs+:} false; then :
20510 $as_echo_n "(cached) " >&620521 $as_echo_n "(cached) " >&6
20511else20522else
20512 if test "x$FLIBS" != "x"; then20523 if test "x$FLIBS" != "x"; then
@@ -20531,7 +20542,8 @@
20531# gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,20542# gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,
20532# LIBRARY_PATH; skip all such settings.20543# LIBRARY_PATH; skip all such settings.
20533ac_f77_v_output=`eval $ac_link 5>&1 2>&1 |20544ac_f77_v_output=`eval $ac_link 5>&1 2>&1 |
20534 grep -v 'Driving:' | grep -v "^[_$as_cr_Letters][_$as_cr_alnum]*="`20545 sed '/^Driving:/d; /^Configured with:/d;
20546 '"/^[_$as_cr_Letters][_$as_cr_alnum]*=/d"`
20535$as_echo "$ac_f77_v_output" >&520547$as_echo "$ac_f77_v_output" >&5
20536FFLAGS=$ac_save_FFLAGS20548FFLAGS=$ac_save_FFLAGS
2053720549
@@ -20727,7 +20739,7 @@
20727set dummy $ac_tool_prefix$ac_prog; ac_word=$220739set dummy $ac_tool_prefix$ac_prog; ac_word=$2
20728{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&520740{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
20729$as_echo_n "checking for $ac_word... " >&6; }20741$as_echo_n "checking for $ac_word... " >&6; }
20730if test "${ac_cv_prog_FC+set}" = set; then :20742if ${ac_cv_prog_FC+:} false; then :
20731 $as_echo_n "(cached) " >&620743 $as_echo_n "(cached) " >&6
20732else20744else
20733 if test -n "$FC"; then20745 if test -n "$FC"; then
@@ -20771,7 +20783,7 @@
20771set dummy $ac_prog; ac_word=$220783set dummy $ac_prog; ac_word=$2
20772{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&520784{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
20773$as_echo_n "checking for $ac_word... " >&6; }20785$as_echo_n "checking for $ac_word... " >&6; }
20774if test "${ac_cv_prog_ac_ct_FC+set}" = set; then :20786if ${ac_cv_prog_ac_ct_FC+:} false; then :
20775 $as_echo_n "(cached) " >&620787 $as_echo_n "(cached) " >&6
20776else20788else
20777 if test -n "$ac_ct_FC"; then20789 if test -n "$ac_ct_FC"; then
@@ -20853,7 +20865,7 @@
20853ac_ext=F20865ac_ext=F
20854{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran compiler" >&520866{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU Fortran compiler" >&5
20855$as_echo_n "checking whether we are using the GNU Fortran compiler... " >&6; }20867$as_echo_n "checking whether we are using the GNU Fortran compiler... " >&6; }
20856if test "${ac_cv_fc_compiler_gnu+set}" = set; then :20868if ${ac_cv_fc_compiler_gnu+:} false; then :
20857 $as_echo_n "(cached) " >&620869 $as_echo_n "(cached) " >&6
20858else20870else
20859 cat > conftest.$ac_ext <<_ACEOF20871 cat > conftest.$ac_ext <<_ACEOF
@@ -20881,7 +20893,7 @@
20881FCFLAGS=20893FCFLAGS=
20882{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $FC accepts -g" >&520894{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $FC accepts -g" >&5
20883$as_echo_n "checking whether $FC accepts -g... " >&6; }20895$as_echo_n "checking whether $FC accepts -g... " >&6; }
20884if test "${ac_cv_prog_fc_g+set}" = set; then :20896if ${ac_cv_prog_fc_g+:} false; then :
20885 $as_echo_n "(cached) " >&620897 $as_echo_n "(cached) " >&6
20886else20898else
20887 FCFLAGS=-g20899 FCFLAGS=-g
@@ -20928,7 +20940,7 @@
20928ac_compiler_gnu=$ac_cv_fc_compiler_gnu20940ac_compiler_gnu=$ac_cv_fc_compiler_gnu
20929{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to get verbose linking output from $FC" >&520941{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to get verbose linking output from $FC" >&5
20930$as_echo_n "checking how to get verbose linking output from $FC... " >&6; }20942$as_echo_n "checking how to get verbose linking output from $FC... " >&6; }
20931if test "${ac_cv_prog_fc_v+set}" = set; then :20943if ${ac_cv_prog_fc_v+:} false; then :
20932 $as_echo_n "(cached) " >&620944 $as_echo_n "(cached) " >&6
20933else20945else
20934 cat > conftest.$ac_ext <<_ACEOF20946 cat > conftest.$ac_ext <<_ACEOF
@@ -20958,7 +20970,8 @@
20958# gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,20970# gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,
20959# LIBRARY_PATH; skip all such settings.20971# LIBRARY_PATH; skip all such settings.
20960ac_fc_v_output=`eval $ac_link 5>&1 2>&1 |20972ac_fc_v_output=`eval $ac_link 5>&1 2>&1 |
20961 grep -v 'Driving:' | grep -v "^[_$as_cr_Letters][_$as_cr_alnum]*="`20973 sed '/^Driving:/d; /^Configured with:/d;
20974 '"/^[_$as_cr_Letters][_$as_cr_alnum]*=/d"`
20962$as_echo "$ac_fc_v_output" >&520975$as_echo "$ac_fc_v_output" >&5
20963FCFLAGS=$ac_save_FCFLAGS20976FCFLAGS=$ac_save_FCFLAGS
2096420977
@@ -21023,7 +21036,7 @@
21023$as_echo "$ac_cv_prog_fc_v" >&6; }21036$as_echo "$ac_cv_prog_fc_v" >&6; }
21024{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran libraries of $FC" >&521037{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran libraries of $FC" >&5
21025$as_echo_n "checking for Fortran libraries of $FC... " >&6; }21038$as_echo_n "checking for Fortran libraries of $FC... " >&6; }
21026if test "${ac_cv_fc_libs+set}" = set; then :21039if ${ac_cv_fc_libs+:} false; then :
21027 $as_echo_n "(cached) " >&621040 $as_echo_n "(cached) " >&6
21028else21041else
21029 if test "x$FCLIBS" != "x"; then21042 if test "x$FCLIBS" != "x"; then
@@ -21048,7 +21061,8 @@
21048# gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,21061# gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,
21049# LIBRARY_PATH; skip all such settings.21062# LIBRARY_PATH; skip all such settings.
21050ac_fc_v_output=`eval $ac_link 5>&1 2>&1 |21063ac_fc_v_output=`eval $ac_link 5>&1 2>&1 |
21051 grep -v 'Driving:' | grep -v "^[_$as_cr_Letters][_$as_cr_alnum]*="`21064 sed '/^Driving:/d; /^Configured with:/d;
21065 '"/^[_$as_cr_Letters][_$as_cr_alnum]*=/d"`
21052$as_echo "$ac_fc_v_output" >&521066$as_echo "$ac_fc_v_output" >&5
21053FCFLAGS=$ac_save_FCFLAGS21067FCFLAGS=$ac_save_FCFLAGS
2105421068
@@ -21265,7 +21279,7 @@
21265set dummy $ac_tool_prefix$ac_prog; ac_word=$221279set dummy $ac_tool_prefix$ac_prog; ac_word=$2
21266{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&521280{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
21267$as_echo_n "checking for $ac_word... " >&6; }21281$as_echo_n "checking for $ac_word... " >&6; }
21268if test "${ac_cv_prog_CXX+set}" = set; then :21282if ${ac_cv_prog_CXX+:} false; then :
21269 $as_echo_n "(cached) " >&621283 $as_echo_n "(cached) " >&6
21270else21284else
21271 if test -n "$CXX"; then21285 if test -n "$CXX"; then
@@ -21309,7 +21323,7 @@
21309set dummy $ac_prog; ac_word=$221323set dummy $ac_prog; ac_word=$2
21310{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&521324{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
21311$as_echo_n "checking for $ac_word... " >&6; }21325$as_echo_n "checking for $ac_word... " >&6; }
21312if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then :21326if ${ac_cv_prog_ac_ct_CXX+:} false; then :
21313 $as_echo_n "(cached) " >&621327 $as_echo_n "(cached) " >&6
21314else21328else
21315 if test -n "$ac_ct_CXX"; then21329 if test -n "$ac_ct_CXX"; then
@@ -21387,7 +21401,7 @@
2138721401
21388{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&521402{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5
21389$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }21403$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
21390if test "${ac_cv_cxx_compiler_gnu+set}" = set; then :21404if ${ac_cv_cxx_compiler_gnu+:} false; then :
21391 $as_echo_n "(cached) " >&621405 $as_echo_n "(cached) " >&6
21392else21406else
21393 cat confdefs.h - <<_ACEOF >conftest.$ac_ext21407 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -21424,7 +21438,7 @@
21424ac_save_CXXFLAGS=$CXXFLAGS21438ac_save_CXXFLAGS=$CXXFLAGS
21425{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&521439{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5
21426$as_echo_n "checking whether $CXX accepts -g... " >&6; }21440$as_echo_n "checking whether $CXX accepts -g... " >&6; }
21427if test "${ac_cv_prog_cxx_g+set}" = set; then :21441if ${ac_cv_prog_cxx_g+:} false; then :
21428 $as_echo_n "(cached) " >&621442 $as_echo_n "(cached) " >&6
21429else21443else
21430 ac_save_cxx_werror_flag=$ac_cxx_werror_flag21444 ac_save_cxx_werror_flag=$ac_cxx_werror_flag
@@ -21518,7 +21532,7 @@
21518 CPP=21532 CPP=
21519fi21533fi
21520if test -z "$CPP"; then21534if test -z "$CPP"; then
21521 if test "${ac_cv_prog_CPP+set}" = set; then :21535 if ${ac_cv_prog_CPP+:} false; then :
21522 $as_echo_n "(cached) " >&621536 $as_echo_n "(cached) " >&6
21523else21537else
21524 # Double quotes because CPP needs to be expanded21538 # Double quotes because CPP needs to be expanded
@@ -21634,7 +21648,7 @@
21634 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&521648 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
21635$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}21649$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
21636as_fn_error $? "C preprocessor \"$CPP\" fails sanity check21650as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
21637See \`config.log' for more details" "$LINENO" 5 ; }21651See \`config.log' for more details" "$LINENO" 5; }
21638fi21652fi
2163921653
21640ac_ext=c21654ac_ext=c
@@ -21651,7 +21665,7 @@
21651# This bug is HP SR number 8606223364.21665# This bug is HP SR number 8606223364.
21652{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long int" >&521666{ $as_echo "$as_me:${as_lineno-$LINENO}: checking size of long int" >&5
21653$as_echo_n "checking size of long int... " >&6; }21667$as_echo_n "checking size of long int... " >&6; }
21654if test "${ac_cv_sizeof_long_int+set}" = set; then :21668if ${ac_cv_sizeof_long_int+:} false; then :
21655 $as_echo_n "(cached) " >&621669 $as_echo_n "(cached) " >&6
21656else21670else
21657 if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long int))" "ac_cv_sizeof_long_int" "$ac_includes_default"; then :21671 if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (long int))" "ac_cv_sizeof_long_int" "$ac_includes_default"; then :
@@ -21661,7 +21675,7 @@
21661 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&521675 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
21662$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}21676$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
21663as_fn_error 77 "cannot compute sizeof (long int)21677as_fn_error 77 "cannot compute sizeof (long int)
21664See \`config.log' for more details" "$LINENO" 5 ; }21678See \`config.log' for more details" "$LINENO" 5; }
21665 else21679 else
21666 ac_cv_sizeof_long_int=021680 ac_cv_sizeof_long_int=0
21667 fi21681 fi
@@ -21691,7 +21705,7 @@
21691ac_compiler_gnu=$ac_cv_fc_compiler_gnu21705ac_compiler_gnu=$ac_cv_fc_compiler_gnu
21692{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to get verbose linking output from $FC" >&521706{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to get verbose linking output from $FC" >&5
21693$as_echo_n "checking how to get verbose linking output from $FC... " >&6; }21707$as_echo_n "checking how to get verbose linking output from $FC... " >&6; }
21694if test "${ac_cv_prog_fc_v+set}" = set; then :21708if ${ac_cv_prog_fc_v+:} false; then :
21695 $as_echo_n "(cached) " >&621709 $as_echo_n "(cached) " >&6
21696else21710else
21697 cat > conftest.$ac_ext <<_ACEOF21711 cat > conftest.$ac_ext <<_ACEOF
@@ -21721,7 +21735,8 @@
21721# gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,21735# gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,
21722# LIBRARY_PATH; skip all such settings.21736# LIBRARY_PATH; skip all such settings.
21723ac_fc_v_output=`eval $ac_link 5>&1 2>&1 |21737ac_fc_v_output=`eval $ac_link 5>&1 2>&1 |
21724 grep -v 'Driving:' | grep -v "^[_$as_cr_Letters][_$as_cr_alnum]*="`21738 sed '/^Driving:/d; /^Configured with:/d;
21739 '"/^[_$as_cr_Letters][_$as_cr_alnum]*=/d"`
21725$as_echo "$ac_fc_v_output" >&521740$as_echo "$ac_fc_v_output" >&5
21726FCFLAGS=$ac_save_FCFLAGS21741FCFLAGS=$ac_save_FCFLAGS
2172721742
@@ -21786,7 +21801,7 @@
21786$as_echo "$ac_cv_prog_fc_v" >&6; }21801$as_echo "$ac_cv_prog_fc_v" >&6; }
21787{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran libraries of $FC" >&521802{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran libraries of $FC" >&5
21788$as_echo_n "checking for Fortran libraries of $FC... " >&6; }21803$as_echo_n "checking for Fortran libraries of $FC... " >&6; }
21789if test "${ac_cv_fc_libs+set}" = set; then :21804if ${ac_cv_fc_libs+:} false; then :
21790 $as_echo_n "(cached) " >&621805 $as_echo_n "(cached) " >&6
21791else21806else
21792 if test "x$FCLIBS" != "x"; then21807 if test "x$FCLIBS" != "x"; then
@@ -21811,7 +21826,8 @@
21811# gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,21826# gfortran 4.3 outputs lines setting COLLECT_GCC_OPTIONS, COMPILER_PATH,
21812# LIBRARY_PATH; skip all such settings.21827# LIBRARY_PATH; skip all such settings.
21813ac_fc_v_output=`eval $ac_link 5>&1 2>&1 |21828ac_fc_v_output=`eval $ac_link 5>&1 2>&1 |
21814 grep -v 'Driving:' | grep -v "^[_$as_cr_Letters][_$as_cr_alnum]*="`21829 sed '/^Driving:/d; /^Configured with:/d;
21830 '"/^[_$as_cr_Letters][_$as_cr_alnum]*=/d"`
21815$as_echo "$ac_fc_v_output" >&521831$as_echo "$ac_fc_v_output" >&5
21816FCFLAGS=$ac_save_FCFLAGS21832FCFLAGS=$ac_save_FCFLAGS
2181721833
@@ -22000,7 +22016,7 @@
2200022016
22001{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dummy main to link with Fortran 77 libraries" >&522017{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dummy main to link with Fortran 77 libraries" >&5
22002$as_echo_n "checking for dummy main to link with Fortran 77 libraries... " >&6; }22018$as_echo_n "checking for dummy main to link with Fortran 77 libraries... " >&6; }
22003if test "${ac_cv_f77_dummy_main+set}" = set; then :22019if ${ac_cv_f77_dummy_main+:} false; then :
22004 $as_echo_n "(cached) " >&622020 $as_echo_n "(cached) " >&6
22005else22021else
22006 ac_f77_dm_save_LIBS=$LIBS22022 ac_f77_dm_save_LIBS=$LIBS
@@ -22097,7 +22113,7 @@
22097 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&522113 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
22098$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}22114$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
22099as_fn_error $? "linking to Fortran libraries from C fails22115as_fn_error $? "linking to Fortran libraries from C fails
22100See \`config.log' for more details" "$LINENO" 5 ; }22116See \`config.log' for more details" "$LINENO" 5; }
22101fi22117fi
2210222118
22103ac_ext=c22119ac_ext=c
@@ -22112,7 +22128,7 @@
22112ac_compiler_gnu=$ac_cv_f77_compiler_gnu22128ac_compiler_gnu=$ac_cv_f77_compiler_gnu
22113{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 name-mangling scheme" >&522129{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Fortran 77 name-mangling scheme" >&5
22114$as_echo_n "checking for Fortran 77 name-mangling scheme... " >&6; }22130$as_echo_n "checking for Fortran 77 name-mangling scheme... " >&6; }
22115if test "${ac_cv_f77_mangling+set}" = set; then :22131if ${ac_cv_f77_mangling+:} false; then :
22116 $as_echo_n "(cached) " >&622132 $as_echo_n "(cached) " >&6
22117else22133else
22118 cat > conftest.$ac_ext <<_ACEOF22134 cat > conftest.$ac_ext <<_ACEOF
@@ -22259,7 +22275,7 @@
22259 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&522275 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
22260$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}22276$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
22261as_fn_error $? "cannot compile a simple Fortran program22277as_fn_error $? "cannot compile a simple Fortran program
22262See \`config.log' for more details" "$LINENO" 5 ; }22278See \`config.log' for more details" "$LINENO" 5; }
22263fi22279fi
22264rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext22280rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2226522281
@@ -22340,7 +22356,7 @@
2234022356
22341{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lstdc++" >&522357{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lstdc++" >&5
22342$as_echo_n "checking for main in -lstdc++... " >&6; }22358$as_echo_n "checking for main in -lstdc++... " >&6; }
22343if test "${ac_cv_lib_stdcpp_main+set}" = set; then :22359if ${ac_cv_lib_stdcpp_main+:} false; then :
22344 $as_echo_n "(cached) " >&622360 $as_echo_n "(cached) " >&6
22345else22361else
22346 ac_check_lib_save_LIBS=$LIBS22362 ac_check_lib_save_LIBS=$LIBS
@@ -22376,7 +22392,7 @@
22376fi22392fi
22377{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_stdcpp_main" >&522393{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_stdcpp_main" >&5
22378$as_echo "$ac_cv_lib_stdcpp_main" >&6; }22394$as_echo "$ac_cv_lib_stdcpp_main" >&6; }
22379if test "x$ac_cv_lib_stdcpp_main" = x""yes; then :22395if test "x$ac_cv_lib_stdcpp_main" = xyes; then :
22380 cat >>confdefs.h <<_ACEOF22396 cat >>confdefs.h <<_ACEOF
22381#define HAVE_LIBSTDC__ 122397#define HAVE_LIBSTDC__ 1
22382_ACEOF22398_ACEOF
@@ -22387,7 +22403,7 @@
2238722403
22388{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lm" >&522404{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lm" >&5
22389$as_echo_n "checking for main in -lm... " >&6; }22405$as_echo_n "checking for main in -lm... " >&6; }
22390if test "${ac_cv_lib_m_main+set}" = set; then :22406if ${ac_cv_lib_m_main+:} false; then :
22391 $as_echo_n "(cached) " >&622407 $as_echo_n "(cached) " >&6
22392else22408else
22393 ac_check_lib_save_LIBS=$LIBS22409 ac_check_lib_save_LIBS=$LIBS
@@ -22423,7 +22439,7 @@
22423fi22439fi
22424{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_main" >&522440{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_main" >&5
22425$as_echo "$ac_cv_lib_m_main" >&6; }22441$as_echo "$ac_cv_lib_m_main" >&6; }
22426if test "x$ac_cv_lib_m_main" = x""yes; then :22442if test "x$ac_cv_lib_m_main" = xyes; then :
22427 cat >>confdefs.h <<_ACEOF22443 cat >>confdefs.h <<_ACEOF
22428#define HAVE_LIBM 122444#define HAVE_LIBM 1
22429_ACEOF22445_ACEOF
@@ -22434,7 +22450,7 @@
2243422450
22435{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lpthread" >&522451{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lpthread" >&5
22436$as_echo_n "checking for main in -lpthread... " >&6; }22452$as_echo_n "checking for main in -lpthread... " >&6; }
22437if test "${ac_cv_lib_pthread_main+set}" = set; then :22453if ${ac_cv_lib_pthread_main+:} false; then :
22438 $as_echo_n "(cached) " >&622454 $as_echo_n "(cached) " >&6
22439else22455else
22440 ac_check_lib_save_LIBS=$LIBS22456 ac_check_lib_save_LIBS=$LIBS
@@ -22470,7 +22486,7 @@
22470fi22486fi
22471{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_main" >&522487{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_main" >&5
22472$as_echo "$ac_cv_lib_pthread_main" >&6; }22488$as_echo "$ac_cv_lib_pthread_main" >&6; }
22473if test "x$ac_cv_lib_pthread_main" = x""yes; then :22489if test "x$ac_cv_lib_pthread_main" = xyes; then :
22474 cat >>confdefs.h <<_ACEOF22490 cat >>confdefs.h <<_ACEOF
22475#define HAVE_LIBPTHREAD 122491#define HAVE_LIBPTHREAD 1
22476_ACEOF22492_ACEOF
@@ -22720,7 +22736,7 @@
22720{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&522736{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
22721$as_echo_n "checking for a BSD-compatible install... " >&6; }22737$as_echo_n "checking for a BSD-compatible install... " >&6; }
22722if test -z "$INSTALL"; then22738if test -z "$INSTALL"; then
22723if test "${ac_cv_path_install+set}" = set; then :22739if ${ac_cv_path_install+:} false; then :
22724 $as_echo_n "(cached) " >&622740 $as_echo_n "(cached) " >&6
22725else22741else
22726 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR22742 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -22800,7 +22816,7 @@
22800set dummy gmake; ac_word=$222816set dummy gmake; ac_word=$2
22801{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&522817{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
22802$as_echo_n "checking for $ac_word... " >&6; }22818$as_echo_n "checking for $ac_word... " >&6; }
22803if test "${ac_cv_prog_MAKE+set}" = set; then :22819if ${ac_cv_prog_MAKE+:} false; then :
22804 $as_echo_n "(cached) " >&622820 $as_echo_n "(cached) " >&6
22805else22821else
22806 if test -n "$MAKE"; then22822 if test -n "$MAKE"; then
@@ -22841,7 +22857,7 @@
22841set dummy ar; ac_word=$222857set dummy ar; ac_word=$2
22842{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&522858{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
22843$as_echo_n "checking for $ac_word... " >&6; }22859$as_echo_n "checking for $ac_word... " >&6; }
22844if test "${ac_cv_prog_AR+set}" = set; then :22860if ${ac_cv_prog_AR+:} false; then :
22845 $as_echo_n "(cached) " >&622861 $as_echo_n "(cached) " >&6
22846else22862else
22847 if test -n "$AR"; then22863 if test -n "$AR"; then
@@ -22880,7 +22896,7 @@
22880set dummy ${ac_tool_prefix}ranlib; ac_word=$222896set dummy ${ac_tool_prefix}ranlib; ac_word=$2
22881{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&522897{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
22882$as_echo_n "checking for $ac_word... " >&6; }22898$as_echo_n "checking for $ac_word... " >&6; }
22883if test "${ac_cv_prog_RANLIB+set}" = set; then :22899if ${ac_cv_prog_RANLIB+:} false; then :
22884 $as_echo_n "(cached) " >&622900 $as_echo_n "(cached) " >&6
22885else22901else
22886 if test -n "$RANLIB"; then22902 if test -n "$RANLIB"; then
@@ -22920,7 +22936,7 @@
22920set dummy ranlib; ac_word=$222936set dummy ranlib; ac_word=$2
22921{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&522937{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
22922$as_echo_n "checking for $ac_word... " >&6; }22938$as_echo_n "checking for $ac_word... " >&6; }
22923if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :22939if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
22924 $as_echo_n "(cached) " >&622940 $as_echo_n "(cached) " >&6
22925else22941else
22926 if test -n "$ac_ct_RANLIB"; then22942 if test -n "$ac_ct_RANLIB"; then
@@ -23101,10 +23117,21 @@
23101 :end' >>confcache23117 :end' >>confcache
23102if diff "$cache_file" confcache >/dev/null 2>&1; then :; else23118if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
23103 if test -w "$cache_file"; then23119 if test -w "$cache_file"; then
23104 test "x$cache_file" != "x/dev/null" &&23120 if test "x$cache_file" != "x/dev/null"; then
23105 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&523121 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
23106$as_echo "$as_me: updating cache $cache_file" >&6;}23122$as_echo "$as_me: updating cache $cache_file" >&6;}
23107 cat confcache >$cache_file23123 if test ! -f "$cache_file" || test -h "$cache_file"; then
23124 cat confcache >"$cache_file"
23125 else
23126 case $cache_file in #(
23127 */* | ?:*)
23128 mv -f confcache "$cache_file"$$ &&
23129 mv -f "$cache_file"$$ "$cache_file" ;; #(
23130 *)
23131 mv -f confcache "$cache_file" ;;
23132 esac
23133 fi
23134 fi
23108 else23135 else
23109 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&523136 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
23110$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}23137$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
@@ -23172,7 +23199,7 @@
2317223199
2317323200
2317423201
23175: ${CONFIG_STATUS=./config.status}23202: "${CONFIG_STATUS=./config.status}"
23176ac_write_fail=023203ac_write_fail=0
23177ac_clean_files_save=$ac_clean_files23204ac_clean_files_save=$ac_clean_files
23178ac_clean_files="$ac_clean_files $CONFIG_STATUS"23205ac_clean_files="$ac_clean_files $CONFIG_STATUS"
@@ -23273,6 +23300,7 @@
23273IFS=" "" $as_nl"23300IFS=" "" $as_nl"
2327423301
23275# Find who we are. Look in the path if we contain no directory separator.23302# Find who we are. Look in the path if we contain no directory separator.
23303as_myself=
23276case $0 in #((23304case $0 in #((
23277 *[\\/]* ) as_myself=$0 ;;23305 *[\\/]* ) as_myself=$0 ;;
23278 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR23306 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -23580,7 +23608,7 @@
23580# values after options handling.23608# values after options handling.
23581ac_log="23609ac_log="
23582This file was extended by $as_me, which was23610This file was extended by $as_me, which was
23583generated by GNU Autoconf 2.67. Invocation command line was23611generated by GNU Autoconf 2.68. Invocation command line was
2358423612
23585 CONFIG_FILES = $CONFIG_FILES23613 CONFIG_FILES = $CONFIG_FILES
23586 CONFIG_HEADERS = $CONFIG_HEADERS23614 CONFIG_HEADERS = $CONFIG_HEADERS
@@ -23637,7 +23665,7 @@
23637ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"23665ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
23638ac_cs_version="\\23666ac_cs_version="\\
23639config.status23667config.status
23640configured by $0, generated by GNU Autoconf 2.67,23668configured by $0, generated by GNU Autoconf 2.68,
23641 with options \\"\$ac_cs_config\\"23669 with options \\"\$ac_cs_config\\"
2364223670
23643Copyright (C) 2010 Free Software Foundation, Inc.23671Copyright (C) 2010 Free Software Foundation, Inc.
@@ -24314,7 +24342,7 @@
24314 "diamond/diamond/plugins.py") CONFIG_FILES="$CONFIG_FILES diamond/diamond/plugins.py" ;;24342 "diamond/diamond/plugins.py") CONFIG_FILES="$CONFIG_FILES diamond/diamond/plugins.py" ;;
24315 "diamond/diamond/preprocess.py") CONFIG_FILES="$CONFIG_FILES diamond/diamond/preprocess.py" ;;24343 "diamond/diamond/preprocess.py") CONFIG_FILES="$CONFIG_FILES diamond/diamond/preprocess.py" ;;
2431624344
24317 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;;24345 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
24318 esac24346 esac
24319done24347done
2432024348
@@ -24336,9 +24364,10 @@
24336# after its creation but before its name has been assigned to `$tmp'.24364# after its creation but before its name has been assigned to `$tmp'.
24337$debug ||24365$debug ||
24338{24366{
24339 tmp=24367 tmp= ac_tmp=
24340 trap 'exit_status=$?24368 trap 'exit_status=$?
24341 { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status24369 : "${ac_tmp:=$tmp}"
24370 { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
24342' 024371' 0
24343 trap 'as_fn_exit 1' 1 2 13 1524372 trap 'as_fn_exit 1' 1 2 13 15
24344}24373}
@@ -24346,12 +24375,13 @@
2434624375
24347{24376{
24348 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&24377 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
24349 test -n "$tmp" && test -d "$tmp"24378 test -d "$tmp"
24350} ||24379} ||
24351{24380{
24352 tmp=./conf$$-$RANDOM24381 tmp=./conf$$-$RANDOM
24353 (umask 077 && mkdir "$tmp")24382 (umask 077 && mkdir "$tmp")
24354} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 524383} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
24384ac_tmp=$tmp
2435524385
24356# Set up the scripts for CONFIG_FILES section.24386# Set up the scripts for CONFIG_FILES section.
24357# No need to generate them if there are no CONFIG_FILES.24387# No need to generate them if there are no CONFIG_FILES.
@@ -24373,7 +24403,7 @@
24373 ac_cs_awk_cr=$ac_cr24403 ac_cs_awk_cr=$ac_cr
24374fi24404fi
2437524405
24376echo 'BEGIN {' >"$tmp/subs1.awk" &&24406echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
24377_ACEOF24407_ACEOF
2437824408
2437924409
@@ -24401,7 +24431,7 @@
24401rm -f conf$$subs.sh24431rm -f conf$$subs.sh
2440224432
24403cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=124433cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
24404cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&24434cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
24405_ACEOF24435_ACEOF
24406sed -n '24436sed -n '
24407h24437h
@@ -24449,7 +24479,7 @@
24449rm -f conf$$subs.awk24479rm -f conf$$subs.awk
24450cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=124480cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
24451_ACAWK24481_ACAWK
24452cat >>"\$tmp/subs1.awk" <<_ACAWK &&24482cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
24453 for (key in S) S_is_set[key] = 124483 for (key in S) S_is_set[key] = 1
24454 FS = ""24484 FS = ""
2445524485
@@ -24481,7 +24511,7 @@
24481 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"24511 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
24482else24512else
24483 cat24513 cat
24484fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \24514fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
24485 || as_fn_error $? "could not setup config files machinery" "$LINENO" 524515 || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
24486_ACEOF24516_ACEOF
2448724517
@@ -24521,7 +24551,7 @@
24521 esac24551 esac
24522 case $ac_mode$ac_tag in24552 case $ac_mode$ac_tag in
24523 :[FHL]*:*);;24553 :[FHL]*:*);;
24524 :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;;24554 :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
24525 :[FH]-) ac_tag=-:-;;24555 :[FH]-) ac_tag=-:-;;
24526 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;24556 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
24527 esac24557 esac
@@ -24540,7 +24570,7 @@
24540 for ac_f24570 for ac_f
24541 do24571 do
24542 case $ac_f in24572 case $ac_f in
24543 -) ac_f="$tmp/stdin";;24573 -) ac_f="$ac_tmp/stdin";;
24544 *) # Look for the file first in the build tree, then in the source tree24574 *) # Look for the file first in the build tree, then in the source tree
24545 # (if the path is not absolute). The absolute path cannot be DOS-style,24575 # (if the path is not absolute). The absolute path cannot be DOS-style,
24546 # because $ac_f cannot contain `:'.24576 # because $ac_f cannot contain `:'.
@@ -24549,7 +24579,7 @@
24549 [\\/$]*) false;;24579 [\\/$]*) false;;
24550 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;24580 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
24551 esac ||24581 esac ||
24552 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;;24582 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
24553 esac24583 esac
24554 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac24584 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
24555 as_fn_append ac_file_inputs " '$ac_f'"24585 as_fn_append ac_file_inputs " '$ac_f'"
@@ -24575,8 +24605,8 @@
24575 esac24605 esac
2457624606
24577 case $ac_tag in24607 case $ac_tag in
24578 *:-:* | *:-) cat >"$tmp/stdin" \24608 *:-:* | *:-) cat >"$ac_tmp/stdin" \
24579 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;24609 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
24580 esac24610 esac
24581 ;;24611 ;;
24582 esac24612 esac
@@ -24706,21 +24736,22 @@
24706s&@INSTALL@&$ac_INSTALL&;t t24736s&@INSTALL@&$ac_INSTALL&;t t
24707$ac_datarootdir_hack24737$ac_datarootdir_hack
24708"24738"
24709eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \24739eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
24710 || as_fn_error $? "could not create $ac_file" "$LINENO" 524740 >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
2471124741
24712test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&24742test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
24713 { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&24743 { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
24714 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&24744 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
24745 "$ac_tmp/out"`; test -z "$ac_out"; } &&
24715 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'24746 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
24716which seems to be undefined. Please make sure it is defined" >&524747which seems to be undefined. Please make sure it is defined" >&5
24717$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'24748$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
24718which seems to be undefined. Please make sure it is defined" >&2;}24749which seems to be undefined. Please make sure it is defined" >&2;}
2471924750
24720 rm -f "$tmp/stdin"24751 rm -f "$ac_tmp/stdin"
24721 case $ac_file in24752 case $ac_file in
24722 -) cat "$tmp/out" && rm -f "$tmp/out";;24753 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
24723 *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;24754 *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
24724 esac \24755 esac \
24725 || as_fn_error $? "could not create $ac_file" "$LINENO" 524756 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
24726 ;;24757 ;;

Subscribers

People subscribed via source and target branches