diff options
Diffstat (limited to 'libltdl/configure')
-rwxr-xr-x | libltdl/configure | 124 |
1 files changed, 66 insertions, 58 deletions
diff --git a/libltdl/configure b/libltdl/configure index 13b09f57..03678466 100755 --- a/libltdl/configure +++ b/libltdl/configure | |||
@@ -465,7 +465,7 @@ ac_includes_default="\ | |||
465 | # include <unistd.h> | 465 | # include <unistd.h> |
466 | #endif" | 466 | #endif" |
467 | 467 | ||
468 | ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE build build_cpu build_vendor build_os host host_cpu host_vendor host_os EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB DLLTOOL ac_ct_DLLTOOL AS ac_ct_AS OBJDUMP ac_ct_OBJDUMP CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL LIBTOOL_DEPS INSTALL_LTDL_TRUE INSTALL_LTDL_FALSE CONVENIENCE_LTDL_TRUE CONVENIENCE_LTDL_FALSE LIBADD_DL LIBOBJS LTLIBOBJS' | 468 | ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE build build_cpu build_vendor build_os host host_cpu host_vendor host_os EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB DLLTOOL ac_ct_DLLTOOL AS ac_ct_AS OBJDUMP ac_ct_OBJDUMP CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL LIBTOOL_DEPS INSTALL_LTDL_TRUE INSTALL_LTDL_FALSE CONVENIENCE_LTDL_TRUE CONVENIENCE_LTDL_FALSE LIBADD_DL LIBOBJS LTLIBOBJS' |
469 | ac_subst_files='' | 469 | ac_subst_files='' |
470 | 470 | ||
471 | # Initialize some variables set by options. | 471 | # Initialize some variables set by options. |
@@ -1565,7 +1565,7 @@ fi | |||
1565 | ## ------------------------ ## | 1565 | ## ------------------------ ## |
1566 | ## Automake Initialisation. ## | 1566 | ## Automake Initialisation. ## |
1567 | ## ------------------------ ## | 1567 | ## ------------------------ ## |
1568 | am__api_version="1.8" | 1568 | am__api_version="1.9" |
1569 | # Find a good install program. We prefer a C program (faster), | 1569 | # Find a good install program. We prefer a C program (faster), |
1570 | # so one script is as good as another. But avoid the broken or | 1570 | # so one script is as good as another. But avoid the broken or |
1571 | # incompatible versions: | 1571 | # incompatible versions: |
@@ -1717,13 +1717,21 @@ echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} | |||
1717 | fi | 1717 | fi |
1718 | 1718 | ||
1719 | if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then | 1719 | if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then |
1720 | # Keeping the `.' argument allows $(mkdir_p) to be used without | 1720 | # We used to keeping the `.' as first argument, in order to |
1721 | # argument. Indeed, we sometimes output rules like | 1721 | # allow $(mkdir_p) to be used without argument. As in |
1722 | # $(mkdir_p) $(somedir) | 1722 | # $(mkdir_p) $(somedir) |
1723 | # where $(somedir) is conditionally defined. | 1723 | # where $(somedir) is conditionally defined. However this is wrong |
1724 | # (`test -n '$(somedir)' && $(mkdir_p) $(somedir)' is a more | 1724 | # for two reasons: |
1725 | # expensive solution, as it forces Make to start a sub-shell.) | 1725 | # 1. if the package is installed by a user who cannot write `.' |
1726 | mkdir_p='mkdir -p -- .' | 1726 | # make install will fail, |
1727 | # 2. the above comment should most certainly read | ||
1728 | # $(mkdir_p) $(DESTDIR)$(somedir) | ||
1729 | # so it does not work when $(somedir) is undefined and | ||
1730 | # $(DESTDIR) is not. | ||
1731 | # To support the latter case, we have to write | ||
1732 | # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), | ||
1733 | # so the `.' trick is pointless. | ||
1734 | mkdir_p='mkdir -p --' | ||
1727 | else | 1735 | else |
1728 | # On NextStep and OpenStep, the `mkdir' command does not | 1736 | # On NextStep and OpenStep, the `mkdir' command does not |
1729 | # recognize any option. It will interpret all options as | 1737 | # recognize any option. It will interpret all options as |
@@ -1858,9 +1866,6 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} | |||
1858 | 1866 | ||
1859 | MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} | 1867 | MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} |
1860 | 1868 | ||
1861 | |||
1862 | AMTAR=${AMTAR-"${am_missing_run}tar"} | ||
1863 | |||
1864 | install_sh=${install_sh-"$am_aux_dir/install-sh"} | 1869 | install_sh=${install_sh-"$am_aux_dir/install-sh"} |
1865 | 1870 | ||
1866 | # Installed binaries are usually stripped using `strip' when the user | 1871 | # Installed binaries are usually stripped using `strip' when the user |
@@ -1953,6 +1958,13 @@ INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" | |||
1953 | 1958 | ||
1954 | # We need awk for the "check" target. The system "awk" is bad on | 1959 | # We need awk for the "check" target. The system "awk" is bad on |
1955 | # some platforms. | 1960 | # some platforms. |
1961 | # Always define AMTAR for backward compatibility. | ||
1962 | |||
1963 | AMTAR=${AMTAR-"${am_missing_run}tar"} | ||
1964 | |||
1965 | am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' | ||
1966 | |||
1967 | |||
1956 | 1968 | ||
1957 | 1969 | ||
1958 | 1970 | ||
@@ -3867,7 +3879,7 @@ ia64-*-hpux*) | |||
3867 | ;; | 3879 | ;; |
3868 | *-*-irix6*) | 3880 | *-*-irix6*) |
3869 | # Find out which ABI we are using. | 3881 | # Find out which ABI we are using. |
3870 | echo '#line 3870 "configure"' > conftest.$ac_ext | 3882 | echo '#line 3882 "configure"' > conftest.$ac_ext |
3871 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | 3883 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 |
3872 | (eval $ac_compile) 2>&5 | 3884 | (eval $ac_compile) 2>&5 |
3873 | ac_status=$? | 3885 | ac_status=$? |
@@ -5673,7 +5685,7 @@ fi | |||
5673 | 5685 | ||
5674 | 5686 | ||
5675 | # Provide some information about the compiler. | 5687 | # Provide some information about the compiler. |
5676 | echo "$as_me:5676:" \ | 5688 | echo "$as_me:5688:" \ |
5677 | "checking for Fortran 77 compiler version" >&5 | 5689 | "checking for Fortran 77 compiler version" >&5 |
5678 | ac_compiler=`set X $ac_compile; echo $2` | 5690 | ac_compiler=`set X $ac_compile; echo $2` |
5679 | { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 | 5691 | { (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 |
@@ -6705,11 +6717,11 @@ else | |||
6705 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ | 6717 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ |
6706 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 6718 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
6707 | -e 's:$: $lt_compiler_flag:'` | 6719 | -e 's:$: $lt_compiler_flag:'` |
6708 | (eval echo "\"\$as_me:6708: $lt_compile\"" >&5) | 6720 | (eval echo "\"\$as_me:6720: $lt_compile\"" >&5) |
6709 | (eval "$lt_compile" 2>conftest.err) | 6721 | (eval "$lt_compile" 2>conftest.err) |
6710 | ac_status=$? | 6722 | ac_status=$? |
6711 | cat conftest.err >&5 | 6723 | cat conftest.err >&5 |
6712 | echo "$as_me:6712: \$? = $ac_status" >&5 | 6724 | echo "$as_me:6724: \$? = $ac_status" >&5 |
6713 | if (exit $ac_status) && test -s "$ac_outfile"; then | 6725 | if (exit $ac_status) && test -s "$ac_outfile"; then |
6714 | # The compiler can only warn and ignore the option if not recognized | 6726 | # The compiler can only warn and ignore the option if not recognized |
6715 | # So say no if there are warnings | 6727 | # So say no if there are warnings |
@@ -6938,11 +6950,11 @@ else | |||
6938 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ | 6950 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ |
6939 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 6951 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
6940 | -e 's:$: $lt_compiler_flag:'` | 6952 | -e 's:$: $lt_compiler_flag:'` |
6941 | (eval echo "\"\$as_me:6941: $lt_compile\"" >&5) | 6953 | (eval echo "\"\$as_me:6953: $lt_compile\"" >&5) |
6942 | (eval "$lt_compile" 2>conftest.err) | 6954 | (eval "$lt_compile" 2>conftest.err) |
6943 | ac_status=$? | 6955 | ac_status=$? |
6944 | cat conftest.err >&5 | 6956 | cat conftest.err >&5 |
6945 | echo "$as_me:6945: \$? = $ac_status" >&5 | 6957 | echo "$as_me:6957: \$? = $ac_status" >&5 |
6946 | if (exit $ac_status) && test -s "$ac_outfile"; then | 6958 | if (exit $ac_status) && test -s "$ac_outfile"; then |
6947 | # The compiler can only warn and ignore the option if not recognized | 6959 | # The compiler can only warn and ignore the option if not recognized |
6948 | # So say no if there are warnings | 6960 | # So say no if there are warnings |
@@ -6998,11 +7010,11 @@ else | |||
6998 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ | 7010 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ |
6999 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 7011 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
7000 | -e 's:$: $lt_compiler_flag:'` | 7012 | -e 's:$: $lt_compiler_flag:'` |
7001 | (eval echo "\"\$as_me:7001: $lt_compile\"" >&5) | 7013 | (eval echo "\"\$as_me:7013: $lt_compile\"" >&5) |
7002 | (eval "$lt_compile" 2>out/conftest.err) | 7014 | (eval "$lt_compile" 2>out/conftest.err) |
7003 | ac_status=$? | 7015 | ac_status=$? |
7004 | cat out/conftest.err >&5 | 7016 | cat out/conftest.err >&5 |
7005 | echo "$as_me:7005: \$? = $ac_status" >&5 | 7017 | echo "$as_me:7017: \$? = $ac_status" >&5 |
7006 | if (exit $ac_status) && test -s out/conftest2.$ac_objext | 7018 | if (exit $ac_status) && test -s out/conftest2.$ac_objext |
7007 | then | 7019 | then |
7008 | # The compiler can only warn and ignore the option if not recognized | 7020 | # The compiler can only warn and ignore the option if not recognized |
@@ -9186,7 +9198,7 @@ else | |||
9186 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 | 9198 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 |
9187 | lt_status=$lt_dlunknown | 9199 | lt_status=$lt_dlunknown |
9188 | cat > conftest.$ac_ext <<EOF | 9200 | cat > conftest.$ac_ext <<EOF |
9189 | #line 9189 "configure" | 9201 | #line 9201 "configure" |
9190 | #include "confdefs.h" | 9202 | #include "confdefs.h" |
9191 | 9203 | ||
9192 | #if HAVE_DLFCN_H | 9204 | #if HAVE_DLFCN_H |
@@ -9284,7 +9296,7 @@ else | |||
9284 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 | 9296 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 |
9285 | lt_status=$lt_dlunknown | 9297 | lt_status=$lt_dlunknown |
9286 | cat > conftest.$ac_ext <<EOF | 9298 | cat > conftest.$ac_ext <<EOF |
9287 | #line 9287 "configure" | 9299 | #line 9299 "configure" |
9288 | #include "confdefs.h" | 9300 | #include "confdefs.h" |
9289 | 9301 | ||
9290 | #if HAVE_DLFCN_H | 9302 | #if HAVE_DLFCN_H |
@@ -11461,11 +11473,11 @@ else | |||
11461 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ | 11473 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ |
11462 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 11474 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
11463 | -e 's:$: $lt_compiler_flag:'` | 11475 | -e 's:$: $lt_compiler_flag:'` |
11464 | (eval echo "\"\$as_me:11464: $lt_compile\"" >&5) | 11476 | (eval echo "\"\$as_me:11476: $lt_compile\"" >&5) |
11465 | (eval "$lt_compile" 2>conftest.err) | 11477 | (eval "$lt_compile" 2>conftest.err) |
11466 | ac_status=$? | 11478 | ac_status=$? |
11467 | cat conftest.err >&5 | 11479 | cat conftest.err >&5 |
11468 | echo "$as_me:11468: \$? = $ac_status" >&5 | 11480 | echo "$as_me:11480: \$? = $ac_status" >&5 |
11469 | if (exit $ac_status) && test -s "$ac_outfile"; then | 11481 | if (exit $ac_status) && test -s "$ac_outfile"; then |
11470 | # The compiler can only warn and ignore the option if not recognized | 11482 | # The compiler can only warn and ignore the option if not recognized |
11471 | # So say no if there are warnings | 11483 | # So say no if there are warnings |
@@ -11521,11 +11533,11 @@ else | |||
11521 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ | 11533 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ |
11522 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 11534 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
11523 | -e 's:$: $lt_compiler_flag:'` | 11535 | -e 's:$: $lt_compiler_flag:'` |
11524 | (eval echo "\"\$as_me:11524: $lt_compile\"" >&5) | 11536 | (eval echo "\"\$as_me:11536: $lt_compile\"" >&5) |
11525 | (eval "$lt_compile" 2>out/conftest.err) | 11537 | (eval "$lt_compile" 2>out/conftest.err) |
11526 | ac_status=$? | 11538 | ac_status=$? |
11527 | cat out/conftest.err >&5 | 11539 | cat out/conftest.err >&5 |
11528 | echo "$as_me:11528: \$? = $ac_status" >&5 | 11540 | echo "$as_me:11540: \$? = $ac_status" >&5 |
11529 | if (exit $ac_status) && test -s out/conftest2.$ac_objext | 11541 | if (exit $ac_status) && test -s out/conftest2.$ac_objext |
11530 | then | 11542 | then |
11531 | # The compiler can only warn and ignore the option if not recognized | 11543 | # The compiler can only warn and ignore the option if not recognized |
@@ -12890,7 +12902,7 @@ else | |||
12890 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 | 12902 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 |
12891 | lt_status=$lt_dlunknown | 12903 | lt_status=$lt_dlunknown |
12892 | cat > conftest.$ac_ext <<EOF | 12904 | cat > conftest.$ac_ext <<EOF |
12893 | #line 12893 "configure" | 12905 | #line 12905 "configure" |
12894 | #include "confdefs.h" | 12906 | #include "confdefs.h" |
12895 | 12907 | ||
12896 | #if HAVE_DLFCN_H | 12908 | #if HAVE_DLFCN_H |
@@ -12988,7 +13000,7 @@ else | |||
12988 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 | 13000 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 |
12989 | lt_status=$lt_dlunknown | 13001 | lt_status=$lt_dlunknown |
12990 | cat > conftest.$ac_ext <<EOF | 13002 | cat > conftest.$ac_ext <<EOF |
12991 | #line 12991 "configure" | 13003 | #line 13003 "configure" |
12992 | #include "confdefs.h" | 13004 | #include "confdefs.h" |
12993 | 13005 | ||
12994 | #if HAVE_DLFCN_H | 13006 | #if HAVE_DLFCN_H |
@@ -13815,11 +13827,11 @@ else | |||
13815 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ | 13827 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ |
13816 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 13828 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
13817 | -e 's:$: $lt_compiler_flag:'` | 13829 | -e 's:$: $lt_compiler_flag:'` |
13818 | (eval echo "\"\$as_me:13818: $lt_compile\"" >&5) | 13830 | (eval echo "\"\$as_me:13830: $lt_compile\"" >&5) |
13819 | (eval "$lt_compile" 2>conftest.err) | 13831 | (eval "$lt_compile" 2>conftest.err) |
13820 | ac_status=$? | 13832 | ac_status=$? |
13821 | cat conftest.err >&5 | 13833 | cat conftest.err >&5 |
13822 | echo "$as_me:13822: \$? = $ac_status" >&5 | 13834 | echo "$as_me:13834: \$? = $ac_status" >&5 |
13823 | if (exit $ac_status) && test -s "$ac_outfile"; then | 13835 | if (exit $ac_status) && test -s "$ac_outfile"; then |
13824 | # The compiler can only warn and ignore the option if not recognized | 13836 | # The compiler can only warn and ignore the option if not recognized |
13825 | # So say no if there are warnings | 13837 | # So say no if there are warnings |
@@ -13875,11 +13887,11 @@ else | |||
13875 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ | 13887 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ |
13876 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 13888 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
13877 | -e 's:$: $lt_compiler_flag:'` | 13889 | -e 's:$: $lt_compiler_flag:'` |
13878 | (eval echo "\"\$as_me:13878: $lt_compile\"" >&5) | 13890 | (eval echo "\"\$as_me:13890: $lt_compile\"" >&5) |
13879 | (eval "$lt_compile" 2>out/conftest.err) | 13891 | (eval "$lt_compile" 2>out/conftest.err) |
13880 | ac_status=$? | 13892 | ac_status=$? |
13881 | cat out/conftest.err >&5 | 13893 | cat out/conftest.err >&5 |
13882 | echo "$as_me:13882: \$? = $ac_status" >&5 | 13894 | echo "$as_me:13894: \$? = $ac_status" >&5 |
13883 | if (exit $ac_status) && test -s out/conftest2.$ac_objext | 13895 | if (exit $ac_status) && test -s out/conftest2.$ac_objext |
13884 | then | 13896 | then |
13885 | # The compiler can only warn and ignore the option if not recognized | 13897 | # The compiler can only warn and ignore the option if not recognized |
@@ -15920,11 +15932,11 @@ else | |||
15920 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ | 15932 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ |
15921 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 15933 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
15922 | -e 's:$: $lt_compiler_flag:'` | 15934 | -e 's:$: $lt_compiler_flag:'` |
15923 | (eval echo "\"\$as_me:15923: $lt_compile\"" >&5) | 15935 | (eval echo "\"\$as_me:15935: $lt_compile\"" >&5) |
15924 | (eval "$lt_compile" 2>conftest.err) | 15936 | (eval "$lt_compile" 2>conftest.err) |
15925 | ac_status=$? | 15937 | ac_status=$? |
15926 | cat conftest.err >&5 | 15938 | cat conftest.err >&5 |
15927 | echo "$as_me:15927: \$? = $ac_status" >&5 | 15939 | echo "$as_me:15939: \$? = $ac_status" >&5 |
15928 | if (exit $ac_status) && test -s "$ac_outfile"; then | 15940 | if (exit $ac_status) && test -s "$ac_outfile"; then |
15929 | # The compiler can only warn and ignore the option if not recognized | 15941 | # The compiler can only warn and ignore the option if not recognized |
15930 | # So say no if there are warnings | 15942 | # So say no if there are warnings |
@@ -16153,11 +16165,11 @@ else | |||
16153 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ | 16165 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ |
16154 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 16166 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
16155 | -e 's:$: $lt_compiler_flag:'` | 16167 | -e 's:$: $lt_compiler_flag:'` |
16156 | (eval echo "\"\$as_me:16156: $lt_compile\"" >&5) | 16168 | (eval echo "\"\$as_me:16168: $lt_compile\"" >&5) |
16157 | (eval "$lt_compile" 2>conftest.err) | 16169 | (eval "$lt_compile" 2>conftest.err) |
16158 | ac_status=$? | 16170 | ac_status=$? |
16159 | cat conftest.err >&5 | 16171 | cat conftest.err >&5 |
16160 | echo "$as_me:16160: \$? = $ac_status" >&5 | 16172 | echo "$as_me:16172: \$? = $ac_status" >&5 |
16161 | if (exit $ac_status) && test -s "$ac_outfile"; then | 16173 | if (exit $ac_status) && test -s "$ac_outfile"; then |
16162 | # The compiler can only warn and ignore the option if not recognized | 16174 | # The compiler can only warn and ignore the option if not recognized |
16163 | # So say no if there are warnings | 16175 | # So say no if there are warnings |
@@ -16213,11 +16225,11 @@ else | |||
16213 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ | 16225 | -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ |
16214 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ | 16226 | -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ |
16215 | -e 's:$: $lt_compiler_flag:'` | 16227 | -e 's:$: $lt_compiler_flag:'` |
16216 | (eval echo "\"\$as_me:16216: $lt_compile\"" >&5) | 16228 | (eval echo "\"\$as_me:16228: $lt_compile\"" >&5) |
16217 | (eval "$lt_compile" 2>out/conftest.err) | 16229 | (eval "$lt_compile" 2>out/conftest.err) |
16218 | ac_status=$? | 16230 | ac_status=$? |
16219 | cat out/conftest.err >&5 | 16231 | cat out/conftest.err >&5 |
16220 | echo "$as_me:16220: \$? = $ac_status" >&5 | 16232 | echo "$as_me:16232: \$? = $ac_status" >&5 |
16221 | if (exit $ac_status) && test -s out/conftest2.$ac_objext | 16233 | if (exit $ac_status) && test -s out/conftest2.$ac_objext |
16222 | then | 16234 | then |
16223 | # The compiler can only warn and ignore the option if not recognized | 16235 | # The compiler can only warn and ignore the option if not recognized |
@@ -18401,7 +18413,7 @@ else | |||
18401 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 | 18413 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 |
18402 | lt_status=$lt_dlunknown | 18414 | lt_status=$lt_dlunknown |
18403 | cat > conftest.$ac_ext <<EOF | 18415 | cat > conftest.$ac_ext <<EOF |
18404 | #line 18404 "configure" | 18416 | #line 18416 "configure" |
18405 | #include "confdefs.h" | 18417 | #include "confdefs.h" |
18406 | 18418 | ||
18407 | #if HAVE_DLFCN_H | 18419 | #if HAVE_DLFCN_H |
@@ -18499,7 +18511,7 @@ else | |||
18499 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 | 18511 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 |
18500 | lt_status=$lt_dlunknown | 18512 | lt_status=$lt_dlunknown |
18501 | cat > conftest.$ac_ext <<EOF | 18513 | cat > conftest.$ac_ext <<EOF |
18502 | #line 18502 "configure" | 18514 | #line 18514 "configure" |
18503 | #include "confdefs.h" | 18515 | #include "confdefs.h" |
18504 | 18516 | ||
18505 | #if HAVE_DLFCN_H | 18517 | #if HAVE_DLFCN_H |
@@ -20716,7 +20728,7 @@ else | |||
20716 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 | 20728 | lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 |
20717 | lt_status=$lt_dlunknown | 20729 | lt_status=$lt_dlunknown |
20718 | cat > conftest.$ac_ext <<EOF | 20730 | cat > conftest.$ac_ext <<EOF |
20719 | #line 20719 "configure" | 20731 | #line 20731 "configure" |
20720 | #include "confdefs.h" | 20732 | #include "confdefs.h" |
20721 | 20733 | ||
20722 | #if HAVE_DLFCN_H | 20734 | #if HAVE_DLFCN_H |
@@ -22901,7 +22913,6 @@ s,@AUTOCONF@,$AUTOCONF,;t t | |||
22901 | s,@AUTOMAKE@,$AUTOMAKE,;t t | 22913 | s,@AUTOMAKE@,$AUTOMAKE,;t t |
22902 | s,@AUTOHEADER@,$AUTOHEADER,;t t | 22914 | s,@AUTOHEADER@,$AUTOHEADER,;t t |
22903 | s,@MAKEINFO@,$MAKEINFO,;t t | 22915 | s,@MAKEINFO@,$MAKEINFO,;t t |
22904 | s,@AMTAR@,$AMTAR,;t t | ||
22905 | s,@install_sh@,$install_sh,;t t | 22916 | s,@install_sh@,$install_sh,;t t |
22906 | s,@STRIP@,$STRIP,;t t | 22917 | s,@STRIP@,$STRIP,;t t |
22907 | s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t | 22918 | s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t |
@@ -22910,6 +22921,9 @@ s,@mkdir_p@,$mkdir_p,;t t | |||
22910 | s,@AWK@,$AWK,;t t | 22921 | s,@AWK@,$AWK,;t t |
22911 | s,@SET_MAKE@,$SET_MAKE,;t t | 22922 | s,@SET_MAKE@,$SET_MAKE,;t t |
22912 | s,@am__leading_dot@,$am__leading_dot,;t t | 22923 | s,@am__leading_dot@,$am__leading_dot,;t t |
22924 | s,@AMTAR@,$AMTAR,;t t | ||
22925 | s,@am__tar@,$am__tar,;t t | ||
22926 | s,@am__untar@,$am__untar,;t t | ||
22913 | s,@MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t | 22927 | s,@MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t |
22914 | s,@MAINTAINER_MODE_FALSE@,$MAINTAINER_MODE_FALSE,;t t | 22928 | s,@MAINTAINER_MODE_FALSE@,$MAINTAINER_MODE_FALSE,;t t |
22915 | s,@MAINT@,$MAINT,;t t | 22929 | s,@MAINT@,$MAINT,;t t |
@@ -23593,27 +23607,21 @@ echo X"$mf" | | |||
23593 | else | 23607 | else |
23594 | continue | 23608 | continue |
23595 | fi | 23609 | fi |
23596 | grep '^DEP_FILES *= *[^ #]' < "$mf" > /dev/null || continue | 23610 | # Extract the definition of DEPDIR, am__include, and am__quote |
23597 | # Extract the definition of DEP_FILES from the Makefile without | 23611 | # from the Makefile without running `make'. |
23598 | # running `make'. | ||
23599 | DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` | 23612 | DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` |
23600 | test -z "$DEPDIR" && continue | 23613 | test -z "$DEPDIR" && continue |
23614 | am__include=`sed -n 's/^am__include = //p' < "$mf"` | ||
23615 | test -z "am__include" && continue | ||
23616 | am__quote=`sed -n 's/^am__quote = //p' < "$mf"` | ||
23601 | # When using ansi2knr, U may be empty or an underscore; expand it | 23617 | # When using ansi2knr, U may be empty or an underscore; expand it |
23602 | U=`sed -n 's/^U = //p' < "$mf"` | 23618 | U=`sed -n 's/^U = //p' < "$mf"` |
23603 | test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR" | 23619 | # Find all dependency output files, they are included files with |
23604 | # We invoke sed twice because it is the simplest approach to | 23620 | # $(DEPDIR) in their names. We invoke sed twice because it is the |
23605 | # changing $(DEPDIR) to its actual value in the expansion. | 23621 | # simplest approach to changing $(DEPDIR) to its actual value in the |
23606 | for file in `sed -n ' | 23622 | # expansion. |
23607 | /^DEP_FILES = .*\\\\$/ { | 23623 | for file in `sed -n " |
23608 | s/^DEP_FILES = // | 23624 | s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ |
23609 | :loop | ||
23610 | s/\\\\$// | ||
23611 | p | ||
23612 | n | ||
23613 | /\\\\$/ b loop | ||
23614 | p | ||
23615 | } | ||
23616 | /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \ | ||
23617 | sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do | 23625 | sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do |
23618 | # Make sure the directory exists. | 23626 | # Make sure the directory exists. |
23619 | test -f "$dirpart/$file" && continue | 23627 | test -f "$dirpart/$file" && continue |