libtool.m4.in
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:203k
源码类别:

OpenGL

开发平台:

Visual C++

  1. # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
  2. ## Copyright 1996, 1997, 1998, 1999, 2000, 2001
  3. ## Free Software Foundation, Inc.
  4. ## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
  5. ##
  6. ## This program is free software; you can redistribute it and/or modify
  7. ## it under the terms of the GNU General Public License as published by
  8. ## the Free Software Foundation; either version 2 of the License, or
  9. ## (at your option) any later version.
  10. ##
  11. ## This program is distributed in the hope that it will be useful, but
  12. ## WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. ## General Public License for more details.
  15. ##
  16. ## You should have received a copy of the GNU General Public License
  17. ## along with this program; if not, write to the Free Software
  18. ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  19. ##
  20. ## As a special exception to the GNU General Public License, if you
  21. ## distribute this file as part of a program that contains a
  22. ## configuration script generated by Autoconf, you may include it under
  23. ## the same distribution terms that you use for the rest of that program.
  24. # serial 47 AC_PROG_LIBTOOL
  25. # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED)
  26. # -----------------------------------------------------------
  27. # If this macro is not defined by Autoconf, define it here.
  28. m4_ifdef([AC_PROVIDE_IFELSE],
  29.          [],
  30.          [m4_define([AC_PROVIDE_IFELSE],
  31.          [m4_ifdef([AC_PROVIDE_$1],
  32.            [$2], [$3])])])
  33. # AC_PROG_LIBTOOL
  34. # ---------------
  35. AC_DEFUN([AC_PROG_LIBTOOL],
  36. [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl
  37. dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX
  38. dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX.
  39.   AC_PROVIDE_IFELSE([AC_PROG_CXX],
  40.     [AC_LIBTOOL_CXX],
  41.     [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX
  42.   ])])
  43. dnl And a similar setup for Fortran 77 support
  44.   AC_PROVIDE_IFELSE([AC_PROG_F77],
  45.     [AC_LIBTOOL_F77],
  46.     [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77
  47. ])])
  48. dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly.
  49. dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run
  50. dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both.
  51.   AC_PROVIDE_IFELSE([AC_PROG_GCJ],
  52.     [AC_LIBTOOL_GCJ],
  53.     [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
  54.       [AC_LIBTOOL_GCJ],
  55.       [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],
  56. [AC_LIBTOOL_GCJ],
  57.       [ifdef([AC_PROG_GCJ],
  58.      [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])
  59.        ifdef([A][M_PROG_GCJ],
  60.      [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])])
  61.        ifdef([LT_AC_PROG_GCJ],
  62.      [define([LT_AC_PROG_GCJ],
  63. defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])])
  64. ])])# AC_PROG_LIBTOOL
  65. # _AC_PROG_LIBTOOL
  66. # ----------------
  67. AC_DEFUN([_AC_PROG_LIBTOOL],
  68. [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
  69. AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl
  70. AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl
  71. AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl
  72. # This can be used to rebuild libtool when needed
  73. LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
  74. # Always use our own libtool.
  75. LIBTOOL='$(SHELL) $(top_builddir)/libtool --silent'
  76. AC_SUBST(LIBTOOL)dnl
  77. # Prevent multiple expansion
  78. define([AC_PROG_LIBTOOL], [])
  79. ])# _AC_PROG_LIBTOOL
  80. # AC_LIBTOOL_SETUP
  81. # ----------------
  82. AC_DEFUN([AC_LIBTOOL_SETUP],
  83. [AC_PREREQ(2.50)dnl
  84. AC_REQUIRE([AC_ENABLE_SHARED])dnl
  85. AC_REQUIRE([AC_ENABLE_STATIC])dnl
  86. AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
  87. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  88. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  89. AC_REQUIRE([AC_PROG_CC])dnl
  90. AC_REQUIRE([AC_PROG_LD])dnl
  91. AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl
  92. AC_REQUIRE([AC_PROG_NM])dnl
  93. AC_REQUIRE([AC_PROG_LN_S])dnl
  94. AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl
  95. # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!
  96. AC_REQUIRE([AC_OBJEXT])dnl
  97. AC_REQUIRE([AC_EXEEXT])dnl
  98. dnl
  99. AC_LIBTOOL_SYS_MAX_CMD_LEN
  100. AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
  101. AC_LIBTOOL_OBJDIR
  102. AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
  103. _LT_AC_PROG_ECHO_BACKSLASH
  104. case $host_os in
  105. aix3*)
  106.   # AIX sometimes has problems with the GCC collect2 program.  For some
  107.   # reason, if we set the COLLECT_NAMES environment variable, the problems
  108.   # vanish in a puff of smoke.
  109.   if test "X${COLLECT_NAMES+set}" != Xset; then
  110.     COLLECT_NAMES=
  111.     export COLLECT_NAMES
  112.   fi
  113.   ;;
  114. esac
  115. # Sed substitution that helps us do robust quoting.  It backslashifies
  116. # metacharacters that are still active within double-quoted strings.
  117. Xsed='sed -e s/^X//'
  118. [sed_quote_subst='s/([\"\`$\\])/\1/g']
  119. # Same as above, but do not quote variable references.
  120. [double_quote_subst='s/([\"\`\\])/\1/g']
  121. # Sed substitution to delay expansion of an escaped shell variable in a
  122. # double_quote_subst'ed string.
  123. delay_variable_subst='s/\\\\\$/\\\$/g'
  124. # Sed substitution to avoid accidental globbing in evaled expressions
  125. no_glob_subst='s/*/\*/g'
  126. # Constants:
  127. rm="rm -f"
  128. # Global variables:
  129. default_ofile=libtool
  130. can_build_shared=yes
  131. # All known linkers require a `.a' archive for static linking (except M$VC,
  132. # which needs '.lib').
  133. libext=a
  134. ltmain="$ac_aux_dir/ltmain.sh"
  135. ofile="$default_ofile"
  136. with_gnu_ld="$lt_cv_prog_gnu_ld"
  137. AC_CHECK_TOOL(AR, ar, false)
  138. AC_CHECK_TOOL(RANLIB, ranlib, :)
  139. AC_CHECK_TOOL(STRIP, strip, :)
  140. old_CC="$CC"
  141. old_CFLAGS="$CFLAGS"
  142. # Set sane defaults for various variables
  143. test -z "$AR" && AR=ar
  144. test -z "$AR_FLAGS" && AR_FLAGS=cru
  145. test -z "$AS" && AS=as
  146. test -z "$CC" && CC=cc
  147. test -z "$LTCC" && LTCC=$CC
  148. test -z "$DLLTOOL" && DLLTOOL=dlltool
  149. test -z "$LD" && LD=ld
  150. test -z "$LN_S" && LN_S="ln -s"
  151. test -z "$MAGIC_CMD" && MAGIC_CMD=file
  152. test -z "$NM" && NM=nm
  153. test -z "$SED" && SED=sed
  154. test -z "$OBJDUMP" && OBJDUMP=objdump
  155. test -z "$RANLIB" && RANLIB=:
  156. test -z "$STRIP" && STRIP=:
  157. test -z "$ac_objext" && ac_objext=o
  158. # Determine commands to create old-style static archives.
  159. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs'
  160. old_postinstall_cmds='chmod 644 $oldlib'
  161. old_postuninstall_cmds=
  162. if test -n "$RANLIB"; then
  163.   case $host_os in
  164.   openbsd*)
  165.     old_postinstall_cmds="$RANLIB -t $oldlib~$old_postinstall_cmds"
  166.     ;;
  167.   *)
  168.     old_postinstall_cmds="$RANLIB $oldlib~$old_postinstall_cmds"
  169.     ;;
  170.   esac
  171.   old_archive_cmds="$old_archive_cmds~$RANLIB $oldlib"
  172. fi
  173. # Only perform the check for file, if the check method requires it
  174. case $deplibs_check_method in
  175. file_magic*)
  176.   if test "$file_magic_cmd" = '$MAGIC_CMD'; then
  177.     AC_PATH_MAGIC
  178.   fi
  179.   ;;
  180. esac
  181. AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
  182. AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
  183. enable_win32_dll=yes, enable_win32_dll=no)
  184. AC_ARG_ENABLE([libtool-lock],
  185.     [AC_HELP_STRING([--disable-libtool-lock],
  186. [avoid locking (might break parallel builds)])])
  187. test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
  188. AC_ARG_WITH([pic],
  189.     [AC_HELP_STRING([--with-pic],
  190. [try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
  191.     [pic_mode="$withval"],
  192.     [pic_mode=default])
  193. test -z "$pic_mode" && pic_mode=default
  194. # Use C for the default configuration in the libtool script
  195. tagname=
  196. AC_LIBTOOL_LANG_C_CONFIG
  197. _LT_AC_TAGCONFIG
  198. ])# AC_LIBTOOL_SETUP
  199. # _LT_AC_SYS_COMPILER
  200. # -------------------
  201. AC_DEFUN([_LT_AC_SYS_COMPILER],
  202. [AC_REQUIRE([AC_PROG_CC])dnl
  203. # If no C compiler was specified, use CC.
  204. LTCC=${LTCC-"$CC"}
  205. # Allow CC to be a program name with arguments.
  206. compiler=$CC
  207. ])# _LT_AC_SYS_COMPILER
  208. # _LT_AC_SYS_LIBPATH_AIX
  209. # ----------------------
  210. # Links a minimal program and checks the executable
  211. # for the system default hardcoded library path. In most cases,
  212. # this is /usr/lib:/lib, but when the MPI compilers are used
  213. # the location of the communication and MPI libs are included too.
  214. # If we don't find anything, use the default library path according
  215. # to the aix ld manual.
  216. AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX],
  217. [AC_LINK_IFELSE(AC_LANG_PROGRAM,[
  218. aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *(.*)$/1/; p; }
  219. }'`
  220. # Check for a 64-bit object if we didn't find anything.
  221. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *(.*)$/1/; p; }
  222. }'`; fi],[])
  223. if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
  224. ])# _LT_AC_SYS_LIBPATH_AIX
  225. # _LT_AC_SHELL_INIT(ARG)
  226. # ----------------------
  227. AC_DEFUN([_LT_AC_SHELL_INIT],
  228. [ifdef([AC_DIVERSION_NOTICE],
  229.      [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)],
  230.  [AC_DIVERT_PUSH(NOTICE)])
  231. $1
  232. AC_DIVERT_POP
  233. ])# _LT_AC_SHELL_INIT
  234. # _LT_AC_PROG_ECHO_BACKSLASH
  235. # --------------------------
  236. # Add some code to the start of the generated configure script which
  237. # will find an echo command which doesn't interpret backslashes.
  238. AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH],
  239. [_LT_AC_SHELL_INIT([
  240. # Check that we are running under the correct shell.
  241. SHELL=${CONFIG_SHELL-/bin/sh}
  242. case X$ECHO in
  243. X*--fallback-echo)
  244.   # Remove one level of quotation (which was required for Make).
  245.   ECHO=`echo "$ECHO" | sed 's,\\[$]\[$]0,'[$]0','`
  246.   ;;
  247. esac
  248. echo=${ECHO-echo}
  249. if test "X[$]1" = X--no-reexec; then
  250.   # Discard the --no-reexec flag, and continue.
  251.   shift
  252. elif test "X[$]1" = X--fallback-echo; then
  253.   # Avoid inline document here, it may be left over
  254.   :
  255. elif test "X`($echo 't') 2>/dev/null`" = 'Xt' ; then
  256.   # Yippee, $echo works!
  257.   :
  258. else
  259.   # Restart under the correct shell.
  260.   exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
  261. fi
  262. if test "X[$]1" = X--fallback-echo; then
  263.   # used as fallback echo
  264.   shift
  265.   cat <<EOF
  266. [$]*
  267. EOF
  268.   exit 0
  269. fi
  270. # The HP-UX ksh and POSIX shell print the target directory to stdout
  271. # if CDPATH is set.
  272. if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
  273. if test -z "$ECHO"; then
  274. if test "X${echo_test_string+set}" != Xset; then
  275. # find a string as large as possible, as long as the shell can cope with it
  276.   for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
  277.     # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
  278.     if (echo_test_string="`eval $cmd`") 2>/dev/null &&
  279.        echo_test_string="`eval $cmd`" &&
  280.        (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
  281.     then
  282.       break
  283.     fi
  284.   done
  285. fi
  286. if test "X`($echo 't') 2>/dev/null`" = 'Xt' &&
  287.    echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
  288.    test "X$echo_testing_string" = "X$echo_test_string"; then
  289.   :
  290. else
  291.   # The Solaris, AIX, and Digital Unix default echo programs unquote
  292.   # backslashes.  This makes it impossible to quote backslashes using
  293.   #   echo "$something" | sed 's/\/\\/g'
  294.   #
  295.   # So, first we look for a working echo in the user's PATH.
  296.   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  297.   for dir in $PATH /usr/ucb; do
  298.     IFS="$lt_save_ifs"
  299.     if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
  300.        test "X`($dir/echo 't') 2>/dev/null`" = 'Xt' &&
  301.        echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
  302.        test "X$echo_testing_string" = "X$echo_test_string"; then
  303.       echo="$dir/echo"
  304.       break
  305.     fi
  306.   done
  307.   IFS="$lt_save_ifs"
  308.   if test "X$echo" = Xecho; then
  309.     # We didn't find a better echo, so look for alternatives.
  310.     if test "X`(print -r 't') 2>/dev/null`" = 'Xt' &&
  311.        echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
  312.        test "X$echo_testing_string" = "X$echo_test_string"; then
  313.       # This shell has a builtin print -r that does the trick.
  314.       echo='print -r'
  315.     elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
  316.  test "X$CONFIG_SHELL" != X/bin/ksh; then
  317.       # If we have ksh, try running configure again with it.
  318.       ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
  319.       export ORIGINAL_CONFIG_SHELL
  320.       CONFIG_SHELL=/bin/ksh
  321.       export CONFIG_SHELL
  322.       exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
  323.     else
  324.       # Try using printf.
  325.       echo='printf %sn'
  326.       if test "X`($echo 't') 2>/dev/null`" = 'Xt' &&
  327.  echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
  328.  test "X$echo_testing_string" = "X$echo_test_string"; then
  329. # Cool, printf works
  330. :
  331.       elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo 't') 2>/dev/null` &&
  332.    test "X$echo_testing_string" = 'Xt' &&
  333.    echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
  334.    test "X$echo_testing_string" = "X$echo_test_string"; then
  335. CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
  336. export CONFIG_SHELL
  337. SHELL="$CONFIG_SHELL"
  338. export SHELL
  339. echo="$CONFIG_SHELL [$]0 --fallback-echo"
  340.       elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo 't') 2>/dev/null` &&
  341.    test "X$echo_testing_string" = 'Xt' &&
  342.    echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
  343.    test "X$echo_testing_string" = "X$echo_test_string"; then
  344. echo="$CONFIG_SHELL [$]0 --fallback-echo"
  345.       else
  346. # maybe with a smaller string...
  347. prev=:
  348. for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
  349.   if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
  350.   then
  351.     break
  352.   fi
  353.   prev="$cmd"
  354. done
  355. if test "$prev" != 'sed 50q "[$]0"'; then
  356.   echo_test_string=`eval $prev`
  357.   export echo_test_string
  358.   exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
  359. else
  360.   # Oops.  We lost completely, so just stick with echo.
  361.   echo=echo
  362. fi
  363.       fi
  364.     fi
  365.   fi
  366. fi
  367. fi
  368. # Copy echo and quote the copy suitably for passing to libtool from
  369. # the Makefile, instead of quoting the original, which is used later.
  370. ECHO=$echo
  371. if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
  372.    ECHO="$CONFIG_SHELL \$[$]0 --fallback-echo"
  373. fi
  374. AC_SUBST(ECHO)
  375. ])])# _LT_AC_PROG_ECHO_BACKSLASH
  376. # _LT_AC_LOCK
  377. # -----------
  378. AC_DEFUN([_LT_AC_LOCK],
  379. [AC_ARG_ENABLE([libtool-lock],
  380.     [AC_HELP_STRING([--disable-libtool-lock],
  381. [avoid locking (might break parallel builds)])])
  382. test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
  383. # Some flags need to be propagated to the compiler or linker for good
  384. # libtool support.
  385. case $host in
  386. ia64-*-hpux*)
  387.   # Find out which ABI we are using.
  388.   echo 'int i;' > conftest.$ac_ext
  389.   if AC_TRY_EVAL(ac_compile); then
  390.     case `/usr/bin/file conftest.$ac_objext` in
  391.     *ELF-32*)
  392.       HPUX_IA64_MODE="32"
  393.       ;;
  394.     *ELF-64*)
  395.       HPUX_IA64_MODE="64"
  396.       ;;
  397.     esac
  398.   fi
  399.   rm -rf conftest*
  400.   ;;
  401. *-*-irix6*)
  402.   # Find out which ABI we are using.
  403.   echo '[#]line __oline__ "configure"' > conftest.$ac_ext
  404.   if AC_TRY_EVAL(ac_compile); then
  405.    if test "$lt_cv_prog_gnu_ld" = yes; then
  406.     case `/usr/bin/file conftest.$ac_objext` in
  407.     *32-bit*)
  408.       LD="${LD-ld} -melf32bsmip"
  409.       ;;
  410.     *N32*)
  411.       LD="${LD-ld} -melf32bmipn32"
  412.       ;;
  413.     *64-bit*)
  414.       LD="${LD-ld} -melf64bmip"
  415.       ;;
  416.     esac
  417.    else
  418.     case `/usr/bin/file conftest.$ac_objext` in
  419.     *32-bit*)
  420.       LD="${LD-ld} -32"
  421.       ;;
  422.     *N32*)
  423.       LD="${LD-ld} -n32"
  424.       ;;
  425.     *64-bit*)
  426.       LD="${LD-ld} -64"
  427.       ;;
  428.     esac
  429.    fi
  430.   fi
  431.   rm -rf conftest*
  432.   ;;
  433. x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*)
  434.   # Find out which ABI we are using.
  435.   echo 'int i;' > conftest.$ac_ext
  436.   if AC_TRY_EVAL(ac_compile); then
  437.     case "`/usr/bin/file conftest.o`" in
  438.     *32-bit*)
  439.       LINUX_64_MODE="32"
  440.       case $host in
  441.         x86_64-*linux*)
  442.           LD="${LD-ld} -m elf_i386"
  443.           ;;
  444.         ppc64-*linux*)
  445.           LD="${LD-ld} -m elf32ppclinux"
  446.           ;;
  447.         s390x-*linux*)
  448.           LD="${LD-ld} -m elf_s390"
  449.           ;;
  450.         sparc64-*linux*)
  451.           LD="${LD-ld} -m elf32_sparc"
  452.           ;;
  453.       esac
  454.       ;;
  455.     *64-bit*)
  456.       LINUX_64_MODE="64"
  457.       case $host in
  458.         x86_64-*linux*)
  459.           LD="${LD-ld} -m elf_x86_64"
  460.           ;;
  461.         ppc*-*linux*|powerpc*-*linux*)
  462.           LD="${LD-ld} -m elf64ppc"
  463.           ;;
  464.         s390*-*linux*)
  465.           LD="${LD-ld} -m elf64_s390"
  466.           ;;
  467.         sparc*-*linux*)
  468.           LD="${LD-ld} -m elf64_sparc"
  469.           ;;
  470.       esac
  471.       ;;
  472.     esac
  473.   fi
  474.   rm -rf conftest*
  475.   ;;
  476. *-*-sco3.2v5*)
  477.   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
  478.   SAVE_CFLAGS="$CFLAGS"
  479.   CFLAGS="$CFLAGS -belf"
  480.   AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
  481.     [AC_LANG_PUSH(C)
  482.      AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
  483.      AC_LANG_POP])
  484.   if test x"$lt_cv_cc_needs_belf" != x"yes"; then
  485.     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
  486.     CFLAGS="$SAVE_CFLAGS"
  487.   fi
  488.   ;;
  489. AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
  490. [*-*-cygwin* | *-*-mingw* | *-*-pw32*)
  491.   AC_CHECK_TOOL(DLLTOOL, dlltool, false)
  492.   AC_CHECK_TOOL(AS, as, false)
  493.   AC_CHECK_TOOL(OBJDUMP, objdump, false)
  494.   ;;
  495.   ])
  496. esac
  497. need_locks="$enable_libtool_lock"
  498. ])# _LT_AC_LOCK
  499. # AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
  500. # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])
  501. # ----------------------------------------------------------------
  502. # Check whether the given compiler option works
  503. AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION],
  504. [AC_REQUIRE([LT_AC_PROG_SED])
  505. AC_CACHE_CHECK([$1], [$2],
  506.   [$2=no
  507.   ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
  508.    printf "$lt_simple_compile_test_code" > conftest.$ac_ext
  509.    lt_compiler_flag="$3"
  510.    # Insert the option either (1) after the last *FLAGS variable, or
  511.    # (2) before a word containing "conftest.", or (3) at the end.
  512.    # Note that $ac_compile itself does not contain backslashes and begins
  513.    # with a dollar sign (not a hyphen), so the echo should work correctly.
  514.    # The option is referenced via a variable to avoid confusing sed.
  515.    lt_compile=`echo "$ac_compile" | $SED 
  516.    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' 
  517.    -e 's: [[^ ]]*conftest.: $lt_compiler_flag&:; t' 
  518.    -e 's:$: $lt_compiler_flag:'`
  519.    (eval echo ""$as_me:__oline__: $lt_compile"" >&AS_MESSAGE_LOG_FD)
  520.    (eval "$lt_compile" 2>conftest.err)
  521.    ac_status=$?
  522.    cat conftest.err >&AS_MESSAGE_LOG_FD
  523.    echo "$as_me:__oline__: $? = $ac_status" >&AS_MESSAGE_LOG_FD
  524.    if (exit $ac_status) && test -s "$ac_outfile"; then
  525.      # The compiler can only warn and ignore the option if not recognized
  526.      # So say no if there are warnings
  527.      if test ! -s conftest.err; then
  528.        $2=yes
  529.      fi
  530.    fi
  531.    $rm conftest*
  532. ])
  533. if test x"[$]$2" = xyes; then
  534.     ifelse([$5], , :, [$5])
  535. else
  536.     ifelse([$6], , :, [$6])
  537. fi
  538. ])# AC_LIBTOOL_COMPILER_OPTION
  539. # AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
  540. #                          [ACTION-SUCCESS], [ACTION-FAILURE])
  541. # ------------------------------------------------------------
  542. # Check whether the given compiler option works
  543. AC_DEFUN([AC_LIBTOOL_LINKER_OPTION],
  544. [AC_CACHE_CHECK([$1], [$2],
  545.   [$2=no
  546.    save_LDFLAGS="$LDFLAGS"
  547.    LDFLAGS="$LDFLAGS $3"
  548.    printf "$lt_simple_link_test_code" > conftest.$ac_ext
  549.    if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
  550.      # The compiler can only warn and ignore the option if not recognized
  551.      # So say no if there are warnings
  552.      if test -s conftest.err; then
  553.        # Append any errors to the config.log.
  554.        cat conftest.err 1>&AS_MESSAGE_LOG_FD
  555.      else
  556.        $2=yes
  557.      fi
  558.    fi
  559.    $rm conftest*
  560.    LDFLAGS="$save_LDFLAGS"
  561. ])
  562. if test x"[$]$2" = xyes; then
  563.     ifelse([$4], , :, [$4])
  564. else
  565.     ifelse([$5], , :, [$5])
  566. fi
  567. ])# AC_LIBTOOL_LINKER_OPTION
  568. # AC_LIBTOOL_SYS_MAX_CMD_LEN
  569. # --------------------------
  570. AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN],
  571. [# find the maximum length of command line arguments
  572. AC_MSG_CHECKING([the maximum length of command line arguments])
  573. AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
  574.   i=0
  575.   testring="ABCD"
  576.   case $build_os in
  577.   msdosdjgpp*)
  578.     # On DJGPP, this test can blow up pretty badly due to problems in libc
  579.     # (any single argument exceeding 2000 bytes causes a buffer overrun
  580.     # during glob expansion).  Even if it were fixed, the result of this
  581.     # check would be larger than it should be.
  582.     lt_cv_sys_max_cmd_len=12288;    # 12K is about right
  583.     ;;
  584.   gnu*)
  585.     # Under GNU Hurd, this test is not required because there is
  586.     # no limit to the length of command line arguments.
  587.     # Libtool will interpret -1 as no limit whatsoever
  588.     lt_cv_sys_max_cmd_len=-1;
  589.     ;;
  590.   cygwin* | mingw*)
  591.     # On Win9x/ME, this test blows up -- it succeeds, but takes
  592.     # about 5 minutes as the teststring grows exponentially.
  593.     # Worse, since 9x/ME are not pre-emptively multitasking,
  594.     # you end up with a "frozen" computer, even though with patience
  595.     # the test eventually succeeds (with a max line length of 256k).
  596.     # Instead, let's just punt: use the minimum linelength reported by
  597.     # all of the supported platforms: 8192 (on NT/2K/XP).
  598.     lt_cv_sys_max_cmd_len=8192;
  599.     ;;
  600.  *)
  601.     # If test is not a shell built-in, we'll probably end up computing a
  602.     # maximum length that is only half of the actual maximum length, but
  603.     # we can't tell.
  604.     while (test "X"`$CONFIG_SHELL [$]0 --fallback-echo "X$testring" 2>/dev/null` 
  605.        = "XX$testring") >/dev/null 2>&1 &&
  606.     new_result=`expr "X$testring" : ".*" 2>&1` &&
  607.     lt_cv_sys_max_cmd_len=$new_result &&
  608.     test $i != 17 # 1/2 MB should be enough
  609.     do
  610.       i=`expr $i + 1`
  611.       testring=$testring$testring
  612.     done
  613.     testring=
  614.     # Add a significant safety factor because C++ compilers can tack on massive
  615.     # amounts of additional arguments before passing them to the linker.
  616.     # It appears as though 1/2 is a usable value.
  617.     lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len / 2`
  618.     ;;
  619.   esac
  620. ])
  621. if test -n $lt_cv_sys_max_cmd_len ; then
  622.   AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
  623. else
  624.   AC_MSG_RESULT(none)
  625. fi
  626. ])# AC_LIBTOOL_SYS_MAX_CMD_LEN
  627. # _LT_AC_CHECK_DLFCN
  628. # --------------------
  629. AC_DEFUN([_LT_AC_CHECK_DLFCN],
  630. [AC_CHECK_HEADERS(dlfcn.h)dnl
  631. ])# _LT_AC_CHECK_DLFCN
  632. # _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
  633. #                           ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
  634. # ------------------------------------------------------------------
  635. AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF],
  636. [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
  637. if test "$cross_compiling" = yes; then :
  638.   [$4]
  639. else
  640.   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
  641.   lt_status=$lt_dlunknown
  642.   cat > conftest.$ac_ext <<EOF
  643. [#line __oline__ "configure"
  644. #include "confdefs.h"
  645. #if HAVE_DLFCN_H
  646. #include <dlfcn.h>
  647. #endif
  648. #include <stdio.h>
  649. #ifdef RTLD_GLOBAL
  650. #  define LT_DLGLOBAL RTLD_GLOBAL
  651. #else
  652. #  ifdef DL_GLOBAL
  653. #    define LT_DLGLOBAL DL_GLOBAL
  654. #  else
  655. #    define LT_DLGLOBAL 0
  656. #  endif
  657. #endif
  658. /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
  659.    find out it does not work in some platform. */
  660. #ifndef LT_DLLAZY_OR_NOW
  661. #  ifdef RTLD_LAZY
  662. #    define LT_DLLAZY_OR_NOW RTLD_LAZY
  663. #  else
  664. #    ifdef DL_LAZY
  665. #      define LT_DLLAZY_OR_NOW DL_LAZY
  666. #    else
  667. #      ifdef RTLD_NOW
  668. #        define LT_DLLAZY_OR_NOW RTLD_NOW
  669. #      else
  670. #        ifdef DL_NOW
  671. #          define LT_DLLAZY_OR_NOW DL_NOW
  672. #        else
  673. #          define LT_DLLAZY_OR_NOW 0
  674. #        endif
  675. #      endif
  676. #    endif
  677. #  endif
  678. #endif
  679. #ifdef __cplusplus
  680. extern "C" void exit (int);
  681. #endif
  682. void fnord() { int i=42;}
  683. int main ()
  684. {
  685.   void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
  686.   int status = $lt_dlunknown;
  687.   if (self)
  688.     {
  689.       if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
  690.       else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
  691.       /* dlclose (self); */
  692.     }
  693.     exit (status);
  694. }]
  695. EOF
  696.   if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
  697.     (./conftest; exit; ) 2>/dev/null
  698.     lt_status=$?
  699.     case x$lt_status in
  700.       x$lt_dlno_uscore) $1 ;;
  701.       x$lt_dlneed_uscore) $2 ;;
  702.       x$lt_unknown|x*) $3 ;;
  703.     esac
  704.   else :
  705.     # compilation failed
  706.     $3
  707.   fi
  708. fi
  709. rm -fr conftest*
  710. ])# _LT_AC_TRY_DLOPEN_SELF
  711. # AC_LIBTOOL_DLOPEN_SELF
  712. # -------------------
  713. AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF],
  714. [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
  715. if test "x$enable_dlopen" != xyes; then
  716.   enable_dlopen=unknown
  717.   enable_dlopen_self=unknown
  718.   enable_dlopen_self_static=unknown
  719. else
  720.   lt_cv_dlopen=no
  721.   lt_cv_dlopen_libs=
  722.   case $host_os in
  723.   beos*)
  724.     lt_cv_dlopen="load_add_on"
  725.     lt_cv_dlopen_libs=
  726.     lt_cv_dlopen_self=yes
  727.     ;;
  728.   mingw* | pw32*)
  729.     lt_cv_dlopen="LoadLibrary"
  730.     lt_cv_dlopen_libs=
  731.    ;;
  732.   cygwin*)
  733.     lt_cv_dlopen="dlopen"
  734.     lt_cv_dlopen_libs=
  735.    ;;
  736.   darwin*)
  737.   # if libdl is installed we need to link against it
  738.     AC_CHECK_LIB([dl], [dlopen],
  739. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
  740.     lt_cv_dlopen="dyld"
  741.     lt_cv_dlopen_libs=
  742.     lt_cv_dlopen_self=yes
  743.     ])
  744.    ;;
  745.     
  746.   *)
  747.     AC_CHECK_FUNC([shl_load],
  748.   [lt_cv_dlopen="shl_load"],
  749.       [AC_CHECK_LIB([dld], [shl_load],
  750.     [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"],
  751. [AC_CHECK_FUNC([dlopen],
  752.       [lt_cv_dlopen="dlopen"],
  753.   [AC_CHECK_LIB([dl], [dlopen],
  754. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
  755.     [AC_CHECK_LIB([svld], [dlopen],
  756.   [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
  757.       [AC_CHECK_LIB([dld], [dld_link],
  758.     [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
  759.       ])
  760.     ])
  761.   ])
  762. ])
  763.       ])
  764.     ;;
  765.   esac
  766.   if test "x$lt_cv_dlopen" != xno; then
  767.     enable_dlopen=yes
  768.   else
  769.     enable_dlopen=no
  770.   fi
  771.   case $lt_cv_dlopen in
  772.   dlopen)
  773.     save_CPPFLAGS="$CPPFLAGS"
  774.     test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
  775.     save_LDFLAGS="$LDFLAGS"
  776.     eval LDFLAGS="$LDFLAGS $export_dynamic_flag_spec"
  777.     save_LIBS="$LIBS"
  778.     LIBS="$lt_cv_dlopen_libs $LIBS"
  779.     AC_CACHE_CHECK([whether a program can dlopen itself],
  780.   lt_cv_dlopen_self, [dnl
  781.   _LT_AC_TRY_DLOPEN_SELF(
  782.     lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
  783.     lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
  784.     ])
  785.     if test "x$lt_cv_dlopen_self" = xyes; then
  786.       LDFLAGS="$LDFLAGS $link_static_flag"
  787.       AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
  788.        lt_cv_dlopen_self_static, [dnl
  789.   _LT_AC_TRY_DLOPEN_SELF(
  790.     lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
  791.     lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
  792.       ])
  793.     fi
  794.     CPPFLAGS="$save_CPPFLAGS"
  795.     LDFLAGS="$save_LDFLAGS"
  796.     LIBS="$save_LIBS"
  797.     ;;
  798.   esac
  799.   case $lt_cv_dlopen_self in
  800.   yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
  801.   *) enable_dlopen_self=unknown ;;
  802.   esac
  803.   case $lt_cv_dlopen_self_static in
  804.   yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
  805.   *) enable_dlopen_self_static=unknown ;;
  806.   esac
  807. fi
  808. ])# AC_LIBTOOL_DLOPEN_SELF
  809. # AC_LIBTOOL_PROG_CC_C_O([TAGNAME])
  810. # ---------------------------------
  811. # Check to see if options -c and -o are simultaneously supported by compiler
  812. AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O],
  813. [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
  814. AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
  815.   [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
  816.   [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
  817.    $rm -r conftest 2>/dev/null
  818.    mkdir conftest
  819.    cd conftest
  820.    mkdir out
  821.    printf "$lt_simple_compile_test_code" > conftest.$ac_ext
  822.    # According to Tom Tromey, Ian Lance Taylor reported there are C compilers
  823.    # that will create temporary files in the current directory regardless of
  824.    # the output directory.  Thus, making CWD read-only will cause this test
  825.    # to fail, enabling locking or at least warning the user not to do parallel
  826.    # builds.
  827.    chmod -w .
  828.    lt_compiler_flag="-o out/conftest2.$ac_objext"
  829.    # Insert the option either (1) after the last *FLAGS variable, or
  830.    # (2) before a word containing "conftest.", or (3) at the end.
  831.    # Note that $ac_compile itself does not contain backslashes and begins
  832.    # with a dollar sign (not a hyphen), so the echo should work correctly.
  833.    lt_compile=`echo "$ac_compile" | $SED 
  834.    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' 
  835.    -e 's: [[^ ]]*conftest.: $lt_compiler_flag&:; t' 
  836.    -e 's:$: $lt_compiler_flag:'`
  837.    (eval echo ""$as_me:__oline__: $lt_compile"" >&AS_MESSAGE_LOG_FD)
  838.    (eval "$lt_compile" 2>out/conftest.err)
  839.    ac_status=$?
  840.    cat out/conftest.err >&AS_MESSAGE_LOG_FD
  841.    echo "$as_me:__oline__: $? = $ac_status" >&AS_MESSAGE_LOG_FD
  842.    if (exit $ac_status) && test -s out/conftest2.$ac_objext
  843.    then
  844.      # The compiler can only warn and ignore the option if not recognized
  845.      # So say no if there are warnings
  846.      if test ! -s out/conftest.err; then
  847.        _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
  848.      fi
  849.    fi
  850.    chmod u+w .
  851.    $rm conftest* out/*
  852.    rmdir out
  853.    cd ..
  854.    rmdir conftest
  855.    $rm conftest*
  856. ])
  857. ])# AC_LIBTOOL_PROG_CC_C_O
  858. # AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME])
  859. # -----------------------------------------
  860. # Check to see if we can do hard links to lock some files if needed
  861. AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS],
  862. [AC_REQUIRE([_LT_AC_LOCK])dnl
  863. hard_links="nottested"
  864. if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
  865.   # do not overwrite the value of need_locks provided by the user
  866.   AC_MSG_CHECKING([if we can lock with hard links])
  867.   hard_links=yes
  868.   $rm conftest*
  869.   ln conftest.a conftest.b 2>/dev/null && hard_links=no
  870.   touch conftest.a
  871.   ln conftest.a conftest.b 2>&5 || hard_links=no
  872.   ln conftest.a conftest.b 2>/dev/null && hard_links=no
  873.   AC_MSG_RESULT([$hard_links])
  874.   if test "$hard_links" = no; then
  875.     AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
  876.     need_locks=warn
  877.   fi
  878. else
  879.   need_locks=no
  880. fi
  881. ])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS
  882. # AC_LIBTOOL_OBJDIR
  883. # -----------------
  884. AC_DEFUN([AC_LIBTOOL_OBJDIR],
  885. [AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
  886. [rm -f .libs 2>/dev/null
  887. mkdir .libs 2>/dev/null
  888. if test -d .libs; then
  889.   lt_cv_objdir=.libs
  890. else
  891.   # MS-DOS does not allow filenames that begin with a dot.
  892.   lt_cv_objdir=_libs
  893. fi
  894. rmdir .libs 2>/dev/null])
  895. objdir=$lt_cv_objdir
  896. ])# AC_LIBTOOL_OBJDIR
  897. # AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME])
  898. # ----------------------------------------------
  899. # Check hardcoding attributes.
  900. AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH],
  901. [AC_MSG_CHECKING([how to hardcode library paths into programs])
  902. _LT_AC_TAGVAR(hardcode_action, $1)=
  903. if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || 
  904.    test -n "$_LT_AC_TAGVAR(runpath_var $1)" || 
  905.    test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)"="Xyes" ; then
  906.   # We can hardcode non-existant directories.
  907.   if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no &&
  908.      # If the only mechanism to avoid hardcoding is shlibpath_var, we
  909.      # have to relink, otherwise we might link with an installed library
  910.      # when we should be linking with a yet-to-be-installed one
  911.      ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
  912.      test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then
  913.     # Linking always hardcodes the temporary library directory.
  914.     _LT_AC_TAGVAR(hardcode_action, $1)=relink
  915.   else
  916.     # We can link without hardcoding, and we can hardcode nonexisting dirs.
  917.     _LT_AC_TAGVAR(hardcode_action, $1)=immediate
  918.   fi
  919. else
  920.   # We cannot hardcode anything, or else we can only hardcode existing
  921.   # directories.
  922.   _LT_AC_TAGVAR(hardcode_action, $1)=unsupported
  923. fi
  924. AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)])
  925. if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then
  926.   # Fast installation is not supported
  927.   enable_fast_install=no
  928. elif test "$shlibpath_overrides_runpath" = yes ||
  929.      test "$enable_shared" = no; then
  930.   # Fast installation is not necessary
  931.   enable_fast_install=needless
  932. fi
  933. ])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH
  934. # AC_LIBTOOL_SYS_LIB_STRIP
  935. # ------------------------
  936. AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP],
  937. [striplib=
  938. old_striplib=
  939. AC_MSG_CHECKING([whether stripping libraries is possible])
  940. if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
  941.   test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
  942.   test -z "$striplib" && striplib="$STRIP --strip-unneeded"
  943.   AC_MSG_RESULT([yes])
  944. else
  945. # FIXME - insert some real tests, host_os isn't really good enough
  946.   case $host_os in
  947.    darwin*)
  948.        if test -n "$STRIP" ; then
  949.          striplib="$STRIP -x"
  950.          AC_MSG_RESULT([yes])
  951.        else
  952.   AC_MSG_RESULT([no])
  953. fi
  954.        ;;
  955.    *)
  956.   AC_MSG_RESULT([no])
  957.     ;;
  958.   esac  
  959. fi
  960. ])# AC_LIBTOOL_SYS_LIB_STRIP
  961. # AC_LIBTOOL_SYS_DYNAMIC_LINKER
  962. # -----------------------------
  963. # PORTME Fill in your ld.so characteristics
  964. AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER],
  965. [AC_MSG_CHECKING([dynamic linker characteristics])
  966. library_names_spec=
  967. libname_spec='lib$name'
  968. soname_spec=
  969. shrext=".so"
  970. postinstall_cmds=
  971. postuninstall_cmds=
  972. finish_cmds=
  973. finish_eval=
  974. shlibpath_var=
  975. shlibpath_overrides_runpath=unknown
  976. version_type=none
  977. dynamic_linker="$host_os ld.so"
  978. sys_lib_dlsearch_path_spec="/lib /usr/lib"
  979. sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
  980. need_lib_prefix=unknown
  981. hardcode_into_libs=no
  982. # when you set need_version to no, make sure it does not cause -set_version
  983. # flags to be left without arguments
  984. need_version=unknown
  985. case $host_os in
  986. aix3*)
  987.   version_type=linux
  988.   library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
  989.   shlibpath_var=LIBPATH
  990.   # AIX 3 has no versioning support, so we append a major version to the name.
  991.   soname_spec='${libname}${release}${shared_ext}$major'
  992.   ;;
  993. aix4* | aix5*)
  994.   version_type=linux
  995.   need_lib_prefix=no
  996.   need_version=no
  997.   hardcode_into_libs=yes
  998.   if test "$host_cpu" = ia64; then
  999.     # AIX 5 supports IA64
  1000.     library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
  1001.     shlibpath_var=LD_LIBRARY_PATH
  1002.   else
  1003.     # With GCC up to 2.95.x, collect2 would create an import file
  1004.     # for dependence libraries.  The import file would start with
  1005.     # the line `#! .'.  This would cause the generated library to
  1006.     # depend on `.', always an invalid library.  This was fixed in
  1007.     # development snapshots of GCC prior to 3.0.
  1008.     case $host_os in
  1009.       aix4 | aix4.[[01]] | aix4.[[01]].*)
  1010.       if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
  1011.    echo ' yes '
  1012.    echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
  1013. :
  1014.       else
  1015. can_build_shared=no
  1016.       fi
  1017.       ;;
  1018.     esac
  1019.     # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
  1020.     # soname into executable. Probably we can add versioning support to
  1021.     # collect2, so additional links can be useful in future.
  1022.     if test "$aix_use_runtimelinking" = yes; then
  1023.       # If using run time linking (on AIX 4.2 or later) use lib<name>.so
  1024.       # instead of lib<name>.a to let people know that these are not
  1025.       # typical AIX shared libraries.
  1026.       library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1027.     else
  1028.       # We preserve .a as extension for shared libraries through AIX4.2
  1029.       # and later when we are not doing run time linking.
  1030.       library_names_spec='${libname}${release}.a $libname.a'
  1031.       soname_spec='${libname}${release}${shared_ext}$major'
  1032.     fi
  1033.     shlibpath_var=LIBPATH
  1034.   fi
  1035.   ;;
  1036. amigaos*)
  1037.   library_names_spec='$libname.ixlibrary $libname.a'
  1038.   # Create ${libname}_ixlibrary.a entries in /sys/libs.
  1039.   finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '''s%^.*/([[^/]]*).ixlibrary$%1%'''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done'
  1040.   ;;
  1041. beos*)
  1042.   library_names_spec='${libname}${shared_ext}'
  1043.   dynamic_linker="$host_os ld.so"
  1044.   shlibpath_var=LIBRARY_PATH
  1045.   ;;
  1046. bsdi4*)
  1047.   version_type=linux
  1048.   need_version=no
  1049.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1050.   soname_spec='${libname}${release}${shared_ext}$major'
  1051.   finish_cmds='PATH="$PATH:/sbin" ldconfig $libdir'
  1052.   shlibpath_var=LD_LIBRARY_PATH
  1053.   sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
  1054.   sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
  1055.   # the default ld.so.conf also contains /usr/contrib/lib and
  1056.   # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
  1057.   # libtool to hard-code these into programs
  1058.   ;;
  1059. cygwin* | mingw* | pw32*)
  1060.   version_type=windows
  1061.   shrext=".dll"
  1062.   need_version=no
  1063.   need_lib_prefix=no
  1064.   case $GCC,$host_os in
  1065.   yes,cygwin* | yes,mingw* | yes,pw32*)
  1066.     library_names_spec='$libname.dll.a'
  1067.     # DLL is installed to $(libdir)/../bin by postinstall_cmds
  1068.     postinstall_cmds='base_file=`basename ${file}`~
  1069.       dlpath=`$SHELL 2>&1 -c '''. $dir/'''${base_file}'''i;echo $dlname'''`~
  1070.       dldir=$destdir/`dirname $dlpath`~
  1071.       test -d $dldir || mkdir -p $dldir~
  1072.       $install_prog $dir/$dlname $dldir/$dlname'
  1073.     postuninstall_cmds='dldll=`$SHELL 2>&1 -c '''. $file; echo $dlname'''`~
  1074.       dlpath=$dir/$dldll~
  1075.        $rm $dlpath'
  1076.     shlibpath_overrides_runpath=yes
  1077.     case $host_os in
  1078.     cygwin*)
  1079.       # Cygwin DLLs use 'cyg' prefix rather than 'lib'
  1080.       soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  1081.       sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
  1082.       ;;
  1083.     mingw*)
  1084.       # MinGW DLLs use traditional 'lib' prefix
  1085.       soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  1086.       sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
  1087.       if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then
  1088.         # It is most probably a Windows format PATH printed by
  1089.         # mingw gcc, but we are running on Cygwin. Gcc prints its search
  1090.         # path with ; separators, and with drive letters. We can handle the
  1091.         # drive letters (cygwin fileutils understands them), so leave them,
  1092.         # especially as we might pass files found there to a mingw objdump,
  1093.         # which wouldn't understand a cygwinified path. Ahh.
  1094.         sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
  1095.       else
  1096.         sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
  1097.       fi
  1098.       ;;
  1099.     pw32*)
  1100.       # pw32 DLLs use 'pw' prefix rather than 'lib'
  1101.       library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
  1102.       ;;
  1103.     esac
  1104.     ;;
  1105.   *)
  1106.     library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
  1107.     ;;
  1108.   esac
  1109.   dynamic_linker='Win32 ld.exe'
  1110.   # FIXME: first we should search . and the directory the executable is in
  1111.   shlibpath_var=PATH
  1112.   ;;
  1113. darwin* | rhapsody*)
  1114.   dynamic_linker="$host_os dyld"
  1115.   version_type=darwin
  1116.   need_lib_prefix=no
  1117.   need_version=no
  1118.   library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
  1119.   soname_spec='${libname}${release}${major}$shared_ext'
  1120.   shlibpath_overrides_runpath=yes
  1121.   shlibpath_var=DYLD_LIBRARY_PATH
  1122.   shrext='$(test .$module = .yes && echo .so || echo .dylib)'
  1123.   # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
  1124.   if test "$GCC" = yes; then
  1125.     sys_lib_search_path_spec=`$CC -print-search-dirs | tr "n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
  1126.   else
  1127.     sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib'
  1128.   fi
  1129.   sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
  1130.   ;;
  1131. dgux*)
  1132.   version_type=linux
  1133.   need_lib_prefix=no
  1134.   need_version=no
  1135.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
  1136.   soname_spec='${libname}${release}${shared_ext}$major'
  1137.   shlibpath_var=LD_LIBRARY_PATH
  1138.   ;;
  1139. freebsd1*)
  1140.   dynamic_linker=no
  1141.   ;;
  1142. kfreebsd*-gnu*)
  1143.   version_type=linux
  1144.   need_lib_prefix=no
  1145.   need_version=no
  1146.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
  1147.   soname_spec='${libname}${release}${shared_ext}$major'
  1148.   shlibpath_var=LD_LIBRARY_PATH
  1149.   shlibpath_overrides_runpath=no
  1150.   hardcode_into_libs=yes
  1151.   dynamic_linker='GNU ld.so'
  1152.   ;;
  1153. freebsd*)
  1154.   objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout`
  1155.   version_type=freebsd-$objformat
  1156.   case $version_type in
  1157.     freebsd-elf*)
  1158.       library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
  1159.       need_version=no
  1160.       need_lib_prefix=no
  1161.       ;;
  1162.     freebsd-*)
  1163.       library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
  1164.       need_version=yes
  1165.       ;;
  1166.   esac
  1167.   shlibpath_var=LD_LIBRARY_PATH
  1168.   case $host_os in
  1169.   freebsd2*)
  1170.     shlibpath_overrides_runpath=yes
  1171.     ;;
  1172.   freebsd3.[01]* | freebsdelf3.[01]*)
  1173.     shlibpath_overrides_runpath=yes
  1174.     hardcode_into_libs=yes
  1175.     ;;
  1176.   *) # from 3.2 on
  1177.     shlibpath_overrides_runpath=no
  1178.     hardcode_into_libs=yes
  1179.     ;;
  1180.   esac
  1181.   ;;
  1182. gnu*)
  1183.   version_type=linux
  1184.   need_lib_prefix=no
  1185.   need_version=no
  1186.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
  1187.   soname_spec='${libname}${release}${shared_ext}$major'
  1188.   shlibpath_var=LD_LIBRARY_PATH
  1189.   hardcode_into_libs=yes
  1190.   ;;
  1191. hpux9* | hpux10* | hpux11*)
  1192.   # Give a soname corresponding to the major version so that dld.sl refuses to
  1193.   # link against other versions.
  1194.   version_type=sunos
  1195.   need_lib_prefix=no
  1196.   need_version=no
  1197.   case "$host_cpu" in
  1198.   ia64*)
  1199.     shrext='.so'
  1200.     hardcode_into_libs=yes
  1201.     dynamic_linker="$host_os dld.so"
  1202.     shlibpath_var=LD_LIBRARY_PATH
  1203.     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
  1204.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1205.     soname_spec='${libname}${release}${shared_ext}$major'
  1206.     if test "X$HPUX_IA64_MODE" = X32; then
  1207.       sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
  1208.     else
  1209.       sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
  1210.     fi
  1211.     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
  1212.     ;;
  1213.    hppa*64*)
  1214.      shrext='.sl'
  1215.      hardcode_into_libs=yes
  1216.      dynamic_linker="$host_os dld.sl"
  1217.      shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
  1218.      shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
  1219.      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1220.      soname_spec='${libname}${release}${shared_ext}$major'
  1221.      sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
  1222.      sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
  1223.      ;;
  1224.    *)
  1225.     shrext='.sl'
  1226.     dynamic_linker="$host_os dld.sl"
  1227.     shlibpath_var=SHLIB_PATH
  1228.     shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
  1229.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1230.     soname_spec='${libname}${release}${shared_ext}$major'
  1231.     ;;
  1232.   esac
  1233.   # HP-UX runs *really* slowly unless shared libraries are mode 555.
  1234.   postinstall_cmds='chmod 555 $lib'
  1235.   ;;
  1236. irix5* | irix6* | nonstopux*)
  1237.   case $host_os in
  1238.     nonstopux*) version_type=nonstopux ;;
  1239.     *)
  1240. if test "$lt_cv_prog_gnu_ld" = yes; then
  1241. version_type=linux
  1242. else
  1243. version_type=irix
  1244. fi ;;
  1245.   esac
  1246.   need_lib_prefix=no
  1247.   need_version=no
  1248.   soname_spec='${libname}${release}${shared_ext}$major'
  1249.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
  1250.   case $host_os in
  1251.   irix5* | nonstopux*)
  1252.     libsuff= shlibsuff=
  1253.     ;;
  1254.   *)
  1255.     case $LD in # libtool.m4 will add one of these switches to LD
  1256.     *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
  1257.       libsuff= shlibsuff= libmagic=32-bit;;
  1258.     *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
  1259.       libsuff=32 shlibsuff=N32 libmagic=N32;;
  1260.     *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
  1261.       libsuff=64 shlibsuff=64 libmagic=64-bit;;
  1262.     *) libsuff= shlibsuff= libmagic=never-match;;
  1263.     esac
  1264.     ;;
  1265.   esac
  1266.   shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
  1267.   shlibpath_overrides_runpath=no
  1268.   sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
  1269.   sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
  1270.   hardcode_into_libs=yes
  1271.   ;;
  1272. # No shared lib support for Linux oldld, aout, or coff.
  1273. linux*oldld* | linux*aout* | linux*coff*)
  1274.   dynamic_linker=no
  1275.   ;;
  1276. # This must be Linux ELF.
  1277. linux*)
  1278.   version_type=linux
  1279.   need_lib_prefix=no
  1280.   need_version=no
  1281.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1282.   soname_spec='${libname}${release}${shared_ext}$major'
  1283.   finish_cmds='PATH="$PATH:/sbin" ldconfig -n $libdir'
  1284.   libsuff=
  1285.   if test "x$LINUX_64_MODE" = x64; then
  1286.     # Some platforms are per default 64-bit, so there's no /lib64
  1287.     if test -d /lib64 -a ! -h /lib64; then
  1288.       libsuff=64
  1289.     fi
  1290.   fi
  1291.   shlibpath_var=LD_LIBRARY_PATH
  1292.   shlibpath_overrides_runpath=no
  1293.   sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff}"
  1294.   sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}"
  1295.   # This implies no fast_install, which is unacceptable.
  1296.   # Some rework will be needed to allow for fast_install
  1297.   # before this can be enabled.
  1298.   hardcode_into_libs=yes
  1299.   # We used to test for /lib/ld.so.1 and disable shared libraries on
  1300.   # powerpc, because MkLinux only supported shared libraries with the
  1301.   # GNU dynamic linker.  Since this was broken with cross compilers,
  1302.   # most powerpc-linux boxes support dynamic linking these days and
  1303.   # people can always --disable-shared, the test was removed, and we
  1304.   # assume the GNU/Linux dynamic linker is in use.
  1305.   dynamic_linker='GNU/Linux ld.so'
  1306.   ;;
  1307. netbsd*)
  1308.   version_type=sunos
  1309.   need_lib_prefix=no
  1310.   need_version=no
  1311.   if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
  1312.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  1313.     finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir'
  1314.     dynamic_linker='NetBSD (a.out) ld.so'
  1315.   else
  1316.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} ${libname}${shared_ext}'
  1317.     soname_spec='${libname}${release}${shared_ext}$major'
  1318.     dynamic_linker='NetBSD ld.elf_so'
  1319.   fi
  1320.   shlibpath_var=LD_LIBRARY_PATH
  1321.   shlibpath_overrides_runpath=yes
  1322.   hardcode_into_libs=yes
  1323.   ;;
  1324. newsos6)
  1325.   version_type=linux
  1326.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1327.   shlibpath_var=LD_LIBRARY_PATH
  1328.   shlibpath_overrides_runpath=yes
  1329.   ;;
  1330. nto-qnx*)
  1331.   version_type=linux
  1332.   need_lib_prefix=no
  1333.   need_version=no
  1334.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1335.   soname_spec='${libname}${release}${shared_ext}$major'
  1336.   shlibpath_var=LD_LIBRARY_PATH
  1337.   shlibpath_overrides_runpath=yes
  1338.   ;;
  1339. openbsd*)
  1340.   version_type=sunos
  1341.   need_lib_prefix=no
  1342.   need_version=no
  1343.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  1344.   finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir'
  1345.   shlibpath_var=LD_LIBRARY_PATH
  1346.   if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  1347.     case $host_os in
  1348.       openbsd2.[[89]] | openbsd2.[[89]].*)
  1349. shlibpath_overrides_runpath=no
  1350. ;;
  1351.       *)
  1352. shlibpath_overrides_runpath=yes
  1353. ;;
  1354.       esac
  1355.   else
  1356.     shlibpath_overrides_runpath=yes
  1357.   fi
  1358.   ;;
  1359. os2*)
  1360.   libname_spec='$name'
  1361.   shrext=".dll"
  1362.   need_lib_prefix=no
  1363.   library_names_spec='$libname${shared_ext} $libname.a'
  1364.   dynamic_linker='OS/2 ld.exe'
  1365.   shlibpath_var=LIBPATH
  1366.   ;;
  1367. osf3* | osf4* | osf5*)
  1368.   version_type=osf
  1369.   need_lib_prefix=no
  1370.   need_version=no
  1371.   soname_spec='${libname}${release}${shared_ext}$major'
  1372.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1373.   shlibpath_var=LD_LIBRARY_PATH
  1374.   sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
  1375.   sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
  1376.   ;;
  1377. sco3.2v5*)
  1378.   version_type=osf
  1379.   soname_spec='${libname}${release}${shared_ext}$major'
  1380.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1381.   shlibpath_var=LD_LIBRARY_PATH
  1382.   ;;
  1383. solaris*)
  1384.   version_type=linux
  1385.   need_lib_prefix=no
  1386.   need_version=no
  1387.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1388.   soname_spec='${libname}${release}${shared_ext}$major'
  1389.   shlibpath_var=LD_LIBRARY_PATH
  1390.   shlibpath_overrides_runpath=yes
  1391.   hardcode_into_libs=yes
  1392.   # ldd complains unless libraries are executable
  1393.   postinstall_cmds='chmod +x $lib'
  1394.   ;;
  1395. sunos4*)
  1396.   version_type=sunos
  1397.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  1398.   finish_cmds='PATH="$PATH:/usr/etc" ldconfig $libdir'
  1399.   shlibpath_var=LD_LIBRARY_PATH
  1400.   shlibpath_overrides_runpath=yes
  1401.   if test "$with_gnu_ld" = yes; then
  1402.     need_lib_prefix=no
  1403.   fi
  1404.   need_version=yes
  1405.   ;;
  1406. sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
  1407.   version_type=linux
  1408.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1409.   soname_spec='${libname}${release}${shared_ext}$major'
  1410.   shlibpath_var=LD_LIBRARY_PATH
  1411.   case $host_vendor in
  1412.     sni)
  1413.       shlibpath_overrides_runpath=no
  1414.       need_lib_prefix=no
  1415.       export_dynamic_flag_spec='${wl}-Blargedynsym'
  1416.       runpath_var=LD_RUN_PATH
  1417.       ;;
  1418.     siemens)
  1419.       need_lib_prefix=no
  1420.       ;;
  1421.     motorola)
  1422.       need_lib_prefix=no
  1423.       need_version=no
  1424.       shlibpath_overrides_runpath=no
  1425.       sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
  1426.       ;;
  1427.   esac
  1428.   ;;
  1429. sysv4*MP*)
  1430.   if test -d /usr/nec ;then
  1431.     version_type=linux
  1432.     library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
  1433.     soname_spec='$libname${shared_ext}.$major'
  1434.     shlibpath_var=LD_LIBRARY_PATH
  1435.   fi
  1436.   ;;
  1437. uts4*)
  1438.   version_type=linux
  1439.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1440.   soname_spec='${libname}${release}${shared_ext}$major'
  1441.   shlibpath_var=LD_LIBRARY_PATH
  1442.   ;;
  1443. *)
  1444.   dynamic_linker=no
  1445.   ;;
  1446. esac
  1447. AC_MSG_RESULT([$dynamic_linker])
  1448. test "$dynamic_linker" = no && can_build_shared=no
  1449. ])# AC_LIBTOOL_SYS_DYNAMIC_LINKER
  1450. # _LT_AC_TAGCONFIG
  1451. # ----------------
  1452. AC_DEFUN([_LT_AC_TAGCONFIG],
  1453. [AC_ARG_WITH([tags],
  1454.     [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@],
  1455.         [include additional configurations @<:@automatic@:>@])],
  1456.     [tagnames="$withval"])
  1457. if test -f "$ltmain" && test -n "$tagnames"; then
  1458.   if test ! -f "${ofile}"; then
  1459.     AC_MSG_WARN([output file `$ofile' does not exist])
  1460.   fi
  1461.   if test -z "$LTCC"; then
  1462.     eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
  1463.     if test -z "$LTCC"; then
  1464.       AC_MSG_WARN([output file `$ofile' does not look like a libtool script])
  1465.     else
  1466.       AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile'])
  1467.     fi
  1468.   fi
  1469.   # Extract list of available tagged configurations in $ofile.
  1470.   # Note that this assumes the entire list is on one line.
  1471.   available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=(.*$)/1/' -e 's/"//g'`
  1472.   lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  1473.   for tagname in $tagnames; do
  1474.     IFS="$lt_save_ifs"
  1475.     # Check whether tagname contains only valid characters
  1476.     case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in
  1477.     "") ;;
  1478.     *)  AC_MSG_ERROR([invalid tag name: $tagname])
  1479. ;;
  1480.     esac
  1481.     if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null
  1482.     then
  1483.       AC_MSG_ERROR([tag name "$tagname" already exists])
  1484.     fi
  1485.     # Update the list of available tags.
  1486.     if test -n "$tagname"; then
  1487.       echo appending configuration tag "$tagname" to $ofile
  1488.       case $tagname in
  1489.       CXX)
  1490. if test -n "$CXX" && test "X$CXX" != "Xno"; then
  1491.   AC_LIBTOOL_LANG_CXX_CONFIG
  1492. else
  1493.   tagname=""
  1494. fi
  1495. ;;
  1496.       F77)
  1497. if test -n "$F77" && test "X$F77" != "Xno"; then
  1498.   AC_LIBTOOL_LANG_F77_CONFIG
  1499. else
  1500.   tagname=""
  1501. fi
  1502. ;;
  1503.       GCJ)
  1504. if test -n "$GCJ" && test "X$GCJ" != "Xno"; then
  1505.   AC_LIBTOOL_LANG_GCJ_CONFIG
  1506. else
  1507.   tagname=""
  1508. fi
  1509. ;;
  1510.       RC)
  1511. AC_LIBTOOL_LANG_RC_CONFIG
  1512. ;;
  1513.       *)
  1514. AC_MSG_ERROR([Unsupported tag name: $tagname])
  1515. ;;
  1516.       esac
  1517.       # Append the new tag name to the list of available tags.
  1518.       if test -n "$tagname" ; then
  1519.       available_tags="$available_tags $tagname"
  1520.     fi
  1521.     fi
  1522.   done
  1523.   IFS="$lt_save_ifs"
  1524.   # Now substitute the updated list of available tags.
  1525.   if eval "sed -e 's/^available_tags=.*$/available_tags="$available_tags"/' "$ofile" > "${ofile}T""; then
  1526.     mv "${ofile}T" "$ofile"
  1527.     chmod +x "$ofile"
  1528.   else
  1529.     rm -f "${ofile}T"
  1530.     AC_MSG_ERROR([unable to update list of available tagged configurations.])
  1531.   fi
  1532. fi
  1533. ])# _LT_AC_TAGCONFIG
  1534. # AC_LIBTOOL_DLOPEN
  1535. # -----------------
  1536. # enable checks for dlopen support
  1537. AC_DEFUN([AC_LIBTOOL_DLOPEN],
  1538.  [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])
  1539. ])# AC_LIBTOOL_DLOPEN
  1540. # AC_LIBTOOL_WIN32_DLL
  1541. # --------------------
  1542. # declare package support for building win32 dll's
  1543. AC_DEFUN([AC_LIBTOOL_WIN32_DLL],
  1544. [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])
  1545. ])# AC_LIBTOOL_WIN32_DLL
  1546. # AC_ENABLE_SHARED([DEFAULT])
  1547. # ---------------------------
  1548. # implement the --enable-shared flag
  1549. # DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
  1550. AC_DEFUN([AC_ENABLE_SHARED],
  1551. [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
  1552. AC_ARG_ENABLE([shared],
  1553.     [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
  1554. [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])],
  1555.     [p=${PACKAGE-default}
  1556.     case $enableval in
  1557.     yes) enable_shared=yes ;;
  1558.     no) enable_shared=no ;;
  1559.     *)
  1560.       enable_shared=no
  1561.       # Look at the argument we got.  We use all the common list separators.
  1562.       lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  1563.       for pkg in $enableval; do
  1564. IFS="$lt_save_ifs"
  1565. if test "X$pkg" = "X$p"; then
  1566.   enable_shared=yes
  1567. fi
  1568.       done
  1569.       IFS="$lt_save_ifs"
  1570.       ;;
  1571.     esac],
  1572.     [enable_shared=]AC_ENABLE_SHARED_DEFAULT)
  1573. ])# AC_ENABLE_SHARED
  1574. # AC_DISABLE_SHARED
  1575. # -----------------
  1576. #- set the default shared flag to --disable-shared
  1577. AC_DEFUN([AC_DISABLE_SHARED],
  1578. [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  1579. AC_ENABLE_SHARED(no)
  1580. ])# AC_DISABLE_SHARED
  1581. # AC_ENABLE_STATIC([DEFAULT])
  1582. # ---------------------------
  1583. # implement the --enable-static flag
  1584. # DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
  1585. AC_DEFUN([AC_ENABLE_STATIC],
  1586. [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
  1587. AC_ARG_ENABLE([static],
  1588.     [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@],
  1589. [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])],
  1590.     [p=${PACKAGE-default}
  1591.     case $enableval in
  1592.     yes) enable_static=yes ;;
  1593.     no) enable_static=no ;;
  1594.     *)
  1595.      enable_static=no
  1596.       # Look at the argument we got.  We use all the common list separators.
  1597.       lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  1598.       for pkg in $enableval; do
  1599. IFS="$lt_save_ifs"
  1600. if test "X$pkg" = "X$p"; then
  1601.   enable_static=yes
  1602. fi
  1603.       done
  1604.       IFS="$lt_save_ifs"
  1605.       ;;
  1606.     esac],
  1607.     [enable_static=]AC_ENABLE_STATIC_DEFAULT)
  1608. ])# AC_ENABLE_STATIC
  1609. # AC_DISABLE_STATIC
  1610. # -----------------
  1611. # set the default static flag to --disable-static
  1612. AC_DEFUN([AC_DISABLE_STATIC],
  1613. [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  1614. AC_ENABLE_STATIC(no)
  1615. ])# AC_DISABLE_STATIC
  1616. # AC_ENABLE_FAST_INSTALL([DEFAULT])
  1617. # ---------------------------------
  1618. # implement the --enable-fast-install flag
  1619. # DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
  1620. AC_DEFUN([AC_ENABLE_FAST_INSTALL],
  1621. [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
  1622. AC_ARG_ENABLE([fast-install],
  1623.     [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
  1624.     [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
  1625.     [p=${PACKAGE-default}
  1626.     case $enableval in
  1627.     yes) enable_fast_install=yes ;;
  1628.     no) enable_fast_install=no ;;
  1629.     *)
  1630.       enable_fast_install=no
  1631.       # Look at the argument we got.  We use all the common list separators.
  1632.       lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  1633.       for pkg in $enableval; do
  1634. IFS="$lt_save_ifs"
  1635. if test "X$pkg" = "X$p"; then
  1636.   enable_fast_install=yes
  1637. fi
  1638.       done
  1639.       IFS="$lt_save_ifs"
  1640.       ;;
  1641.     esac],
  1642.     [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT)
  1643. ])# AC_ENABLE_FAST_INSTALL
  1644. # AC_DISABLE_FAST_INSTALL
  1645. # -----------------------
  1646. # set the default to --disable-fast-install
  1647. AC_DEFUN([AC_DISABLE_FAST_INSTALL],
  1648. [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  1649. AC_ENABLE_FAST_INSTALL(no)
  1650. ])# AC_DISABLE_FAST_INSTALL
  1651. # AC_LIBTOOL_PICMODE([MODE])
  1652. # --------------------------
  1653. # implement the --with-pic flag
  1654. # MODE is either `yes' or `no'.  If omitted, it defaults to `both'.
  1655. AC_DEFUN([AC_LIBTOOL_PICMODE],
  1656. [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  1657. pic_mode=ifelse($#,1,$1,default)
  1658. ])# AC_LIBTOOL_PICMODE
  1659. # AC_PROG_EGREP
  1660. # -------------
  1661. # This is predefined starting with Autoconf 2.54, so this conditional
  1662. # definition can be removed once we require Autoconf 2.54 or later.
  1663. m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP],
  1664. [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep],
  1665.    [if echo a | (grep -E '(a|b)') >/dev/null 2>&1
  1666.     then ac_cv_prog_egrep='grep -E'
  1667.     else ac_cv_prog_egrep='egrep'
  1668.     fi])
  1669.  EGREP=$ac_cv_prog_egrep
  1670.  AC_SUBST([EGREP])
  1671. ])])
  1672. # AC_PATH_TOOL_PREFIX
  1673. # -------------------
  1674. # find a file program which can recognise shared library
  1675. AC_DEFUN([AC_PATH_TOOL_PREFIX],
  1676. [AC_REQUIRE([AC_PROG_EGREP])dnl
  1677. AC_MSG_CHECKING([for $1])
  1678. AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
  1679. [case $MAGIC_CMD in
  1680. [[\/*] |  ?:[\/]*])
  1681.   lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
  1682.   ;;
  1683. *)
  1684.   lt_save_MAGIC_CMD="$MAGIC_CMD"
  1685.   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  1686. dnl $ac_dummy forces splitting on constant user-supplied paths.
  1687. dnl POSIX.2 word splitting is done only on the output of word expansions,
  1688. dnl not every word.  This closes a longstanding sh security hole.
  1689.   ac_dummy="ifelse([$2], , $PATH, [$2])"
  1690.   for ac_dir in $ac_dummy; do
  1691.     IFS="$lt_save_ifs"
  1692.     test -z "$ac_dir" && ac_dir=.
  1693.     if test -f $ac_dir/$1; then
  1694.       lt_cv_path_MAGIC_CMD="$ac_dir/$1"
  1695.       if test -n "$file_magic_test_file"; then
  1696. case $deplibs_check_method in
  1697. "file_magic "*)
  1698.   file_magic_regex="`expr "$deplibs_check_method" : "file_magic (.*)"`"
  1699.   MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  1700.   if eval $file_magic_cmd $file_magic_test_file 2> /dev/null |
  1701.     $EGREP "$file_magic_regex" > /dev/null; then
  1702.     :
  1703.   else
  1704.     cat <<EOF 1>&2
  1705. *** Warning: the command libtool uses to detect shared libraries,
  1706. *** $file_magic_cmd, produces output that libtool cannot recognize.
  1707. *** The result is that libtool may fail to recognize shared libraries
  1708. *** as such.  This will affect the creation of libtool libraries that
  1709. *** depend on shared libraries, but programs linked with such libtool
  1710. *** libraries will work regardless of this problem.  Nevertheless, you
  1711. *** may want to report the problem to your system manager and/or to
  1712. *** bug-libtool@gnu.org
  1713. EOF
  1714.   fi ;;
  1715. esac
  1716.       fi
  1717.       break
  1718.     fi
  1719.   done
  1720.   IFS="$lt_save_ifs"
  1721.   MAGIC_CMD="$lt_save_MAGIC_CMD"
  1722.   ;;
  1723. esac])
  1724. MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  1725. if test -n "$MAGIC_CMD"; then
  1726.   AC_MSG_RESULT($MAGIC_CMD)
  1727. else
  1728.   AC_MSG_RESULT(no)
  1729. fi
  1730. ])# AC_PATH_TOOL_PREFIX
  1731. # AC_PATH_MAGIC
  1732. # -------------
  1733. # find a file program which can recognise a shared library
  1734. AC_DEFUN([AC_PATH_MAGIC],
  1735. [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
  1736. if test -z "$lt_cv_path_MAGIC_CMD"; then
  1737.   if test -n "$ac_tool_prefix"; then
  1738.     AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
  1739.   else
  1740.     MAGIC_CMD=:
  1741.   fi
  1742. fi
  1743. ])# AC_PATH_MAGIC
  1744. # AC_PROG_LD
  1745. # ----------
  1746. # find the pathname to the GNU or non-GNU linker
  1747. AC_DEFUN([AC_PROG_LD],
  1748. [AC_ARG_WITH([gnu-ld],
  1749.     [AC_HELP_STRING([--with-gnu-ld],
  1750. [assume the C compiler uses GNU ld @<:@default=no@:>@])],
  1751.     [test "$withval" = no || with_gnu_ld=yes],
  1752.     [with_gnu_ld=no])
  1753. AC_REQUIRE([LT_AC_PROG_SED])dnl
  1754. AC_REQUIRE([AC_PROG_CC])dnl
  1755. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1756. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  1757. ac_prog=ld
  1758. if test "$GCC" = yes; then
  1759.   # Check if gcc -print-prog-name=ld gives a path.
  1760.   AC_MSG_CHECKING([for ld used by $CC])
  1761.   case $host in
  1762.   *-*-mingw*)
  1763.     # gcc leaves a trailing carriage return which upsets mingw
  1764.     ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '15'` ;;
  1765.   *)
  1766.     ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
  1767.   esac
  1768.   case $ac_prog in
  1769.     # Accept absolute paths.
  1770.     [[\/]]* | ?:[[\/]]*)
  1771.       re_direlt='/[[^/]][[^/]]*/../'
  1772.       # Canonicalize the pathname of ld
  1773.       ac_prog=`echo $ac_prog| $SED 's%\\%/%g'`
  1774.       while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
  1775. ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
  1776.       done
  1777.       test -z "$LD" && LD="$ac_prog"
  1778.       ;;
  1779.   "")
  1780.     # If it fails, then pretend we aren't using GCC.
  1781.     ac_prog=ld
  1782.     ;;
  1783.   *)
  1784.     # If it is relative, then search for the first ld in PATH.
  1785.     with_gnu_ld=unknown
  1786.     ;;
  1787.   esac
  1788. elif test "$with_gnu_ld" = yes; then
  1789.   AC_MSG_CHECKING([for GNU ld])
  1790. else
  1791.   AC_MSG_CHECKING([for non-GNU ld])
  1792. fi
  1793. AC_CACHE_VAL(lt_cv_path_LD,
  1794. [if test -z "$LD"; then
  1795.   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  1796.   for ac_dir in $PATH; do
  1797.     IFS="$lt_save_ifs"
  1798.     test -z "$ac_dir" && ac_dir=.
  1799.     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
  1800.       lt_cv_path_LD="$ac_dir/$ac_prog"
  1801.       # Check to see if the program is GNU ld.  I'd rather use --version,
  1802.       # but apparently some GNU ld's only accept -v.
  1803.       # Break only if it was the GNU/non-GNU ld that we prefer.
  1804.       case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
  1805.       *GNU* | *'with BFD'*)
  1806. test "$with_gnu_ld" != no && break
  1807. ;;
  1808.       *)
  1809. test "$with_gnu_ld" != yes && break
  1810. ;;
  1811.       esac
  1812.     fi
  1813.   done
  1814.   IFS="$lt_save_ifs"
  1815. else
  1816.   lt_cv_path_LD="$LD" # Let the user override the test with a path.
  1817. fi])
  1818. LD="$lt_cv_path_LD"
  1819. if test -n "$LD"; then
  1820.   AC_MSG_RESULT($LD)
  1821. else
  1822.   AC_MSG_RESULT(no)
  1823. fi
  1824. test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in $PATH])
  1825. AC_PROG_LD_GNU
  1826. ])# AC_PROG_LD
  1827. # AC_PROG_LD_GNU
  1828. # --------------
  1829. AC_DEFUN([AC_PROG_LD_GNU],
  1830. [AC_REQUIRE([AC_PROG_EGREP])dnl
  1831. AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
  1832. [# I'd rather use --version here, but apparently some GNU ld's only accept -v.
  1833. case `$LD -v 2>&1 </dev/null` in
  1834. *GNU* | *'with BFD'*)
  1835.   lt_cv_prog_gnu_ld=yes
  1836.   ;;
  1837. *)
  1838.   lt_cv_prog_gnu_ld=no
  1839.   ;;
  1840. esac])
  1841. with_gnu_ld=$lt_cv_prog_gnu_ld
  1842. ])# AC_PROG_LD_GNU
  1843. # AC_PROG_LD_RELOAD_FLAG
  1844. # ----------------------
  1845. # find reload flag for linker
  1846. #   -- PORTME Some linkers may need a different reload flag.
  1847. AC_DEFUN([AC_PROG_LD_RELOAD_FLAG],
  1848. [AC_CACHE_CHECK([for $LD option to reload object files],
  1849.   lt_cv_ld_reload_flag,
  1850.   [lt_cv_ld_reload_flag='-r'])
  1851. reload_flag=$lt_cv_ld_reload_flag
  1852. case $reload_flag in
  1853. "" | " "*) ;;
  1854. *) reload_flag=" $reload_flag" ;;
  1855. esac
  1856. reload_cmds='$LD$reload_flag -o $output$reload_objs'
  1857. ])# AC_PROG_LD_RELOAD_FLAG
  1858. # AC_DEPLIBS_CHECK_METHOD
  1859. # -----------------------
  1860. # how to check for library dependencies
  1861. #  -- PORTME fill in with the dynamic library characteristics
  1862. AC_DEFUN([AC_DEPLIBS_CHECK_METHOD],
  1863. [AC_CACHE_CHECK([how to recognise dependent libraries],
  1864. lt_cv_deplibs_check_method,
  1865. [lt_cv_file_magic_cmd='$MAGIC_CMD'
  1866. lt_cv_file_magic_test_file=
  1867. lt_cv_deplibs_check_method='unknown'
  1868. # Need to set the preceding variable on all platforms that support
  1869. # interlibrary dependencies.
  1870. # 'none' -- dependencies not supported.
  1871. # `unknown' -- same as none, but documents that we really don't know.
  1872. # 'pass_all' -- all dependencies passed with no checks.
  1873. # 'test_compile' -- check by making test program.
  1874. # 'file_magic [[regex]]' -- check by looking for files in library path
  1875. # which responds to the $file_magic_cmd with a given extended regex.
  1876. # If you have `file' or equivalent on your system and you're not sure
  1877. # whether `pass_all' will *always* work, you probably want this one.
  1878. case $host_os in
  1879. aix4* | aix5*)
  1880.   lt_cv_deplibs_check_method=pass_all
  1881.   ;;
  1882. beos*)
  1883.   lt_cv_deplibs_check_method=pass_all
  1884.   ;;
  1885. bsdi4*)
  1886.   lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
  1887.   lt_cv_file_magic_cmd='/usr/bin/file -L'
  1888.   lt_cv_file_magic_test_file=/shlib/libc.so
  1889.   ;;
  1890. cygwin*)
  1891.   lt_cv_deplibs_check_method=pass_all
  1892.   ;;
  1893.   
  1894. mingw* | pw32*)
  1895.   # win32_libid is a shell function defined in ltmain.sh
  1896.   lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
  1897.   lt_cv_file_magic_cmd='win32_libid'
  1898.   ;;
  1899. darwin* | rhapsody*)
  1900.   # this will be overwritten by pass_all, but leave it in just in case
  1901.   lt_cv_deplibs_check_method='file_magic Mach-O dynamically linked shared library'
  1902.   lt_cv_file_magic_cmd='/usr/bin/file -L'
  1903.   case "$host_os" in
  1904.   rhapsody* | darwin1.[[012]])
  1905.     lt_cv_file_magic_test_file=`/System/Library/Frameworks/System.framework/System`
  1906.     ;;
  1907.   *) # Darwin 1.3 on
  1908.     lt_cv_file_magic_test_file='/usr/lib/libSystem.dylib'
  1909.     ;;
  1910.   esac
  1911.   lt_cv_deplibs_check_method=pass_all
  1912.   ;;
  1913. freebsd* | kfreebsd*-gnu)
  1914.   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
  1915.     case $host_cpu in
  1916.     i*86 )
  1917.       # Not sure whether the presence of OpenBSD here was a mistake.
  1918.       # Let's accept both of them until this is cleared up.
  1919.       lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[[3-9]]86 (compact )?demand paged shared library'
  1920.       lt_cv_file_magic_cmd=/usr/bin/file
  1921.       lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
  1922.       ;;
  1923.     esac
  1924.   else
  1925.     lt_cv_deplibs_check_method=pass_all
  1926.   fi
  1927.   ;;
  1928. gnu*)
  1929.   lt_cv_deplibs_check_method=pass_all
  1930.   ;;
  1931. hpux10.20* | hpux11*)
  1932.   lt_cv_file_magic_cmd=/usr/bin/file
  1933.   case "$host_cpu" in
  1934.   ia64*)
  1935.     lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
  1936.     lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
  1937.     ;;
  1938.   hppa*64*)
  1939.     [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]']
  1940.     lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
  1941.     ;;
  1942.   *)
  1943.     lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library'
  1944.     lt_cv_file_magic_test_file=/usr/lib/libc.sl
  1945.     ;;
  1946.   esac
  1947.   ;;
  1948. irix5* | irix6* | nonstopux*)
  1949.   case $host_os in
  1950.   irix5* | nonstopux*)
  1951.     # this will be overridden with pass_all, but let us keep it just in case
  1952.     lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1"
  1953.     ;;
  1954.   *)
  1955.     case $LD in
  1956.     *-32|*"-32 ") libmagic=32-bit;;
  1957.     *-n32|*"-n32 ") libmagic=N32;;
  1958.     *-64|*"-64 ") libmagic=64-bit;;
  1959.     *) libmagic=never-match;;
  1960.     esac
  1961.     # this will be overridden with pass_all, but let us keep it just in case
  1962.     lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[[1234]] dynamic lib MIPS - version 1"
  1963.     ;;
  1964.   esac
  1965.   lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*`
  1966.   lt_cv_deplibs_check_method=pass_all
  1967.   ;;
  1968. # This must be Linux ELF.
  1969. linux*)
  1970.   case $host_cpu in
  1971.   alpha* | hppa* | i*86 | ia64* | m68* | mips* | powerpc* | sparc* | s390* | sh* | x86_64* )
  1972.     lt_cv_deplibs_check_method=pass_all ;;
  1973.   # the debian people say, arm and glibc 2.3.1 works for them with pass_all
  1974.   arm* )
  1975.     lt_cv_deplibs_check_method=pass_all ;;
  1976.   *)
  1977.     # glibc up to 2.1.1 does not perform some relocations on ARM
  1978.     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;;
  1979.   esac
  1980.   lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
  1981.   ;;
  1982. netbsd*)
  1983.   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
  1984.     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(.so.[[0-9]]+.[[0-9]]+|_pic.a)$'
  1985.   else
  1986.     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(.so|_pic.a)$'
  1987.   fi
  1988.   ;;
  1989. newos6*)
  1990.   lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
  1991.   lt_cv_file_magic_cmd=/usr/bin/file
  1992.   lt_cv_file_magic_test_file=/usr/lib/libnls.so
  1993.   ;;
  1994. nto-qnx*)
  1995.   lt_cv_deplibs_check_method=unknown
  1996.   ;;
  1997. openbsd*)
  1998.   lt_cv_file_magic_cmd=/usr/bin/file
  1999.   lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
  2000.   if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  2001.     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB shared object'
  2002.   else
  2003.     lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library'
  2004.   fi
  2005.   ;;
  2006. osf3* | osf4* | osf5*)
  2007.   # this will be overridden with pass_all, but let us keep it just in case
  2008.   lt_cv_deplibs_check_method='file_magic COFF format alpha shared library'
  2009.   lt_cv_file_magic_test_file=/shlib/libc.so
  2010.   lt_cv_deplibs_check_method=pass_all
  2011.   ;;
  2012. sco3.2v5*)
  2013.   lt_cv_deplibs_check_method=pass_all
  2014.   ;;
  2015. solaris*)
  2016.   lt_cv_deplibs_check_method=pass_all
  2017.   lt_cv_file_magic_test_file=/lib/libc.so
  2018.   ;;
  2019. sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
  2020.   case $host_vendor in
  2021.   motorola)
  2022.     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]'
  2023.     lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
  2024.     ;;
  2025.   ncr)
  2026.     lt_cv_deplibs_check_method=pass_all
  2027.     ;;
  2028.   sequent)
  2029.     lt_cv_file_magic_cmd='/bin/file'
  2030.     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
  2031.     ;;
  2032.   sni)
  2033.     lt_cv_file_magic_cmd='/bin/file'
  2034.     lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
  2035.     lt_cv_file_magic_test_file=/lib/libc.so
  2036.     ;;
  2037.   siemens)
  2038.     lt_cv_deplibs_check_method=pass_all
  2039.     ;;
  2040.   esac
  2041.   ;;
  2042. sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7* | sysv4*uw2*)
  2043.   lt_cv_deplibs_check_method=pass_all
  2044.   ;;
  2045. esac
  2046. ])
  2047. file_magic_cmd=$lt_cv_file_magic_cmd
  2048. deplibs_check_method=$lt_cv_deplibs_check_method
  2049. test -z "$deplibs_check_method" && deplibs_check_method=unknown
  2050. ])# AC_DEPLIBS_CHECK_METHOD
  2051. # AC_PROG_NM
  2052. # ----------
  2053. # find the pathname to a BSD-compatible name lister
  2054. AC_DEFUN([AC_PROG_NM],
  2055. [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM,
  2056. [if test -n "$NM"; then
  2057.   # Let the user override the test.
  2058.   lt_cv_path_NM="$NM"
  2059. else
  2060.   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  2061.   for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
  2062.     IFS="$lt_save_ifs"
  2063.     test -z "$ac_dir" && ac_dir=.
  2064.     tmp_nm="$ac_dir/${ac_tool_prefix}nm"
  2065.     if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
  2066.       # Check to see if the nm accepts a BSD-compat flag.
  2067.       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
  2068.       #   nm: unknown option "B" ignored
  2069.       # Tru64's nm complains that /dev/null is an invalid object file
  2070.       case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
  2071.       */dev/null* | *'Invalid file or object type'*)
  2072. lt_cv_path_NM="$tmp_nm -B"
  2073. break
  2074.         ;;
  2075.       *)
  2076. case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
  2077. */dev/null*)
  2078.   lt_cv_path_NM="$tmp_nm -p"
  2079.   break
  2080.   ;;
  2081. *)
  2082.   lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
  2083.   continue # so that we can try to find one that supports BSD flags
  2084.   ;;
  2085. esac
  2086.       esac
  2087.     fi
  2088.   done
  2089.   IFS="$lt_save_ifs"
  2090.   test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
  2091. fi])
  2092. NM="$lt_cv_path_NM"
  2093. ])# AC_PROG_NM
  2094. # AC_CHECK_LIBM
  2095. # -------------
  2096. # check for math library
  2097. AC_DEFUN([AC_CHECK_LIBM],
  2098. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2099. LIBM=
  2100. case $host in
  2101. *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
  2102.   # These system don't have libm, or don't need it
  2103.   ;;
  2104. *-ncr-sysv4.3*)
  2105.   AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
  2106.   AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
  2107.   ;;
  2108. *)
  2109.   AC_CHECK_LIB(m, cos, LIBM="-lm")
  2110.   ;;
  2111. esac
  2112. ])# AC_CHECK_LIBM
  2113. # AC_LIBLTDL_CONVENIENCE([DIRECTORY])
  2114. # -----------------------------------
  2115. # sets LIBLTDL to the link flags for the libltdl convenience library and
  2116. # LTDLINCL to the include flags for the libltdl header and adds
  2117. # --enable-ltdl-convenience to the configure arguments.  Note that LIBLTDL
  2118. # and LTDLINCL are not AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called.  If
  2119. # DIRECTORY is not provided, it is assumed to be `libltdl'.  LIBLTDL will
  2120. # be prefixed with '${top_builddir}/' and LTDLINCL will be prefixed with
  2121. # '${top_srcdir}/' (note the single quotes!).  If your package is not
  2122. # flat and you're not using automake, define top_builddir and
  2123. # top_srcdir appropriately in the Makefiles.
  2124. AC_DEFUN([AC_LIBLTDL_CONVENIENCE],
  2125. [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  2126.   case $enable_ltdl_convenience in
  2127.   no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
  2128.   "") enable_ltdl_convenience=yes
  2129.       ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
  2130.   esac
  2131.   LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la
  2132.   LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
  2133.   # For backwards non-gettext consistent compatibility...
  2134.   INCLTDL="$LTDLINCL"
  2135. ])# AC_LIBLTDL_CONVENIENCE
  2136. # AC_LIBLTDL_INSTALLABLE([DIRECTORY])
  2137. # -----------------------------------
  2138. # sets LIBLTDL to the link flags for the libltdl installable library and
  2139. # LTDLINCL to the include flags for the libltdl header and adds
  2140. # --enable-ltdl-install to the configure arguments.  Note that LIBLTDL
  2141. # and LTDLINCL are not AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called.  If
  2142. # DIRECTORY is not provided and an installed libltdl is not found, it is
  2143. # assumed to be `libltdl'.  LIBLTDL will be prefixed with '${top_builddir}/'
  2144. # and LTDLINCL will be prefixed with '${top_srcdir}/' (note the single
  2145. # quotes!).  If your package is not flat and you're not using automake,
  2146. # define top_builddir and top_srcdir appropriately in the Makefiles.
  2147. # In the future, this macro may have to be called after AC_PROG_LIBTOOL.
  2148. AC_DEFUN([AC_LIBLTDL_INSTALLABLE],
  2149. [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
  2150.   AC_CHECK_LIB(ltdl, lt_dlinit,
  2151.   [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no],
  2152.   [if test x"$enable_ltdl_install" = xno; then
  2153.      AC_MSG_WARN([libltdl not installed, but installation disabled])
  2154.    else
  2155.      enable_ltdl_install=yes
  2156.    fi
  2157.   ])
  2158.   if test x"$enable_ltdl_install" = x"yes"; then
  2159.     ac_configure_args="$ac_configure_args --enable-ltdl-install"
  2160.     LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la
  2161.     LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
  2162.   else
  2163.     ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
  2164.     LIBLTDL="-lltdl"
  2165.     LTDLINCL=
  2166.   fi
  2167.   # For backwards non-gettext consistent compatibility...
  2168.   INCLTDL="$LTDLINCL"
  2169. ])# AC_LIBLTDL_INSTALLABLE
  2170. # AC_LIBTOOL_CXX
  2171. # --------------
  2172. # enable support for C++ libraries
  2173. AC_DEFUN([AC_LIBTOOL_CXX],
  2174. [AC_REQUIRE([_LT_AC_LANG_CXX])
  2175. ])# AC_LIBTOOL_CXX
  2176. # _LT_AC_LANG_CXX
  2177. # ---------------
  2178. AC_DEFUN([_LT_AC_LANG_CXX],
  2179. [AC_REQUIRE([AC_PROG_CXX])
  2180. AC_REQUIRE([AC_PROG_CXXCPP])
  2181. _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX])
  2182. ])# _LT_AC_LANG_CXX
  2183. # AC_LIBTOOL_F77
  2184. # --------------
  2185. # enable support for Fortran 77 libraries
  2186. AC_DEFUN([AC_LIBTOOL_F77],
  2187. [AC_REQUIRE([_LT_AC_LANG_F77])
  2188. ])# AC_LIBTOOL_F77
  2189. # _LT_AC_LANG_F77
  2190. # ---------------
  2191. AC_DEFUN([_LT_AC_LANG_F77],
  2192. [AC_REQUIRE([AC_PROG_F77])
  2193. _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77])
  2194. ])# _LT_AC_LANG_F77
  2195. # AC_LIBTOOL_GCJ
  2196. # --------------
  2197. # enable support for GCJ libraries
  2198. AC_DEFUN([AC_LIBTOOL_GCJ],
  2199. [AC_REQUIRE([_LT_AC_LANG_GCJ])
  2200. ])# AC_LIBTOOL_GCJ
  2201. # _LT_AC_LANG_GCJ
  2202. # ---------------
  2203. AC_DEFUN([_LT_AC_LANG_GCJ],
  2204. [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[],
  2205.   [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[],
  2206.     [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[],
  2207.       [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])],
  2208.  [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])],
  2209.    [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])])
  2210. _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ])
  2211. ])# _LT_AC_LANG_GCJ
  2212. # AC_LIBTOOL_RC
  2213. # --------------
  2214. # enable support for Windows resource files
  2215. AC_DEFUN([AC_LIBTOOL_RC],
  2216. [AC_REQUIRE([LT_AC_PROG_RC])
  2217. _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC])
  2218. ])# AC_LIBTOOL_RC
  2219. # AC_LIBTOOL_LANG_C_CONFIG
  2220. # ------------------------
  2221. # Ensure that the configuration vars for the C compiler are
  2222. # suitably defined.  Those variables are subsequently used by
  2223. # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
  2224. AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG])
  2225. AC_DEFUN([_LT_AC_LANG_C_CONFIG],
  2226. [lt_save_CC="$CC"
  2227. AC_LANG_PUSH(C)
  2228. # Source file extension for C test sources.
  2229. ac_ext=c
  2230. # Object file extension for compiled C test sources.
  2231. objext=o
  2232. _LT_AC_TAGVAR(objext, $1)=$objext
  2233. # Code to be used in simple compile tests
  2234. lt_simple_compile_test_code="int some_variable = 0;n"
  2235. # Code to be used in simple link tests
  2236. lt_simple_link_test_code='int main(){return(0);}n'
  2237. _LT_AC_SYS_COMPILER
  2238. #
  2239. # Check for any special shared library compilation flags.
  2240. #
  2241. _LT_AC_TAGVAR(lt_prog_cc_shlib, $1)=
  2242. if test "$GCC" = no; then
  2243.   case $host_os in
  2244.   sco3.2v5*)
  2245.     _LT_AC_TAGVAR(lt_prog_cc_shlib, $1)='-belf'
  2246.     ;;
  2247.   esac
  2248. fi
  2249. if test -n "$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)"; then
  2250.   AC_MSG_WARN([`$CC' requires `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to build shared libraries])
  2251.   if echo "$old_CC $old_CFLAGS " | grep "[[  ]]$]_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)[[[  ]]" >/dev/null; then :
  2252.   else
  2253.     AC_MSG_WARN([add `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to the CC or CFLAGS env variable and reconfigure])
  2254.     _LT_AC_TAGVAR(lt_cv_prog_cc_can_build_shared, $1)=no
  2255.   fi
  2256. fi
  2257. #
  2258. # Check to make sure the static flag actually works.
  2259. #
  2260. AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $_LT_AC_TAGVAR(lt_prog_compiler_static, $1) works],
  2261.   _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1),
  2262.   $_LT_AC_TAGVAR(lt_prog_compiler_static, $1),
  2263.   [],
  2264.   [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=])
  2265. ## CAVEAT EMPTOR:
  2266. ## There is no encapsulation within the following macros, do not change
  2267. ## the running order or otherwise move them around unless you know exactly
  2268. ## what you are doing...
  2269. AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
  2270. AC_LIBTOOL_PROG_COMPILER_PIC($1)
  2271. AC_LIBTOOL_PROG_CC_C_O($1)
  2272. AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
  2273. AC_LIBTOOL_PROG_LD_SHLIBS($1)
  2274. AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
  2275. AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
  2276. AC_LIBTOOL_SYS_LIB_STRIP
  2277. AC_LIBTOOL_DLOPEN_SELF($1)
  2278. # Report which librarie types wil actually be built
  2279. AC_MSG_CHECKING([if libtool supports shared libraries])
  2280. AC_MSG_RESULT([$can_build_shared])
  2281. AC_MSG_CHECKING([whether to build shared libraries])
  2282. test "$can_build_shared" = "no" && enable_shared=no
  2283. # On AIX, shared libraries and static libraries use the same namespace, and
  2284. # are all built from PIC.
  2285. case "$host_os" in
  2286. aix3*)
  2287.   test "$enable_shared" = yes && enable_static=no
  2288.   if test -n "$RANLIB"; then
  2289.     archive_cmds="$archive_cmds~$RANLIB $lib"
  2290.     postinstall_cmds='$RANLIB $lib'
  2291.   fi
  2292.   ;;
  2293. aix4*)
  2294.   if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
  2295.     test "$enable_shared" = yes && enable_static=no
  2296.   fi
  2297.   ;;
  2298.   darwin* | rhapsody*)
  2299.   if test "$GCC" = yes; then
  2300.     _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
  2301.     case "$host_os" in
  2302.     rhapsody* | darwin1.[[012]])
  2303.       _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-undefined -Wl,suppress'
  2304.       ;;
  2305.     *) # Darwin 1.3 on
  2306.       if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
  2307. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress'
  2308.       else
  2309. case ${MACOSX_DEPLOYMENT_TARGET} in
  2310.   10.[012])
  2311.     _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress'
  2312.     ;;
  2313.   10.*)
  2314.     _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-undefined -Wl,dynamic_lookup'
  2315.     ;;
  2316. esac
  2317.       fi
  2318.       ;;
  2319.     esac
  2320.     output_verbose_link_cmd='echo'
  2321.     _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $compiler_flags $libobjs $deplibs -install_name $rpath/$soname $verstring'
  2322.     _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $compiler_flags $libobjs $deplibs'
  2323.     # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's
  2324.     _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^(..*),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag  -o $lib $compiler_flags $libobjs $deplibs -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
  2325.     _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^(..*),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $compiler_flags $libobjs $deplibs~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
  2326.     _LT_AC_TAGVAR(hardcode_direct, $1)=no
  2327.     _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
  2328.     _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  2329.     _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-all_load $convenience'
  2330.     _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
  2331.   else
  2332.     _LT_AC_TAGVAR(ld_shlibs, $1)=no
  2333.   fi  
  2334.     ;;  
  2335. esac
  2336. AC_MSG_RESULT([$enable_shared])
  2337. AC_MSG_CHECKING([whether to build static libraries])
  2338. # Make sure either enable_shared or enable_static is yes.
  2339. test "$enable_shared" = yes || enable_static=yes
  2340. AC_MSG_RESULT([$enable_static])
  2341. AC_LIBTOOL_CONFIG($1)
  2342. AC_LANG_POP
  2343. CC="$lt_save_CC"
  2344. ])# AC_LIBTOOL_LANG_C_CONFIG
  2345. # AC_LIBTOOL_LANG_CXX_CONFIG
  2346. # --------------------------
  2347. # Ensure that the configuration vars for the C compiler are
  2348. # suitably defined.  Those variables are subsequently used by
  2349. # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
  2350. AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)])
  2351. AC_DEFUN([_LT_AC_LANG_CXX_CONFIG],
  2352. [AC_LANG_PUSH(C++)
  2353. AC_REQUIRE([AC_PROG_CXX])
  2354. AC_REQUIRE([AC_PROG_CXXCPP])
  2355. _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
  2356. _LT_AC_TAGVAR(allow_undefined_flag, $1)=
  2357. _LT_AC_TAGVAR(always_export_symbols, $1)=no
  2358. _LT_AC_TAGVAR(archive_expsym_cmds, $1)=
  2359. _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
  2360. _LT_AC_TAGVAR(hardcode_direct, $1)=no
  2361. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
  2362. _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
  2363. _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
  2364. _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
  2365. _LT_AC_TAGVAR(hardcode_automatic, $1)=no
  2366. _LT_AC_TAGVAR(module_cmds, $1)=
  2367. _LT_AC_TAGVAR(module_expsym_cmds, $1)=
  2368. _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
  2369. _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  2370. _LT_AC_TAGVAR(no_undefined_flag, $1)=
  2371. _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
  2372. _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  2373. # Dependencies to place before and after the object being linked:
  2374. _LT_AC_TAGVAR(predep_objects, $1)=
  2375. _LT_AC_TAGVAR(postdep_objects, $1)=
  2376. _LT_AC_TAGVAR(predeps, $1)=
  2377. _LT_AC_TAGVAR(postdeps, $1)=
  2378. _LT_AC_TAGVAR(compiler_lib_search_path, $1)=
  2379. # Source file extension for C++ test sources.
  2380. ac_ext=cc
  2381. # Object file extension for compiled C++ test sources.
  2382. objext=o
  2383. _LT_AC_TAGVAR(objext, $1)=$objext
  2384. # Code to be used in simple compile tests
  2385. lt_simple_compile_test_code="int some_variable = 0;n"
  2386. # Code to be used in simple link tests
  2387. lt_simple_link_test_code='int main(int, char *[]) { return(0); }n'
  2388. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  2389. _LT_AC_SYS_COMPILER
  2390. # Allow CC to be a program name with arguments.
  2391. lt_save_CC=$CC
  2392. lt_save_LD=$LD
  2393. lt_save_GCC=$GCC
  2394. GCC=$GXX
  2395. lt_save_with_gnu_ld=$with_gnu_ld
  2396. lt_save_path_LD=$lt_cv_path_LD
  2397. if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
  2398.   lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
  2399. else
  2400.   unset lt_cv_prog_gnu_ld
  2401. fi
  2402. if test -n "${lt_cv_path_LDCXX+set}"; then
  2403.   lt_cv_path_LD=$lt_cv_path_LDCXX
  2404. else
  2405.   unset lt_cv_path_LD
  2406. fi
  2407. test -z "${LDCXX+set}" || LD=$LDCXX
  2408. CC=${CXX-"c++"}
  2409. compiler=$CC
  2410. _LT_AC_TAGVAR(compiler, $1)=$CC
  2411. cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'`
  2412. # We don't want -fno-exception wen compiling C++ code, so set the
  2413. # no_builtin_flag separately
  2414. if test "$GXX" = yes; then
  2415.   _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
  2416. else
  2417.   _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
  2418. fi
  2419. if test "$GXX" = yes; then
  2420.   # Set up default GNU C++ configuration
  2421.   AC_PROG_LD
  2422.   # Check if GNU C++ uses GNU ld as the underlying linker, since the
  2423.   # archiving commands below assume that GNU ld is being used.
  2424.   if test "$with_gnu_ld" = yes; then
  2425.     _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-soname $wl$soname -o $lib'
  2426.     _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  2427.     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
  2428.     _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  2429.     # If archive_cmds runs LD, not CC, wlarc should be empty
  2430.     # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
  2431.     #     investigate it a little bit more. (MM)
  2432.     wlarc='${wl}'
  2433.     # ancient GNU ld didn't support --whole-archive et. al.
  2434.     if eval "`$CC -print-prog-name=ld` --help 2>&1" | 
  2435. grep 'no-whole-archive' > /dev/null; then
  2436.       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  2437.     else
  2438.       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
  2439.     fi
  2440.   else
  2441.     with_gnu_ld=no
  2442.     wlarc=
  2443.     # A generic and very simple default shared library creation
  2444.     # command for GNU C++ for the case where it uses the native
  2445.     # linker, instead of GNU ld.  If possible, this setting should
  2446.     # overridden to take advantage of the native linker features on
  2447.     # the platform it is being used on.
  2448.     _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects -o $lib'
  2449.   fi
  2450.   # Commands to make compiler produce verbose output that lists
  2451.   # what "hidden" libraries, object files and flags are used when
  2452.   # linking a shared library.
  2453.   output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "-L"'
  2454. else
  2455.   GXX=no
  2456.   with_gnu_ld=no
  2457.   wlarc=
  2458. fi
  2459. # PORTME: fill in a description of your system's C++ link characteristics
  2460. AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
  2461. _LT_AC_TAGVAR(ld_shlibs, $1)=yes
  2462. case $host_os in
  2463.   aix3*)
  2464.     # FIXME: insert proper C++ library support
  2465.     _LT_AC_TAGVAR(ld_shlibs, $1)=no
  2466.     ;;
  2467.   aix4* | aix5*)
  2468.     if test "$host_cpu" = ia64; then
  2469.       # On IA64, the linker does run time linking by default, so we don't
  2470.       # have to do anything special.
  2471.       aix_use_runtimelinking=no
  2472.       exp_sym_flag='-Bexport'
  2473.       no_entry_flag=""
  2474.     else
  2475.       # KDE requires run time linking.  Make it the default.
  2476.       aix_use_runtimelinking=yes
  2477.       exp_sym_flag='-bexport'
  2478.       no_entry_flag='-bnoentry'
  2479.     fi
  2480.     # When large executables or shared objects are built, AIX ld can
  2481.     # have problems creating the table of contents.  If linking a library
  2482.     # or program results in "error TOC overflow" add -mminimal-toc to
  2483.     # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
  2484.     # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
  2485.     _LT_AC_TAGVAR(archive_cmds, $1)=''
  2486.     _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  2487.     _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
  2488.     _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
  2489.     if test "$GXX" = yes; then
  2490.       case $host_os in aix4.[012]|aix4.[012].*)
  2491.       # We only want to do this on AIX 4.2 and lower, the check
  2492.       # below for broken collect2 doesn't work under 4.3+
  2493. collect2name=`${CC} -print-prog-name=collect2`
  2494. if test -f "$collect2name" && 
  2495.    strings "$collect2name" | grep resolve_lib_name >/dev/null
  2496. then
  2497.   # We have reworked collect2
  2498.   _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  2499. else
  2500.   # We have old collect2
  2501.   _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
  2502.   # It fails to find uninstalled libraries when the uninstalled
  2503.   # path is not listed in the libpath.  Setting hardcode_minus_L
  2504.   # to unsupported forces relinking
  2505.   _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
  2506.   _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  2507.   _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
  2508. fi
  2509.       esac
  2510.       shared_flag='-shared'
  2511.     else
  2512.       # not using gcc
  2513.       if test "$host_cpu" = ia64; then
  2514. # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
  2515. # chokes on -Wl,-G. The following line is correct:
  2516. shared_flag='-G'
  2517.       else
  2518. if test "$aix_use_runtimelinking" = yes; then
  2519.   shared_flag='-qmkshrobj ${wl}-G'
  2520. else
  2521.   shared_flag='-qmkshrobj'
  2522. fi
  2523.       fi
  2524.     fi
  2525.     # Let the compiler handle the export list.
  2526.     _LT_AC_TAGVAR(always_export_symbols, $1)=no
  2527.     if test "$aix_use_runtimelinking" = yes; then
  2528.       # Warning - without using the other runtime loading flags (-brtl),
  2529.       # -berok will link without error, but may produce a broken library.
  2530.       _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
  2531.       # Determine the default libpath from the value encoded in an empty executable.
  2532.       _LT_AC_SYS_LIBPATH_AIX
  2533.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  2534.       _LT_AC_TAGVAR(archive_cmds, $1)="$CC"' -o $output_objdir/$soname $compiler_flags $libobjs $deplibs `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '" $shared_flag"
  2535.       _LT_AC_TAGVAR(archive_expsym_cmds, $1)="$CC"' -o $output_objdir/$soname $compiler_flags $libobjs $deplibs `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"${wl}$exp_sym_flag:$export_symbols $shared_flag"
  2536.      else
  2537.       if test "$host_cpu" = ia64; then
  2538. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
  2539. _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
  2540. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="$CC $shared_flag"' -o $output_objdir/$soname $compiler_flags $libobjs $deplibs ${wl}${allow_undefined_flag} '"${wl}$no_entry_flag ${wl}$exp_sym_flag:$export_symbols"
  2541.       else
  2542. # Determine the default libpath from the value encoded in an empty executable.
  2543. _LT_AC_SYS_LIBPATH_AIX
  2544. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  2545. # Warning - without using the other run time loading flags,
  2546. # -berok will link without error, but may produce a broken library.
  2547. _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
  2548. _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
  2549. # -bexpall does not export symbols beginning with underscore (_)
  2550. _LT_AC_TAGVAR(always_export_symbols, $1)=yes
  2551. # Exported symbols can be pulled into shared objects from archives
  2552. _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' '
  2553. _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
  2554. # This is similar to how AIX traditionally builds it's shared libraries.
  2555. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="$CC $shared_flag"' -o $output_objdir/$soname $compiler_flags $libobjs $deplibs ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
  2556.       fi
  2557.     fi
  2558.     ;;
  2559.   chorus*)
  2560.     case $cc_basename in
  2561.       *)
  2562. # FIXME: insert proper C++ library support
  2563. _LT_AC_TAGVAR(ld_shlibs, $1)=no
  2564. ;;
  2565.     esac
  2566.     ;;
  2567.   cygwin* | mingw* | pw32*)
  2568.     # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
  2569.     # as there is no search path for DLLs.
  2570.     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  2571.     _LT_AC_TAGVAR(allow_undefined_flag, $1)=no
  2572.     _LT_AC_TAGVAR(always_export_symbols, $1)=no
  2573.     _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  2574.     if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
  2575.       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib'
  2576.       # If the export-symbols file already is a .def file (1st line
  2577.       # is EXPORTS), use it as is; otherwise, prepend...
  2578.       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  2579. cp $export_symbols $output_objdir/$soname.def;
  2580.       else
  2581. echo EXPORTS > $output_objdir/$soname.def;
  2582. cat $export_symbols >> $output_objdir/$soname.def;
  2583.       fi~
  2584.       $CC -shared -nostdlib $output_objdir/$soname.def $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib'
  2585.     else
  2586.       _LT_AC_TAGVAR(ld_shlibs, $1)=no
  2587.     fi
  2588.   ;;
  2589.   darwin* | rhapsody*)
  2590.   if test "$GXX" = yes; then
  2591.     _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
  2592.     case "$host_os" in
  2593.     rhapsody* | darwin1.[[012]])
  2594.       _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-undefined -Wl,suppress'
  2595.       ;;
  2596.     *) # Darwin 1.3 on
  2597.       if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
  2598. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress'
  2599.       else
  2600. case ${MACOSX_DEPLOYMENT_TARGET} in
  2601.   10.[012])
  2602.     _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress'
  2603.     ;;
  2604.   10.*)
  2605.     _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-undefined -Wl,dynamic_lookup'
  2606.     ;;
  2607. esac
  2608.       fi
  2609.       ;;
  2610.     esac
  2611.     lt_int_apple_cc_single_mod=no
  2612.     output_verbose_link_cmd='echo'
  2613.     if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then
  2614.       lt_int_apple_cc_single_mod=yes
  2615.     fi
  2616.     if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
  2617.       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $compiler_flags $libobjs $deplibs -install_name $rpath/$soname $verstring'
  2618.     else
  2619.       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $compiler_flags $deplibs -install_name $rpath/$soname $verstring'
  2620.     fi
  2621.     _LT_AC_TAGVAR(module_cmds, $1)='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $compiler_flags $libobjs $deplibs'
  2622.     # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's
  2623.     if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
  2624.       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^(..*),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $compiler_flags $libobjs $deplibs -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
  2625.     else
  2626.       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^(..*),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $compiler_flags $deplibs -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
  2627.     fi
  2628.     _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^(..*),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag  -o $lib -bundle $compiler_flags $libobjs $deplibs~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
  2629.     _LT_AC_TAGVAR(hardcode_direct, $1)=no
  2630.     _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
  2631.     _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  2632.     _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-all_load $convenience'
  2633.     _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
  2634.   else
  2635.     _LT_AC_TAGVAR(ld_shlibs, $1)=no
  2636.   fi
  2637.     ;;
  2638.   dgux*)
  2639.     case $cc_basename in
  2640.       ec++)
  2641. # FIXME: insert proper C++ library support
  2642. _LT_AC_TAGVAR(ld_shlibs, $1)=no
  2643. ;;
  2644.       ghcx)
  2645. # Green Hills C++ Compiler
  2646. # FIXME: insert proper C++ library support
  2647. _LT_AC_TAGVAR(ld_shlibs, $1)=no
  2648. ;;
  2649.       *)
  2650. # FIXME: insert proper C++ library support
  2651. _LT_AC_TAGVAR(ld_shlibs, $1)=no
  2652. ;;