aclocal.m4
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:242k
源码类别:

Windows CE

开发平台:

C/C++

  1. with_gnu_ld=$lt_save_with_gnu_ld
  2. lt_cv_path_LDCXX=$lt_cv_path_LD
  3. lt_cv_path_LD=$lt_save_path_LD
  4. lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
  5. lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
  6. ])# AC_LIBTOOL_LANG_CXX_CONFIG
  7. # AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME])
  8. # ------------------------
  9. # Figure out "hidden" library dependencies from verbose
  10. # compiler output when linking a shared library.
  11. # Parse the compiler output and extract the necessary
  12. # objects, libraries and library flags.
  13. AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[
  14. dnl we can't use the lt_simple_compile_test_code here,
  15. dnl because it contains code intended for an executable,
  16. dnl not a library.  It's possible we should let each
  17. dnl tag define a new lt_????_link_test_code variable,
  18. dnl but it's only used here...
  19. ifelse([$1],[],[cat > conftest.$ac_ext <<EOF
  20. int a;
  21. void foo (void) { a = 0; }
  22. EOF
  23. ],[$1],[CXX],[cat > conftest.$ac_ext <<EOF
  24. class Foo
  25. {
  26. public:
  27.   Foo (void) { a = 0; }
  28. private:
  29.   int a;
  30. };
  31. EOF
  32. ],[$1],[F77],[cat > conftest.$ac_ext <<EOF
  33.       subroutine foo
  34.       implicit none
  35.       integer*4 a
  36.       a=0
  37.       return
  38.       end
  39. EOF
  40. ],[$1],[GCJ],[cat > conftest.$ac_ext <<EOF
  41. public class foo {
  42.   private int a;
  43.   public void bar (void) {
  44.     a = 0;
  45.   }
  46. };
  47. EOF
  48. ])
  49. dnl Parse the compiler output and extract the necessary
  50. dnl objects, libraries and library flags.
  51. if AC_TRY_EVAL(ac_compile); then
  52.   # Parse the compiler output and extract the necessary
  53.   # objects, libraries and library flags.
  54.   # Sentinel used to keep track of whether or not we are before
  55.   # the conftest object file.
  56.   pre_test_object_deps_done=no
  57.   # The `*' in the case matches for architectures that use `case' in
  58.   # $output_verbose_cmd can trigger glob expansion during the loop
  59.   # eval without this substitution.
  60.   output_verbose_link_cmd="`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"`"
  61.   for p in `eval $output_verbose_link_cmd`; do
  62.     case $p in
  63.     -L* | -R* | -l*)
  64.        # Some compilers place space between "-{L,R}" and the path.
  65.        # Remove the space.
  66.        if test $p = "-L" 
  67.   || test $p = "-R"; then
  68.  prev=$p
  69.  continue
  70.        else
  71.  prev=
  72.        fi
  73.        if test "$pre_test_object_deps_done" = no; then
  74.  case $p in
  75.  -L* | -R*)
  76.    # Internal compiler library paths should come after those
  77.    # provided the user.  The postdeps already come after the
  78.    # user supplied libs so there is no need to process them.
  79.    if test -z "$_LT_AC_TAGVAR(compiler_lib_search_path, $1)"; then
  80.      _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
  81.    else
  82.      _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${_LT_AC_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
  83.    fi
  84.    ;;
  85.  # The "-l" case would never come before the object being
  86.  # linked, so don't bother handling this case.
  87.  esac
  88.        else
  89.  if test -z "$_LT_AC_TAGVAR(postdeps, $1)"; then
  90.    _LT_AC_TAGVAR(postdeps, $1)="${prev}${p}"
  91.  else
  92.    _LT_AC_TAGVAR(postdeps, $1)="${_LT_AC_TAGVAR(postdeps, $1)} ${prev}${p}"
  93.  fi
  94.        fi
  95.        ;;
  96.     *.$objext)
  97.        # This assumes that the test object file only shows up
  98.        # once in the compiler output.
  99.        if test "$p" = "conftest.$objext"; then
  100.  pre_test_object_deps_done=yes
  101.  continue
  102.        fi
  103.        if test "$pre_test_object_deps_done" = no; then
  104.  if test -z "$_LT_AC_TAGVAR(predep_objects, $1)"; then
  105.    _LT_AC_TAGVAR(predep_objects, $1)="$p"
  106.  else
  107.    _LT_AC_TAGVAR(predep_objects, $1)="$_LT_AC_TAGVAR(predep_objects, $1) $p"
  108.  fi
  109.        else
  110.  if test -z "$_LT_AC_TAGVAR(postdep_objects, $1)"; then
  111.    _LT_AC_TAGVAR(postdep_objects, $1)="$p"
  112.  else
  113.    _LT_AC_TAGVAR(postdep_objects, $1)="$_LT_AC_TAGVAR(postdep_objects, $1) $p"
  114.  fi
  115.        fi
  116.        ;;
  117.     *) ;; # Ignore the rest.
  118.     esac
  119.   done
  120.   # Clean up.
  121.   rm -f a.out a.exe
  122. else
  123.   echo "libtool.m4: error: problem compiling $1 test program"
  124. fi
  125. $rm -f confest.$objext
  126. case " $_LT_AC_TAGVAR(postdeps, $1) " in
  127. *" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;;
  128. esac
  129. ])# AC_LIBTOOL_POSTDEP_PREDEP
  130. # AC_LIBTOOL_LANG_F77_CONFIG
  131. # ------------------------
  132. # Ensure that the configuration vars for the C compiler are
  133. # suitably defined.  Those variables are subsequently used by
  134. # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
  135. AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)])
  136. AC_DEFUN([_LT_AC_LANG_F77_CONFIG],
  137. [AC_REQUIRE([AC_PROG_F77])
  138. AC_LANG_PUSH(Fortran 77)
  139. _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
  140. _LT_AC_TAGVAR(allow_undefined_flag, $1)=
  141. _LT_AC_TAGVAR(always_export_symbols, $1)=no
  142. _LT_AC_TAGVAR(archive_expsym_cmds, $1)=
  143. _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
  144. _LT_AC_TAGVAR(hardcode_direct, $1)=no
  145. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
  146. _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
  147. _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
  148. _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
  149. _LT_AC_TAGVAR(hardcode_automatic, $1)=no
  150. _LT_AC_TAGVAR(module_cmds, $1)=
  151. _LT_AC_TAGVAR(module_expsym_cmds, $1)=
  152. _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
  153. _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  154. _LT_AC_TAGVAR(no_undefined_flag, $1)=
  155. _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
  156. _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  157. # Source file extension for f77 test sources.
  158. ac_ext=f
  159. # Object file extension for compiled f77 test sources.
  160. objext=o
  161. _LT_AC_TAGVAR(objext, $1)=$objext
  162. # Code to be used in simple compile tests
  163. lt_simple_compile_test_code="      subroutine tn      returnn      endn"
  164. # Code to be used in simple link tests
  165. lt_simple_link_test_code="      program tn      endn"
  166. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  167. _LT_AC_SYS_COMPILER
  168. # Allow CC to be a program name with arguments.
  169. lt_save_CC="$CC"
  170. CC=${F77-"f77"}
  171. compiler=$CC
  172. _LT_AC_TAGVAR(compiler, $1)=$CC
  173. cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'`
  174. AC_MSG_CHECKING([if libtool supports shared libraries])
  175. AC_MSG_RESULT([$can_build_shared])
  176. AC_MSG_CHECKING([whether to build shared libraries])
  177. test "$can_build_shared" = "no" && enable_shared=no
  178. # On AIX, shared libraries and static libraries use the same namespace, and
  179. # are all built from PIC.
  180. case "$host_os" in
  181. aix3*)
  182.   test "$enable_shared" = yes && enable_static=no
  183.   if test -n "$RANLIB"; then
  184.     archive_cmds="$archive_cmds~$RANLIB $lib"
  185.     postinstall_cmds='$RANLIB $lib'
  186.   fi
  187.   ;;
  188. aix4* | aix5*)
  189.   test "$enable_shared" = yes && enable_static=no
  190.   ;;
  191. esac
  192. AC_MSG_RESULT([$enable_shared])
  193. AC_MSG_CHECKING([whether to build static libraries])
  194. # Make sure either enable_shared or enable_static is yes.
  195. test "$enable_shared" = yes || enable_static=yes
  196. AC_MSG_RESULT([$enable_static])
  197. test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
  198. _LT_AC_TAGVAR(GCC, $1)="$G77"
  199. _LT_AC_TAGVAR(LD, $1)="$LD"
  200. AC_LIBTOOL_PROG_COMPILER_PIC($1)
  201. AC_LIBTOOL_PROG_CC_C_O($1)
  202. AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
  203. AC_LIBTOOL_PROG_LD_SHLIBS($1)
  204. AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
  205. AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
  206. AC_LIBTOOL_SYS_LIB_STRIP
  207. AC_LIBTOOL_CONFIG($1)
  208. AC_LANG_POP
  209. CC="$lt_save_CC"
  210. ])# AC_LIBTOOL_LANG_F77_CONFIG
  211. # AC_LIBTOOL_LANG_GCJ_CONFIG
  212. # --------------------------
  213. # Ensure that the configuration vars for the C compiler are
  214. # suitably defined.  Those variables are subsequently used by
  215. # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
  216. AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)])
  217. AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG],
  218. [AC_LANG_SAVE
  219. # Source file extension for Java test sources.
  220. ac_ext=java
  221. # Object file extension for compiled Java test sources.
  222. objext=o
  223. _LT_AC_TAGVAR(objext, $1)=$objext
  224. # Code to be used in simple compile tests
  225. lt_simple_compile_test_code="class foo {}n"
  226. # Code to be used in simple link tests
  227. lt_simple_link_test_code='public class conftest { public static void main(String[] argv) {}; }n'
  228. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  229. _LT_AC_SYS_COMPILER
  230. # Allow CC to be a program name with arguments.
  231. lt_save_CC="$CC"
  232. CC=${GCJ-"gcj"}
  233. compiler=$CC
  234. _LT_AC_TAGVAR(compiler, $1)=$CC
  235. # GCJ did not exist at the time GCC didn't implicitly link libc in.
  236. _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
  237. AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
  238. AC_LIBTOOL_PROG_COMPILER_PIC($1)
  239. AC_LIBTOOL_PROG_CC_C_O($1)
  240. AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
  241. AC_LIBTOOL_PROG_LD_SHLIBS($1)
  242. AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
  243. AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
  244. AC_LIBTOOL_SYS_LIB_STRIP
  245. AC_LIBTOOL_DLOPEN_SELF($1)
  246. AC_LIBTOOL_CONFIG($1)
  247. AC_LANG_RESTORE
  248. CC="$lt_save_CC"
  249. ])# AC_LIBTOOL_LANG_GCJ_CONFIG
  250. # AC_LIBTOOL_LANG_RC_CONFIG
  251. # --------------------------
  252. # Ensure that the configuration vars for the Windows resource compiler are
  253. # suitably defined.  Those variables are subsequently used by
  254. # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
  255. AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)])
  256. AC_DEFUN([_LT_AC_LANG_RC_CONFIG],
  257. [AC_LANG_SAVE
  258. # Source file extension for RC test sources.
  259. ac_ext=rc
  260. # Object file extension for compiled RC test sources.
  261. objext=o
  262. _LT_AC_TAGVAR(objext, $1)=$objext
  263. # Code to be used in simple compile tests
  264. lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }n'
  265. # Code to be used in simple link tests
  266. lt_simple_link_test_code="$lt_simple_compile_test_code"
  267. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  268. _LT_AC_SYS_COMPILER
  269. # Allow CC to be a program name with arguments.
  270. lt_save_CC="$CC"
  271. CC=${RC-"windres"}
  272. compiler=$CC
  273. _LT_AC_TAGVAR(compiler, $1)=$CC
  274. _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
  275. AC_LIBTOOL_CONFIG($1)
  276. AC_LANG_RESTORE
  277. CC="$lt_save_CC"
  278. ])# AC_LIBTOOL_LANG_RC_CONFIG
  279. # AC_LIBTOOL_CONFIG([TAGNAME])
  280. # ----------------------------
  281. # If TAGNAME is not passed, then create an initial libtool script
  282. # with a default configuration from the untagged config vars.  Otherwise
  283. # add code to config.status for appending the configuration named by
  284. # TAGNAME from the matching tagged config vars.
  285. AC_DEFUN([AC_LIBTOOL_CONFIG],
  286. [# The else clause should only fire when bootstrapping the
  287. # libtool distribution, otherwise you forgot to ship ltmain.sh
  288. # with your package, and you will get complaints that there are
  289. # no rules to generate ltmain.sh.
  290. if test -f "$ltmain"; then
  291.   # See if we are running on zsh, and set the options which allow our commands through
  292.   # without removal of  escapes.
  293.   if test -n "${ZSH_VERSION+set}" ; then
  294.     setopt NO_GLOB_SUBST
  295.   fi
  296.   # Now quote all the things that may contain metacharacters while being
  297.   # careful not to overquote the AC_SUBSTed values.  We take copies of the
  298.   # variables and quote the copies for generation of the libtool script.
  299.   for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM 
  300.     SED SHELL STRIP 
  301.     libname_spec library_names_spec soname_spec extract_expsyms_cmds 
  302.     old_striplib striplib file_magic_cmd finish_cmds finish_eval 
  303.     deplibs_check_method reload_flag reload_cmds need_locks 
  304.     lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl 
  305.     lt_cv_sys_global_symbol_to_c_name_address 
  306.     sys_lib_search_path_spec sys_lib_dlsearch_path_spec 
  307.     old_postinstall_cmds old_postuninstall_cmds 
  308.     _LT_AC_TAGVAR(compiler, $1) 
  309.     _LT_AC_TAGVAR(CC, $1) 
  310.     _LT_AC_TAGVAR(LD, $1) 
  311.     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) 
  312.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) 
  313.     _LT_AC_TAGVAR(lt_prog_compiler_static, $1) 
  314.     _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) 
  315.     _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) 
  316.     _LT_AC_TAGVAR(thread_safe_flag_spec, $1) 
  317.     _LT_AC_TAGVAR(whole_archive_flag_spec, $1) 
  318.     _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) 
  319.     _LT_AC_TAGVAR(old_archive_cmds, $1) 
  320.     _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) 
  321.     _LT_AC_TAGVAR(predep_objects, $1) 
  322.     _LT_AC_TAGVAR(postdep_objects, $1) 
  323.     _LT_AC_TAGVAR(predeps, $1) 
  324.     _LT_AC_TAGVAR(postdeps, $1) 
  325.     _LT_AC_TAGVAR(compiler_lib_search_path, $1) 
  326.     _LT_AC_TAGVAR(archive_cmds, $1) 
  327.     _LT_AC_TAGVAR(archive_expsym_cmds, $1) 
  328.     _LT_AC_TAGVAR(postinstall_cmds, $1) 
  329.     _LT_AC_TAGVAR(postuninstall_cmds, $1) 
  330.     _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) 
  331.     _LT_AC_TAGVAR(allow_undefined_flag, $1) 
  332.     _LT_AC_TAGVAR(no_undefined_flag, $1) 
  333.     _LT_AC_TAGVAR(export_symbols_cmds, $1) 
  334.     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) 
  335.     _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) 
  336.     _LT_AC_TAGVAR(hardcode_libdir_separator, $1) 
  337.     _LT_AC_TAGVAR(hardcode_automatic, $1) 
  338.     _LT_AC_TAGVAR(module_cmds, $1) 
  339.     _LT_AC_TAGVAR(module_expsym_cmds, $1) 
  340.     _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) 
  341.     _LT_AC_TAGVAR(exclude_expsyms, $1) 
  342.     _LT_AC_TAGVAR(include_expsyms, $1); do
  343.     case $var in
  344.     _LT_AC_TAGVAR(old_archive_cmds, $1) | 
  345.     _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | 
  346.     _LT_AC_TAGVAR(archive_cmds, $1) | 
  347.     _LT_AC_TAGVAR(archive_expsym_cmds, $1) | 
  348.     _LT_AC_TAGVAR(module_cmds, $1) | 
  349.     _LT_AC_TAGVAR(module_expsym_cmds, $1) | 
  350.     _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | 
  351.     _LT_AC_TAGVAR(export_symbols_cmds, $1) | 
  352.     extract_expsyms_cmds | reload_cmds | finish_cmds | 
  353.     postinstall_cmds | postuninstall_cmds | 
  354.     old_postinstall_cmds | old_postuninstall_cmds | 
  355.     sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
  356.       # Double-quote double-evaled strings.
  357.       eval "lt_$var=\"`$echo "X$$var" | $Xsed -e "$double_quote_subst" -e "$sed_quote_subst" -e "$delay_variable_subst"`\""
  358.       ;;
  359.     *)
  360.       eval "lt_$var=\"`$echo "X$$var" | $Xsed -e "$sed_quote_subst"`\""
  361.       ;;
  362.     esac
  363.   done
  364.   case $lt_echo in
  365.   *'[$]0 --fallback-echo"')
  366.     lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'`
  367.     ;;
  368.   esac
  369. ifelse([$1], [],
  370.   [cfgfile="${ofile}T"
  371.   trap "$rm "$cfgfile"; exit 1" 1 2 15
  372.   $rm -f "$cfgfile"
  373.   AC_MSG_NOTICE([creating $ofile])],
  374.   [cfgfile="$ofile"])
  375.   cat <<__EOF__ >> "$cfgfile"
  376. ifelse([$1], [],
  377. [#! $SHELL
  378. # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
  379. # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
  380. # NOTE: Changes made to this file will be lost: look at ltmain.sh.
  381. #
  382. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
  383. # Free Software Foundation, Inc.
  384. #
  385. # This file is part of GNU Libtool:
  386. # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
  387. #
  388. # This program is free software; you can redistribute it and/or modify
  389. # it under the terms of the GNU General Public License as published by
  390. # the Free Software Foundation; either version 2 of the License, or
  391. # (at your option) any later version.
  392. #
  393. # This program is distributed in the hope that it will be useful, but
  394. # WITHOUT ANY WARRANTY; without even the implied warranty of
  395. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  396. # General Public License for more details.
  397. #
  398. # You should have received a copy of the GNU General Public License
  399. # along with this program; if not, write to the Free Software
  400. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  401. #
  402. # As a special exception to the GNU General Public License, if you
  403. # distribute this file as part of a program that contains a
  404. # configuration script generated by Autoconf, you may include it under
  405. # the same distribution terms that you use for the rest of that program.
  406. # A sed program that does not truncate output.
  407. SED=$lt_SED
  408. # Sed that helps us avoid accidentally triggering echo(1) options like -n.
  409. Xsed="$SED -e s/^X//"
  410. # The HP-UX ksh and POSIX shell print the target directory to stdout
  411. # if CDPATH is set.
  412. if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
  413. # The names of the tagged configurations supported by this script.
  414. available_tags=
  415. # ### BEGIN LIBTOOL CONFIG],
  416. [# ### BEGIN LIBTOOL TAG CONFIG: $tagname])
  417. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  418. # Shell to use when invoking shell scripts.
  419. SHELL=$lt_SHELL
  420. # Whether or not to build shared libraries.
  421. build_libtool_libs=$enable_shared
  422. # Whether or not to build static libraries.
  423. build_old_libs=$enable_static
  424. # Whether or not to add -lc for building shared libraries.
  425. build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)
  426. # Whether or not to disallow shared libs when runtime libs are static
  427. allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)
  428. # Whether or not to optimize for fast installation.
  429. fast_install=$enable_fast_install
  430. # The host system.
  431. host_alias=$host_alias
  432. host=$host
  433. # An echo program that does not interpret backslashes.
  434. echo=$lt_echo
  435. # The archiver.
  436. AR=$lt_AR
  437. AR_FLAGS=$lt_AR_FLAGS
  438. # A C compiler.
  439. LTCC=$lt_LTCC
  440. # A language-specific compiler.
  441. CC=$lt_[]_LT_AC_TAGVAR(compiler, $1)
  442. # Is the compiler the GNU C compiler?
  443. with_gcc=$_LT_AC_TAGVAR(GCC, $1)
  444. # An ERE matcher.
  445. EGREP=$lt_EGREP
  446. # The linker used to build libraries.
  447. LD=$lt_[]_LT_AC_TAGVAR(LD, $1)
  448. # Whether we need hard or soft links.
  449. LN_S=$lt_LN_S
  450. # A BSD-compatible nm program.
  451. NM=$lt_NM
  452. # A symbol stripping program
  453. STRIP=$lt_STRIP
  454. # Used to examine libraries when file_magic_cmd begins "file"
  455. MAGIC_CMD=$MAGIC_CMD
  456. # Used on cygwin: DLL creation program.
  457. DLLTOOL="$DLLTOOL"
  458. # Used on cygwin: object dumper.
  459. OBJDUMP="$OBJDUMP"
  460. # Used on cygwin: assembler.
  461. AS="$AS"
  462. # The name of the directory that contains temporary libtool files.
  463. objdir=$objdir
  464. # How to create reloadable object files.
  465. reload_flag=$lt_reload_flag
  466. reload_cmds=$lt_reload_cmds
  467. # How to pass a linker flag through the compiler.
  468. wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
  469. # Object file suffix (normally "o").
  470. objext="$ac_objext"
  471. # Old archive suffix (normally "a").
  472. libext="$libext"
  473. # Shared library suffix (normally ".so").
  474. shrext_cmds='$shrext_cmds'
  475. # Executable file suffix (normally "").
  476. exeext="$exeext"
  477. # Additional compiler flags for building library objects.
  478. pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)
  479. pic_mode=$pic_mode
  480. # What is the maximum length of a command?
  481. max_cmd_len=$lt_cv_sys_max_cmd_len
  482. # Does compiler simultaneously support -c and -o options?
  483. compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)
  484. # Must we lock files when doing compilation ?
  485. need_locks=$lt_need_locks
  486. # Do we need the lib prefix for modules?
  487. need_lib_prefix=$need_lib_prefix
  488. # Do we need a version for libraries?
  489. need_version=$need_version
  490. # Whether dlopen is supported.
  491. dlopen_support=$enable_dlopen
  492. # Whether dlopen of programs is supported.
  493. dlopen_self=$enable_dlopen_self
  494. # Whether dlopen of statically linked programs is supported.
  495. dlopen_self_static=$enable_dlopen_self_static
  496. # Compiler flag to prevent dynamic linking.
  497. link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1)
  498. # Compiler flag to turn off builtin functions.
  499. no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)
  500. # Compiler flag to allow reflexive dlopens.
  501. export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)
  502. # Compiler flag to generate shared objects directly from archives.
  503. whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1)
  504. # Compiler flag to generate thread-safe objects.
  505. thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1)
  506. # Library versioning type.
  507. version_type=$version_type
  508. # Format of library name prefix.
  509. libname_spec=$lt_libname_spec
  510. # List of archive names.  First name is the real one, the rest are links.
  511. # The last name is the one that the linker finds with -lNAME.
  512. library_names_spec=$lt_library_names_spec
  513. # The coded name of the library, if different from the real name.
  514. soname_spec=$lt_soname_spec
  515. # Commands used to build and install an old-style archive.
  516. RANLIB=$lt_RANLIB
  517. old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1)
  518. old_postinstall_cmds=$lt_old_postinstall_cmds
  519. old_postuninstall_cmds=$lt_old_postuninstall_cmds
  520. # Create an old-style archive from a shared archive.
  521. old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1)
  522. # Create a temporary old-style archive to link instead of a shared archive.
  523. old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)
  524. # Commands used to build and install a shared archive.
  525. archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1)
  526. archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1)
  527. postinstall_cmds=$lt_postinstall_cmds
  528. postuninstall_cmds=$lt_postuninstall_cmds
  529. # Commands used to build a loadable module (assumed same as above if empty)
  530. module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1)
  531. module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1)
  532. # Commands to strip libraries.
  533. old_striplib=$lt_old_striplib
  534. striplib=$lt_striplib
  535. # Dependencies to place before the objects being linked to create a
  536. # shared library.
  537. predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1)
  538. # Dependencies to place after the objects being linked to create a
  539. # shared library.
  540. postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1)
  541. # Dependencies to place before the objects being linked to create a
  542. # shared library.
  543. predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1)
  544. # Dependencies to place after the objects being linked to create a
  545. # shared library.
  546. postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1)
  547. # The library search path used internally by the compiler when linking
  548. # a shared library.
  549. compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1)
  550. # Method to check whether dependent libraries are shared objects.
  551. deplibs_check_method=$lt_deplibs_check_method
  552. # Command to use when deplibs_check_method == file_magic.
  553. file_magic_cmd=$lt_file_magic_cmd
  554. # Flag that allows shared libraries with undefined symbols to be built.
  555. allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1)
  556. # Flag that forces no undefined symbols.
  557. no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1)
  558. # Commands used to finish a libtool library installation in a directory.
  559. finish_cmds=$lt_finish_cmds
  560. # Same as above, but a single script fragment to be evaled but not shown.
  561. finish_eval=$lt_finish_eval
  562. # Take the output of nm and produce a listing of raw symbols and C names.
  563. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
  564. # Transform the output of nm in a proper C declaration
  565. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
  566. # Transform the output of nm in a C name address pair
  567. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
  568. # This is the shared library runtime path variable.
  569. runpath_var=$runpath_var
  570. # This is the shared library path variable.
  571. shlibpath_var=$shlibpath_var
  572. # Is shlibpath searched before the hard-coded library search path?
  573. shlibpath_overrides_runpath=$shlibpath_overrides_runpath
  574. # How to hardcode a shared library path into an executable.
  575. hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1)
  576. # Whether we should hardcode library paths into libraries.
  577. hardcode_into_libs=$hardcode_into_libs
  578. # Flag to hardcode $libdir into a binary during linking.
  579. # This must work even if $libdir does not exist.
  580. hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)
  581. # If ld is used when linking, flag to hardcode $libdir into
  582. # a binary during linking. This must work even if $libdir does
  583. # not exist.
  584. hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)
  585. # Whether we need a single -rpath flag with a separated argument.
  586. hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1)
  587. # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
  588. # resulting binary.
  589. hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1)
  590. # Set to yes if using the -LDIR flag during linking hardcodes DIR into the
  591. # resulting binary.
  592. hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1)
  593. # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
  594. # the resulting binary.
  595. hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)
  596. # Set to yes if building a shared library automatically hardcodes DIR into the library
  597. # and all subsequent libraries and executables linked against it.
  598. hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1)
  599. # Variables whose values should be saved in libtool wrapper scripts and
  600. # restored at relink time.
  601. variables_saved_for_relink="$variables_saved_for_relink"
  602. # Whether libtool must link a program against all its dependency libraries.
  603. link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1)
  604. # Compile-time system search path for libraries
  605. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
  606. # Run-time system search path for libraries
  607. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
  608. # Fix the shell variable $srcfile for the compiler.
  609. fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)"
  610. # Set to yes if exported symbols are required.
  611. always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1)
  612. # The commands to list exported symbols.
  613. export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1)
  614. # The commands to extract the exported symbol list from a shared archive.
  615. extract_expsyms_cmds=$lt_extract_expsyms_cmds
  616. # Symbols that should not be listed in the preloaded symbols.
  617. exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1)
  618. # Symbols that must always be exported.
  619. include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1)
  620. ifelse([$1],[],
  621. [# ### END LIBTOOL CONFIG],
  622. [# ### END LIBTOOL TAG CONFIG: $tagname])
  623. __EOF__
  624. ifelse([$1],[], [
  625.   case $host_os in
  626.   aix3*)
  627.     cat <<EOF >> "$cfgfile"
  628. # AIX sometimes has problems with the GCC collect2 program.  For some
  629. # reason, if we set the COLLECT_NAMES environment variable, the problems
  630. # vanish in a puff of smoke.
  631. if test "X${COLLECT_NAMES+set}" != Xset; then
  632.   COLLECT_NAMES=
  633.   export COLLECT_NAMES
  634. fi
  635. EOF
  636.     ;;
  637.   esac
  638.   # We use sed instead of cat because bash on DJGPP gets confused if
  639.   # if finds mixed CR/LF and LF-only lines.  Since sed operates in
  640.   # text mode, it properly converts lines to CR/LF.  This bash problem
  641.   # is reportedly fixed, but why not run on old versions too?
  642.   sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1)
  643.   mv -f "$cfgfile" "$ofile" || 
  644.     (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
  645.   chmod +x "$ofile"
  646. ])
  647. else
  648.   # If there is no Makefile yet, we rely on a make rule to execute
  649.   # `config.status --recheck' to rerun these tests and create the
  650.   # libtool script then.
  651.   ltmain_in=`echo $ltmain | sed -e 's/.sh$/.in/'`
  652.   if test -f "$ltmain_in"; then
  653.     test -f Makefile && make "$ltmain"
  654.   fi
  655. fi
  656. ])# AC_LIBTOOL_CONFIG
  657. # AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME])
  658. # -------------------------------------------
  659. AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI],
  660. [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
  661. _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
  662. if test "$GCC" = yes; then
  663.   _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
  664.   AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
  665.     lt_cv_prog_compiler_rtti_exceptions,
  666.     [-fno-rtti -fno-exceptions], [],
  667.     [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
  668. fi
  669. ])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI
  670. # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
  671. # ---------------------------------
  672. AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE],
  673. [AC_REQUIRE([AC_CANONICAL_HOST])
  674. AC_REQUIRE([AC_PROG_NM])
  675. AC_REQUIRE([AC_OBJEXT])
  676. # Check for command to grab the raw symbol name followed by C symbol from nm.
  677. AC_MSG_CHECKING([command to parse $NM output from $compiler object])
  678. AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
  679. [
  680. # These are sane defaults that work on at least a few old systems.
  681. # [They come from Ultrix.  What could be older than Ultrix?!! ;)]
  682. # Character class describing NM global symbol codes.
  683. symcode='[[BCDEGRST]]'
  684. # Regexp to match symbols that can be accessed directly from C.
  685. sympat='([[_A-Za-z]][[_A-Za-z0-9]]*)'
  686. # Transform the above into a raw symbol and a C symbol.
  687. symxfrm='1 23 3'
  688. # Transform an extracted symbol line into a proper C declaration
  689. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* (.*)$/extern int 1;/p'"
  690. # Transform an extracted symbol line into symbol name and symbol address
  691. lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: ([[^ ]]*) $/  {\"1\", (lt_ptr) 0},/p' -e 's/^$symcode ([[^ ]]*) ([[^ ]]*)$/  {"2", (lt_ptr) &2},/p'"
  692. # Define system-specific variables.
  693. case $host_os in
  694. aix*)
  695.   symcode='[[BCDT]]'
  696.   ;;
  697. cygwin* | mingw* | pw32*)
  698.   symcode='[[ABCDGISTW]]'
  699.   ;;
  700. hpux*) # Its linker distinguishes data from code symbols
  701.   if test "$host_cpu" = ia64; then
  702.     symcode='[[ABCDEGRST]]'
  703.   fi
  704.   lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* (.*)$/extern int 1();/p' -e 's/^$symcode* .* (.*)$/extern char 1;/p'"
  705.   lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: ([[^ ]]*) $/  {\"1\", (lt_ptr) 0},/p' -e 's/^$symcode* ([[^ ]]*) ([[^ ]]*)$/  {"2", (lt_ptr) &2},/p'"
  706.   ;;
  707. irix* | nonstopux*)
  708.   symcode='[[BCDEGRST]]'
  709.   ;;
  710. osf*)
  711.   symcode='[[BCDEGQRST]]'
  712.   ;;
  713. solaris* | sysv5*)
  714.   symcode='[[BDRT]]'
  715.   ;;
  716. sysv4)
  717.   symcode='[[DFNSTU]]'
  718.   ;;
  719. esac
  720. # Handle CRLF in mingw tool chain
  721. opt_cr=
  722. case $build_os in
  723. mingw*)
  724.   opt_cr=`echo 'x{0,1}' | tr x '15'` # option cr in regexp
  725.   ;;
  726. esac
  727. # If we're using GNU nm, then use its standard symbol codes.
  728. case `$NM -V 2>&1` in
  729. *GNU* | *'with BFD'*)
  730.   symcode='[[ABCDGIRSTW]]' ;;
  731. esac
  732. # Try without a prefix undercore, then with it.
  733. for ac_symprfx in "" "_"; do
  734.   # Write the raw and C identifiers.
  735.   lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[  ]]($symcode$symcode*)[[  ]][[  ]]*($ac_symprfx)$sympat$opt_cr$/$symxfrm/p'"
  736.   # Check to see that the pipe works correctly.
  737.   pipe_works=no
  738.   rm -f conftest*
  739.   cat > conftest.$ac_ext <<EOF
  740. #ifdef __cplusplus
  741. extern "C" {
  742. #endif
  743. char nm_test_var;
  744. void nm_test_func(){}
  745. #ifdef __cplusplus
  746. }
  747. #endif
  748. int main(){nm_test_var='a';nm_test_func();return(0);}
  749. EOF
  750.   if AC_TRY_EVAL(ac_compile); then
  751.     # Now try to grab the symbols.
  752.     nlist=conftest.nm
  753.     if AC_TRY_EVAL(NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist) && test -s "$nlist"; then
  754.       # Try sorting and uniquifying the output.
  755.       if sort "$nlist" | uniq > "$nlist"T; then
  756. mv -f "$nlist"T "$nlist"
  757.       else
  758. rm -f "$nlist"T
  759.       fi
  760.       # Make sure that we snagged all the symbols we need.
  761.       if grep ' nm_test_var$' "$nlist" >/dev/null; then
  762. if grep ' nm_test_func$' "$nlist" >/dev/null; then
  763.   cat <<EOF > conftest.$ac_ext
  764. #ifdef __cplusplus
  765. extern "C" {
  766. #endif
  767. EOF
  768.   # Now generate the symbol file.
  769.   eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext'
  770.   cat <<EOF >> conftest.$ac_ext
  771. #if defined (__STDC__) && __STDC__
  772. # define lt_ptr_t void *
  773. #else
  774. # define lt_ptr_t char *
  775. # define const
  776. #endif
  777. /* The mapping between symbol names and symbols. */
  778. const struct {
  779.   const char *name;
  780.   lt_ptr_t address;
  781. }
  782. lt_preloaded_symbols[[]] =
  783. {
  784. EOF
  785.   $SED "s/^$symcode$symcode* (.*) (.*)$/  {"2", (lt_ptr_t) &2},/" < "$nlist" | grep -v main >> conftest.$ac_ext
  786.   cat <<EOF >> conftest.$ac_ext
  787.   {0, (lt_ptr_t) 0}
  788. };
  789. #ifdef __cplusplus
  790. }
  791. #endif
  792. EOF
  793.   # Now try linking the two files.
  794.   mv conftest.$ac_objext conftstm.$ac_objext
  795.   lt_save_LIBS="$LIBS"
  796.   lt_save_CFLAGS="$CFLAGS"
  797.   LIBS="conftstm.$ac_objext"
  798.   CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
  799.   if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
  800.     pipe_works=yes
  801.   fi
  802.   LIBS="$lt_save_LIBS"
  803.   CFLAGS="$lt_save_CFLAGS"
  804. else
  805.   echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
  806. fi
  807.       else
  808. echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
  809.       fi
  810.     else
  811.       echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
  812.     fi
  813.   else
  814.     echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
  815.     cat conftest.$ac_ext >&5
  816.   fi
  817.   rm -f conftest* conftst*
  818.   # Do not use the global_symbol_pipe unless it works.
  819.   if test "$pipe_works" = yes; then
  820.     break
  821.   else
  822.     lt_cv_sys_global_symbol_pipe=
  823.   fi
  824. done
  825. ])
  826. if test -z "$lt_cv_sys_global_symbol_pipe"; then
  827.   lt_cv_sys_global_symbol_to_cdecl=
  828. fi
  829. if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
  830.   AC_MSG_RESULT(failed)
  831. else
  832.   AC_MSG_RESULT(ok)
  833. fi
  834. ]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
  835. # AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME])
  836. # ---------------------------------------
  837. AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC],
  838. [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)=
  839. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
  840. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)=
  841. AC_MSG_CHECKING([for $compiler option to produce PIC])
  842.  ifelse([$1],[CXX],[
  843.   # C++ specific cases for pic, static, wl, etc.
  844.   if test "$GXX" = yes; then
  845.     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  846.     _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
  847.     case $host_os in
  848.     aix*)
  849.       # All AIX code is PIC.
  850.       if test "$host_cpu" = ia64; then
  851. # AIX 5 now supports IA64 processor
  852. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  853.       fi
  854.       ;;
  855.     amigaos*)
  856.       # FIXME: we need at least 68020 code to build shared libraries, but
  857.       # adding the `-m68020' flag to GCC prevents building anything better,
  858.       # like `-m68040'.
  859.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
  860.       ;;
  861.     beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
  862.       # PIC is the default for these OSes.
  863.       ;;
  864.     mingw* | os2* | pw32*)
  865.       # This hack is so that the source file can tell whether it is being
  866.       # built for inclusion in a dll (and should export symbols for example).
  867.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
  868.       ;;
  869.     darwin* | rhapsody*)
  870.       # PIC is the default on this platform
  871.       # Common symbols not allowed in MH_DYLIB files
  872.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
  873.       ;;
  874.     *djgpp*)
  875.       # DJGPP does not support shared libraries at all
  876.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
  877.       ;;
  878.     sysv4*MP*)
  879.       if test -d /usr/nec; then
  880. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
  881.       fi
  882.       ;;
  883.     hpux*)
  884.       # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
  885.       # not for PA HP-UX.
  886.       case "$host_cpu" in
  887.       hppa*64*|ia64*)
  888. ;;
  889.       *)
  890. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  891. ;;
  892.       esac
  893.       ;;
  894.     *)
  895.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  896.       ;;
  897.     esac
  898.   else
  899.     case $host_os in
  900.       aix4* | aix5*)
  901. # All AIX code is PIC.
  902. if test "$host_cpu" = ia64; then
  903.   # AIX 5 now supports IA64 processor
  904.   _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  905. else
  906.   _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
  907. fi
  908. ;;
  909.       chorus*)
  910. case $cc_basename in
  911. cxch68)
  912.   # Green Hills C++ Compiler
  913.   # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
  914.   ;;
  915. esac
  916. ;;
  917.       dgux*)
  918. case $cc_basename in
  919.   ec++)
  920.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  921.     ;;
  922.   ghcx)
  923.     # Green Hills C++ Compiler
  924.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  925.     ;;
  926.   *)
  927.     ;;
  928. esac
  929. ;;
  930.       freebsd* | kfreebsd*-gnu)
  931. # FreeBSD uses GNU C++
  932. ;;
  933.       hpux9* | hpux10* | hpux11*)
  934. case $cc_basename in
  935.   CC)
  936.     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  937.     _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive"
  938.     if test "$host_cpu" != ia64; then
  939.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  940.     fi
  941.     ;;
  942.   aCC)
  943.     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  944.     _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive"
  945.     case "$host_cpu" in
  946.     hppa*64*|ia64*)
  947.       # +Z the default
  948.       ;;
  949.     *)
  950.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  951.       ;;
  952.     esac
  953.     ;;
  954.   *)
  955.     ;;
  956. esac
  957. ;;
  958.       irix5* | irix6* | nonstopux*)
  959. case $cc_basename in
  960.   CC)
  961.     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  962.     _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  963.     # CC pic flag -KPIC is the default.
  964.     ;;
  965.   *)
  966.     ;;
  967. esac
  968. ;;
  969.       linux*)
  970. case $cc_basename in
  971.   KCC)
  972.     # KAI C++ Compiler
  973.     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
  974.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  975.     ;;
  976.   icpc)
  977.     # Intel C++
  978.     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  979.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  980.     _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
  981.     ;;
  982.   cxx)
  983.     # Compaq C++
  984.     # Make sure the PIC flag is empty.  It appears that all Alpha
  985.     # Linux and Compaq Tru64 Unix objects are PIC.
  986.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
  987.     _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  988.     ;;
  989.   *)
  990.     ;;
  991. esac
  992. ;;
  993.       lynxos*)
  994. ;;
  995.       m88k*)
  996. ;;
  997.       mvs*)
  998. case $cc_basename in
  999.   cxx)
  1000.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
  1001.     ;;
  1002.   *)
  1003.     ;;
  1004. esac
  1005. ;;
  1006.       netbsd* | netbsdelf*-gnu | knetbsd*-gnu)
  1007. ;;
  1008.       osf3* | osf4* | osf5*)
  1009. case $cc_basename in
  1010.   KCC)
  1011.     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
  1012.     ;;
  1013.   RCC)
  1014.     # Rational C++ 2.4.1
  1015.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  1016.     ;;
  1017.   cxx)
  1018.     # Digital/Compaq C++
  1019.     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  1020.     # Make sure the PIC flag is empty.  It appears that all Alpha
  1021.     # Linux and Compaq Tru64 Unix objects are PIC.
  1022.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
  1023.     _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  1024.     ;;
  1025.   *)
  1026.     ;;
  1027. esac
  1028. ;;
  1029.       psos*)
  1030. ;;
  1031.       sco*)
  1032. case $cc_basename in
  1033.   CC)
  1034.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  1035.     ;;
  1036.   *)
  1037.     ;;
  1038. esac
  1039. ;;
  1040.       solaris*)
  1041. case $cc_basename in
  1042.   CC)
  1043.     # Sun C++ 4.2, 5.x and Centerline C++
  1044.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  1045.     _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  1046.     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  1047.     ;;
  1048.   gcx)
  1049.     # Green Hills C++ Compiler
  1050.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
  1051.     ;;
  1052.   *)
  1053.     ;;
  1054. esac
  1055. ;;
  1056.       sunos4*)
  1057. case $cc_basename in
  1058.   CC)
  1059.     # Sun C++ 4.x
  1060.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  1061.     _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  1062.     ;;
  1063.   lcc)
  1064.     # Lucid
  1065.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  1066.     ;;
  1067.   *)
  1068.     ;;
  1069. esac
  1070. ;;
  1071.       tandem*)
  1072. case $cc_basename in
  1073.   NCC)
  1074.     # NonStop-UX NCC 3.20
  1075.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  1076.     ;;
  1077.   *)
  1078.     ;;
  1079. esac
  1080. ;;
  1081.       unixware*)
  1082. ;;
  1083.       vxworks*)
  1084. ;;
  1085.       *)
  1086. _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  1087. ;;
  1088.     esac
  1089.   fi
  1090. ],
  1091. [
  1092.   if test "$GCC" = yes; then
  1093.     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  1094.     _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
  1095.     case $host_os in
  1096.       aix*)
  1097.       # All AIX code is PIC.
  1098.       if test "$host_cpu" = ia64; then
  1099. # AIX 5 now supports IA64 processor
  1100. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  1101.       fi
  1102.       ;;
  1103.     amigaos*)
  1104.       # FIXME: we need at least 68020 code to build shared libraries, but
  1105.       # adding the `-m68020' flag to GCC prevents building anything better,
  1106.       # like `-m68040'.
  1107.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
  1108.       ;;
  1109.     beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
  1110.       # PIC is the default for these OSes.
  1111.       ;;
  1112.     mingw* | pw32* | os2*)
  1113.       # This hack is so that the source file can tell whether it is being
  1114.       # built for inclusion in a dll (and should export symbols for example).
  1115.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
  1116.       ;;
  1117.     darwin* | rhapsody*)
  1118.       # PIC is the default on this platform
  1119.       # Common symbols not allowed in MH_DYLIB files
  1120.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
  1121.       ;;
  1122.     msdosdjgpp*)
  1123.       # Just because we use GCC doesn't mean we suddenly get shared libraries
  1124.       # on systems that don't support them.
  1125.       _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  1126.       enable_shared=no
  1127.       ;;
  1128.     sysv4*MP*)
  1129.       if test -d /usr/nec; then
  1130. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
  1131.       fi
  1132.       ;;
  1133.     hpux*)
  1134.       # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
  1135.       # not for PA HP-UX.
  1136.       case "$host_cpu" in
  1137.       hppa*64*|ia64*)
  1138. # +Z the default
  1139. ;;
  1140.       *)
  1141. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  1142. ;;
  1143.       esac
  1144.       ;;
  1145.     *)
  1146.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  1147.       ;;
  1148.     esac
  1149.   else
  1150.     # PORTME Check for flag to pass linker flags through the system compiler.
  1151.     case $host_os in
  1152.     aix*)
  1153.       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  1154.       if test "$host_cpu" = ia64; then
  1155. # AIX 5 now supports IA64 processor
  1156. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  1157.       else
  1158. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
  1159.       fi
  1160.       ;;
  1161.     mingw* | pw32* | os2*)
  1162.       # This hack is so that the source file can tell whether it is being
  1163.       # built for inclusion in a dll (and should export symbols for example).
  1164.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
  1165.       ;;
  1166.     hpux9* | hpux10* | hpux11*)
  1167.       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  1168.       # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
  1169.       # not for PA HP-UX.
  1170.       case "$host_cpu" in
  1171.       hppa*64*|ia64*)
  1172. # +Z the default
  1173. ;;
  1174.       *)
  1175. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  1176. ;;
  1177.       esac
  1178.       # Is there a better lt_prog_compiler_static that works with the bundled CC?
  1179.       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
  1180.       ;;
  1181.     irix5* | irix6* | nonstopux*)
  1182.       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  1183.       # PIC (with -KPIC) is the default.
  1184.       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  1185.       ;;
  1186.     newsos6)
  1187.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  1188.       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  1189.       ;;
  1190.     linux*)
  1191.       case $CC in
  1192.       icc* | ecc*)
  1193. _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  1194. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  1195. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
  1196.         ;;
  1197.       ccc*)
  1198.         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  1199.         # All Alpha code is PIC.
  1200.         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  1201.         ;;
  1202.       esac
  1203.       ;;
  1204.     osf3* | osf4* | osf5*)
  1205.       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  1206.       # All OSF/1 code is PIC.
  1207.       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  1208.       ;;
  1209.     sco3.2v5*)
  1210.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kpic'
  1211.       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-dn'
  1212.       ;;
  1213.     solaris*)
  1214.       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  1215.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  1216.       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  1217.       ;;
  1218.     sunos4*)
  1219.       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  1220.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
  1221.       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  1222.       ;;
  1223.     sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
  1224.       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  1225.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  1226.       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  1227.       ;;
  1228.     sysv4*MP*)
  1229.       if test -d /usr/nec ;then
  1230. _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
  1231. _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  1232.       fi
  1233.       ;;
  1234.     uts4*)
  1235.       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  1236.       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  1237.       ;;
  1238.     *)
  1239.       _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  1240.       ;;
  1241.     esac
  1242.   fi
  1243. ])
  1244. AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)])
  1245. #
  1246. # Check to make sure the PIC flag actually works.
  1247. #
  1248. if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then
  1249.   AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works],
  1250.     _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1),
  1251.     [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [],
  1252.     [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in
  1253.      "" | " "*) ;;
  1254.      *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;;
  1255.      esac],
  1256.     [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
  1257.      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
  1258. fi
  1259. case "$host_os" in
  1260.   # For platforms which do not support PIC, -DPIC is meaningless:
  1261.   *djgpp*)
  1262.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
  1263.     ;;
  1264.   *)
  1265.     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])"
  1266.     ;;
  1267. esac
  1268. ])
  1269. # AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME])
  1270. # ------------------------------------
  1271. # See if the linker supports building shared libraries.
  1272. AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS],
  1273. [AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
  1274. ifelse([$1],[CXX],[
  1275.   _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '''s/.* //''' | sort | uniq > $export_symbols'
  1276.   case $host_os in
  1277.   aix4* | aix5*)
  1278.     # If we're using GNU nm, then we don't want the "-C" option.
  1279.     # -C means demangle to AIX nm, but means don't demangle with GNU nm
  1280.     if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
  1281.       _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '''{ if ((([$]2 == "T") || ([$]2 == "D") || ([$]2 == "B")) && ([substr]([$]3,1,1) != ".")) { print [$]3 } }''' | sort -u > $export_symbols'
  1282.     else
  1283.       _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '''{ if ((([$]2 == "T") || ([$]2 == "D") || ([$]2 == "B")) && ([substr]([$]3,1,1) != ".")) { print [$]3 } }''' | sort -u > $export_symbols'
  1284.     fi
  1285.     ;;
  1286.   pw32*)
  1287.     _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
  1288.   ;;
  1289.   cygwin* | mingw*)
  1290.     _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '''/^[[BCDGS]] /s/.* ([[^ ]]*)/1 DATA/''' | $SED -e '''/^[[AITW]] /s/.* //''' | sort | uniq > $export_symbols'
  1291.   ;;
  1292.   linux*)
  1293.     _LT_AC_TAGVAR(link_all_deplibs, $1)=no
  1294.   ;;
  1295.   *)
  1296.     _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '''s/.* //''' | sort | uniq > $export_symbols'
  1297.   ;;
  1298.   esac
  1299. ],[
  1300.   runpath_var=
  1301.   _LT_AC_TAGVAR(allow_undefined_flag, $1)=
  1302.   _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  1303.   _LT_AC_TAGVAR(archive_cmds, $1)=
  1304.   _LT_AC_TAGVAR(archive_expsym_cmds, $1)=
  1305.   _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)=
  1306.   _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)=
  1307.   _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
  1308.   _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
  1309.   _LT_AC_TAGVAR(thread_safe_flag_spec, $1)=
  1310.   _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
  1311.   _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
  1312.   _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
  1313.   _LT_AC_TAGVAR(hardcode_direct, $1)=no
  1314.   _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
  1315.   _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  1316.   _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
  1317.   _LT_AC_TAGVAR(hardcode_automatic, $1)=no
  1318.   _LT_AC_TAGVAR(module_cmds, $1)=
  1319.   _LT_AC_TAGVAR(module_expsym_cmds, $1)=
  1320.   _LT_AC_TAGVAR(always_export_symbols, $1)=no
  1321.   _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '''s/.* //''' | sort | uniq > $export_symbols'
  1322.   # include_expsyms should be a list of space-separated symbols to be *always*
  1323.   # included in the symbol list
  1324.   _LT_AC_TAGVAR(include_expsyms, $1)=
  1325.   # exclude_expsyms can be an extended regexp of symbols to exclude
  1326.   # it will be wrapped by ` (' and `)$', so one must not match beginning or
  1327.   # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
  1328.   # as well as any symbol that contains `d'.
  1329.   _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_"
  1330.   # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
  1331.   # platforms (ab)use it in PIC code, but their linkers get confused if
  1332.   # the symbol is explicitly referenced.  Since portable code cannot
  1333.   # rely on this symbol name, it's probably fine to never include it in
  1334.   # preloaded symbol tables.
  1335.   extract_expsyms_cmds=
  1336.   case $host_os in
  1337.   cygwin* | mingw* | pw32*)
  1338.     # FIXME: the MSVC++ port hasn't been tested in a loooong time
  1339.     # When not using gcc, we currently assume that we are using
  1340.     # Microsoft Visual C++.
  1341.     if test "$GCC" != yes; then
  1342.       with_gnu_ld=no
  1343.     fi
  1344.     ;;
  1345.   openbsd*)
  1346.     with_gnu_ld=no
  1347.     ;;
  1348.   esac
  1349.   _LT_AC_TAGVAR(ld_shlibs, $1)=yes
  1350.   if test "$with_gnu_ld" = yes; then
  1351.     # If archive_cmds runs LD, not CC, wlarc should be empty
  1352.     wlarc='${wl}'
  1353.     # See if GNU ld supports shared libraries.
  1354.     case $host_os in
  1355.     aix3* | aix4* | aix5*)
  1356.       # On AIX/PPC, the GNU linker is very broken
  1357.       if test "$host_cpu" != ia64; then
  1358. _LT_AC_TAGVAR(ld_shlibs, $1)=no
  1359. cat <<EOF 1>&2
  1360. *** Warning: the GNU linker, at least up to release 2.9.1, is reported
  1361. *** to be unable to reliably create shared libraries on AIX.
  1362. *** Therefore, libtool is disabling shared libraries support.  If you
  1363. *** really care for shared libraries, you may want to modify your PATH
  1364. *** so that a non-GNU linker is found, and then restart.
  1365. EOF
  1366.       fi
  1367.       ;;
  1368.     amigaos*)
  1369.       _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
  1370.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  1371.       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
  1372.       # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
  1373.       # that the semantics of dynamic libraries on AmigaOS, at least up
  1374.       # to version 4, is to share data among multiple programs linked
  1375.       # with the same dynamic library.  Since this doesn't match the
  1376.       # behavior of shared libraries on other platforms, we can't use
  1377.       # them.
  1378.       _LT_AC_TAGVAR(ld_shlibs, $1)=no
  1379.       ;;
  1380.     beos*)
  1381.       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
  1382. _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
  1383. # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
  1384. # support --undefined.  This deserves some investigation.  FIXME
  1385. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  1386.       else
  1387. _LT_AC_TAGVAR(ld_shlibs, $1)=no
  1388.       fi
  1389.       ;;
  1390.     cygwin* | mingw* | pw32*)
  1391.       # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
  1392.       # as there is no search path for DLLs.
  1393.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  1394.       _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
  1395.       _LT_AC_TAGVAR(always_export_symbols, $1)=no
  1396.       _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  1397.       _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '''/^[[BCDGS]] /s/.* ([[^ ]]*)/1 DATA/''' | $SED -e '''/^[[AITW]] /s/.* //''' | sort | uniq > $export_symbols'
  1398.       if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
  1399.         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib'
  1400. # If the export-symbols file already is a .def file (1st line
  1401. # is EXPORTS), use it as is; otherwise, prepend...
  1402. _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  1403.   cp $export_symbols $output_objdir/$soname.def;
  1404. else
  1405.   echo EXPORTS > $output_objdir/$soname.def;
  1406.   cat $export_symbols >> $output_objdir/$soname.def;
  1407. fi~
  1408. $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000  ${wl}--out-implib,$lib'
  1409.       else
  1410. ld_shlibs=no
  1411.       fi
  1412.       ;;
  1413.     netbsd* | netbsdelf*-gnu | knetbsd*-gnu)
  1414.       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
  1415. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
  1416. wlarc=
  1417.       else
  1418. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  1419. _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  1420.       fi
  1421.       ;;
  1422.     solaris* | sysv5*)
  1423.       if $LD -v 2>&1 | grep 'BFD 2.8' > /dev/null; then
  1424. _LT_AC_TAGVAR(ld_shlibs, $1)=no
  1425. cat <<EOF 1>&2
  1426. *** Warning: The releases 2.8.* of the GNU linker cannot reliably
  1427. *** create shared libraries on Solaris systems.  Therefore, libtool
  1428. *** is disabling shared libraries support.  We urge you to upgrade GNU
  1429. *** binutils to release 2.9.1 or newer.  Another option is to modify
  1430. *** your PATH or compiler configuration so that the native linker is
  1431. *** used, and then restart.
  1432. EOF
  1433.       elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
  1434. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  1435. _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  1436.       else
  1437. _LT_AC_TAGVAR(ld_shlibs, $1)=no
  1438.       fi
  1439.       ;;
  1440.     sunos4*)
  1441.       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  1442.       wlarc=
  1443.       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1444.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1445.       ;;
  1446.   linux*)
  1447.     if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
  1448.         tmp_archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  1449. _LT_AC_TAGVAR(archive_cmds, $1)="$tmp_archive_cmds"
  1450.       supports_anon_versioning=no
  1451.       case `$LD -v 2>/dev/null` in
  1452.         * [01].* | * 2.[[0-9]].* | * 2.10.*) ;; # catch versions < 2.11
  1453.         * 2.11.93.0.2 *) supports_anon_versioning=yes ;; # RH7.3 ...
  1454.         * 2.11.92.0.12 *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
  1455.         * 2.11.*) ;; # other 2.11 versions
  1456.         *) supports_anon_versioning=yes ;;
  1457.       esac
  1458.       if test $supports_anon_versioning = yes; then
  1459.         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~
  1460. cat $export_symbols | sed -e "s/(.*)/1;/" >> $output_objdir/$libname.ver~
  1461. $echo "local: *; };" >> $output_objdir/$libname.ver~
  1462.         $CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
  1463.       else
  1464.         _LT_AC_TAGVAR(archive_expsym_cmds, $1)="$tmp_archive_cmds"
  1465.       fi
  1466.       _LT_AC_TAGVAR(link_all_deplibs, $1)=no
  1467.     else
  1468.       _LT_AC_TAGVAR(ld_shlibs, $1)=no
  1469.     fi
  1470.     ;;
  1471.     *)
  1472.       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
  1473. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  1474. _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  1475.       else
  1476. _LT_AC_TAGVAR(ld_shlibs, $1)=no
  1477.       fi
  1478.       ;;
  1479.     esac
  1480.     if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = yes; then
  1481.       runpath_var=LD_RUN_PATH
  1482.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
  1483.       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  1484.       # ancient GNU ld didn't support --whole-archive et. al.
  1485.       if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
  1486.   _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  1487.       else
  1488.    _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
  1489.       fi
  1490.     fi
  1491.   else
  1492.     # PORTME fill in a description of your system's linker (not GNU ld)
  1493.     case $host_os in
  1494.     aix3*)
  1495.       _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
  1496.       _LT_AC_TAGVAR(always_export_symbols, $1)=yes
  1497.       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
  1498.       # Note: this linker hardcodes the directories in LIBPATH if there
  1499.       # are no directories specified by -L.
  1500.       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
  1501.       if test "$GCC" = yes && test -z "$link_static_flag"; then
  1502. # Neither direct hardcoding nor static linking is supported with a
  1503. # broken collect2.
  1504. _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
  1505.       fi
  1506.       ;;
  1507.     aix4* | aix5*)
  1508.       if test "$host_cpu" = ia64; then
  1509. # On IA64, the linker does run time linking by default, so we don't
  1510. # have to do anything special.
  1511. aix_use_runtimelinking=no
  1512. exp_sym_flag='-Bexport'
  1513. no_entry_flag=""
  1514.       else
  1515. # If we're using GNU nm, then we don't want the "-C" option.
  1516. # -C means demangle to AIX nm, but means don't demangle with GNU nm
  1517. if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
  1518.   _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '''{ if ((([$]2 == "T") || ([$]2 == "D") || ([$]2 == "B")) && ([substr]([$]3,1,1) != ".")) { print [$]3 } }''' | sort -u > $export_symbols'
  1519. else
  1520.   _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '''{ if ((([$]2 == "T") || ([$]2 == "D") || ([$]2 == "B")) && ([substr]([$]3,1,1) != ".")) { print [$]3 } }''' | sort -u > $export_symbols'
  1521. fi
  1522. aix_use_runtimelinking=no
  1523. # Test if we are trying to use run time linking or normal
  1524. # AIX style linking. If -brtl is somewhere in LDFLAGS, we
  1525. # need to do runtime linking.
  1526. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*)
  1527.   for ld_flag in $LDFLAGS; do
  1528.      if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
  1529.        aix_use_runtimelinking=yes
  1530.        break
  1531.      fi
  1532.   done
  1533. esac
  1534. exp_sym_flag='-bexport'
  1535. no_entry_flag='-bnoentry'
  1536.       fi
  1537.       # When large executables or shared objects are built, AIX ld can
  1538.       # have problems creating the table of contents.  If linking a library
  1539.       # or program results in "error TOC overflow" add -mminimal-toc to
  1540.       # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
  1541.       # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
  1542.       _LT_AC_TAGVAR(archive_cmds, $1)=''
  1543.       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1544.       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
  1545.       _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
  1546.       if test "$GCC" = yes; then
  1547. case $host_os in aix4.[012]|aix4.[012].*)
  1548. # We only want to do this on AIX 4.2 and lower, the check
  1549. # below for broken collect2 doesn't work under 4.3+
  1550.   collect2name=`${CC} -print-prog-name=collect2`
  1551.   if test -f "$collect2name" && 
  1552.       strings "$collect2name" | grep resolve_lib_name >/dev/null
  1553.   then
  1554.      # We have reworked collect2
  1555.      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1556.   else
  1557.      # We have old collect2
  1558.      _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
  1559.      # It fails to find uninstalled libraries when the uninstalled
  1560.      # path is not listed in the libpath.  Setting hardcode_minus_L
  1561.      # to unsupported forces relinking
  1562.      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
  1563.      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  1564.      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
  1565.   fi
  1566. esac
  1567. shared_flag='-shared'
  1568.       else
  1569. # not using gcc
  1570. if test "$host_cpu" = ia64; then
  1571.    # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
  1572.    # chokes on -Wl,-G. The following line is correct:
  1573.   shared_flag='-G'
  1574. else
  1575.    if test "$aix_use_runtimelinking" = yes; then
  1576.     shared_flag='${wl}-G'
  1577.   else
  1578.     shared_flag='${wl}-bM:SRE'
  1579.    fi
  1580. fi
  1581.       fi
  1582.       # It seems that -bexpall does not export symbols beginning with
  1583.       # underscore (_), so it is better to generate a list of symbols to export.
  1584.       _LT_AC_TAGVAR(always_export_symbols, $1)=yes
  1585.       if test "$aix_use_runtimelinking" = yes; then
  1586. # Warning - without using the other runtime loading flags (-brtl),
  1587. # -berok will link without error, but may produce a broken library.
  1588. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
  1589.        # Determine the default libpath from the value encoded in an empty executable.
  1590.        _LT_AC_SYS_LIBPATH_AIX
  1591.        _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  1592. _LT_AC_TAGVAR(archive_expsym_cmds, $1)="$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"${wl}$no_entry_flag ${wl}$exp_sym_flag:$export_symbols $shared_flag"
  1593.        else
  1594. if test "$host_cpu" = ia64; then
  1595.   _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
  1596.   _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
  1597.   _LT_AC_TAGVAR(archive_expsym_cmds, $1)="$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"${wl}$no_entry_flag ${wl}$exp_sym_flag:$export_symbols"
  1598. else
  1599.  # Determine the default libpath from the value encoded in an empty executable.
  1600.  _LT_AC_SYS_LIBPATH_AIX
  1601.  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  1602.   # Warning - without using the other run time loading flags,
  1603.   # -berok will link without error, but may produce a broken library.
  1604.   _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
  1605.   _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
  1606.   # -bexpall does not export symbols beginning with underscore (_)
  1607.   _LT_AC_TAGVAR(always_export_symbols, $1)=yes
  1608.   # Exported symbols can be pulled into shared objects from archives
  1609.   _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' '
  1610.   _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
  1611.   # This is similar to how AIX traditionally builds it's shared libraries.
  1612.   _LT_AC_TAGVAR(archive_expsym_cmds, $1)="$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
  1613. fi
  1614.       fi
  1615.       ;;
  1616.     amigaos*)
  1617.       _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
  1618.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  1619.       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
  1620.       # see comment about different semantics on the GNU ld section
  1621.       _LT_AC_TAGVAR(ld_shlibs, $1)=no
  1622.       ;;
  1623.     bsdi4*)
  1624.       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
  1625.       ;;
  1626.     cygwin* | mingw* | pw32*)
  1627.       # When not using gcc, we currently assume that we are using
  1628.       # Microsoft Visual C++.
  1629.       # hardcode_libdir_flag_spec is actually meaningless, as there is
  1630.       # no search path for DLLs.
  1631.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
  1632.       _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
  1633.       # Tell ltmain to make .lib files, not .a files.
  1634.       libext=lib
  1635.       # Tell ltmain to make .dll files, not .so files.
  1636.       shrext_cmds=".dll"
  1637.       # FIXME: Setting linknames here is a bad hack.
  1638.       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '''s/ -lc$//'''` -link -dll~linknames='
  1639.       # The linker will automatically build a .lib file if we build a DLL.
  1640.       _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true'
  1641.       # FIXME: Should let the user specify the lib program.
  1642.       _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs'
  1643.       fix_srcfile_path='`cygpath -w "$srcfile"`'
  1644.       _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  1645.       ;;
  1646.     darwin* | rhapsody*)
  1647.     if test "$GXX" = yes ; then
  1648.       _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
  1649.       case "$host_os" in
  1650.       rhapsody* | darwin1.[[012]])
  1651. _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined suppress'
  1652. ;;
  1653.       *) # Darwin 1.3 on
  1654.       if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
  1655.        _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress'
  1656.       else
  1657.         case ${MACOSX_DEPLOYMENT_TARGET} in
  1658.           10.[[012]])
  1659.             _LT_AC_TAGVAR(allow_undefined_flag, $1)='-flat_namespace -undefined suppress'
  1660.             ;;
  1661.           10.*)
  1662.             _LT_AC_TAGVAR(allow_undefined_flag, $1)='-undefined dynamic_lookup'
  1663.             ;;
  1664.         esac
  1665.       fi
  1666. ;;
  1667.       esac
  1668.      lt_int_apple_cc_single_mod=no
  1669.      output_verbose_link_cmd='echo'
  1670.      if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then
  1671.        lt_int_apple_cc_single_mod=yes
  1672.      fi
  1673.      if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
  1674.        _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
  1675.      else
  1676.         _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 $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
  1677.       fi
  1678.       _LT_AC_TAGVAR(module_cmds, $1)='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
  1679.       # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's
  1680.         if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
  1681.           _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 $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
  1682.         else
  1683.           _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 $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
  1684.         fi
  1685.           _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 $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
  1686.       _LT_AC_TAGVAR(hardcode_direct, $1)=no
  1687.       _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
  1688.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  1689.       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-all_load $convenience'
  1690.       _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
  1691.     else
  1692.       _LT_AC_TAGVAR(ld_shlibs, $1)=no
  1693.     fi
  1694.       ;;
  1695.     dgux*)
  1696.       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  1697.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  1698.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1699.       ;;
  1700.     freebsd1*)
  1701.       _LT_AC_TAGVAR(ld_shlibs, $1)=no
  1702.       ;;
  1703.     # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
  1704.     # support.  Future versions do this automatically, but an explicit c++rt0.o
  1705.     # does not break anything, and helps significantly (at the cost of a little
  1706.     # extra space).
  1707.     freebsd2.2*)
  1708.       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
  1709.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  1710.       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1711.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1712.       ;;
  1713.     # Unfortunately, older versions of FreeBSD 2 do not have this feature.
  1714.     freebsd2*)
  1715.       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  1716.       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1717.       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
  1718.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1719.       ;;
  1720.     # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
  1721.     freebsd* | kfreebsd*-gnu)
  1722.       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
  1723.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  1724.       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1725.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1726.       ;;
  1727.     hpux9*)
  1728.       if test "$GCC" = yes; then
  1729. _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
  1730.       else
  1731. _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
  1732.       fi
  1733.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  1734.       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
  1735.       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1736.       # hardcode_minus_L: Not really in the search PATH,
  1737.       # but as the default location of the library.
  1738.       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
  1739.       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  1740.       ;;
  1741.     hpux10* | hpux11*)
  1742.       if test "$GCC" = yes -a "$with_gnu_ld" = no; then
  1743. case "$host_cpu" in
  1744. hppa*64*|ia64*)
  1745.   _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  1746.   ;;
  1747. *)
  1748.   _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
  1749.   ;;
  1750. esac
  1751.       else
  1752. case "$host_cpu" in
  1753. hppa*64*|ia64*)
  1754.   _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags'
  1755.   ;;
  1756. *)
  1757.   _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
  1758.   ;;
  1759. esac
  1760.       fi
  1761.       if test "$with_gnu_ld" = no; then
  1762. case "$host_cpu" in
  1763. hppa*64*)
  1764.   _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  1765.   _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
  1766.   _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
  1767.   _LT_AC_TAGVAR(hardcode_direct, $1)=no
  1768.   _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1769.   ;;
  1770. ia64*)
  1771.   _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  1772.   _LT_AC_TAGVAR(hardcode_direct, $1)=no
  1773.   _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1774.   # hardcode_minus_L: Not really in the search PATH,
  1775.   # but as the default location of the library.
  1776.   _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
  1777.   ;;
  1778. *)
  1779.   _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  1780.   _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
  1781.   _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1782.   _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  1783.   # hardcode_minus_L: Not really in the search PATH,
  1784.   # but as the default location of the library.
  1785.   _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
  1786.   ;;
  1787. esac
  1788.       fi
  1789.       ;;
  1790.     irix5* | irix6* | nonstopux*)
  1791.       if test "$GCC" = yes; then
  1792. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  1793.       else
  1794. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
  1795. _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
  1796.       fi
  1797.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  1798.       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
  1799.       _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
  1800.       ;;
  1801.     netbsd* | netbsdelf*-gnu | knetbsd*-gnu)
  1802.       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
  1803. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
  1804.       else
  1805. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
  1806.       fi
  1807.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  1808.       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1809.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1810.       ;;
  1811.     newsos6)
  1812.       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  1813.       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1814.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  1815.       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
  1816.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1817.       ;;
  1818.     openbsd*)
  1819.       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1820.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1821.       if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  1822. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
  1823. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  1824. _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  1825.       else
  1826.        case $host_os in
  1827.  openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
  1828.    _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  1829.    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  1830.    ;;
  1831.  *)
  1832.    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
  1833.    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  1834.    ;;
  1835.        esac
  1836.       fi
  1837.       ;;
  1838.     os2*)
  1839.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  1840.       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
  1841.       _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
  1842.       _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION "$libname"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
  1843.       _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
  1844.       ;;
  1845.     osf3*)
  1846.       if test "$GCC" = yes; then
  1847. _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}*'
  1848. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  1849.       else
  1850. _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved *'
  1851. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
  1852.       fi
  1853.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  1854.       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
  1855.       ;;
  1856.     osf4* | osf5*) # as osf3* with the addition of -msym flag
  1857.       if test "$GCC" = yes; then
  1858. _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}*'
  1859. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  1860. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  1861.       else
  1862. _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved *'
  1863. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
  1864. _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\n" -exported_symbol "$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
  1865. $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp'
  1866. # Both c and cxx compiler support -rpath directly
  1867. _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
  1868.       fi
  1869.       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
  1870.       ;;
  1871.     sco3.2v5*)
  1872.       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  1873.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1874.       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
  1875.       runpath_var=LD_RUN_PATH
  1876.       hardcode_runpath_var=yes
  1877.       ;;
  1878.     solaris*)
  1879.       _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text'
  1880.       if test "$GCC" = yes; then
  1881. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  1882. _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/(.*)/1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
  1883.   $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp'
  1884.       else
  1885. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
  1886. _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/(.*)/1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
  1887.    $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
  1888.       fi
  1889.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  1890.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1891.       case $host_os in
  1892.       solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
  1893.       *) # Supported since Solaris 2.6 (maybe 2.5.1?)
  1894. _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;;
  1895.       esac
  1896.       _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
  1897.       ;;
  1898.     sunos4*)
  1899.       if test "x$host_vendor" = xsequent; then
  1900. # Use $CC to link under sequent, because it throws in some extra .o
  1901. # files that make .init and .fini sections work.
  1902. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
  1903.       else
  1904. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
  1905.       fi
  1906.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  1907.       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1908.       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
  1909.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1910.       ;;
  1911.     sysv4)
  1912.       case $host_vendor in
  1913. sni)
  1914.   _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  1915.   _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true???
  1916. ;;
  1917. siemens)
  1918.   ## LD is ld it makes a PLAMLIB
  1919.   ## CC just makes a GrossModule.
  1920.   _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
  1921.   _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
  1922.   _LT_AC_TAGVAR(hardcode_direct, $1)=no
  1923.         ;;
  1924. motorola)
  1925.   _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  1926.   _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
  1927. ;;
  1928.       esac
  1929.       runpath_var='LD_RUN_PATH'
  1930.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1931.       ;;
  1932.     sysv4.3*)
  1933.       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  1934.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1935.       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
  1936.       ;;
  1937.     sysv4*MP*)
  1938.       if test -d /usr/nec; then
  1939. _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  1940. _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1941. runpath_var=LD_RUN_PATH
  1942. hardcode_runpath_var=yes
  1943. _LT_AC_TAGVAR(ld_shlibs, $1)=yes
  1944.       fi
  1945.       ;;
  1946.     sysv4.2uw2*)
  1947.       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
  1948.       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
  1949.       _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
  1950.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1951.       hardcode_runpath_var=yes
  1952.       runpath_var=LD_RUN_PATH
  1953.       ;;
  1954.    sysv5OpenUNIX8* | sysv5UnixWare7* |  sysv5uw[[78]]* | unixware7*)
  1955.       _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z ${wl}text'
  1956.       if test "$GCC" = yes; then
  1957. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  1958.       else
  1959. _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  1960.       fi
  1961.       runpath_var='LD_RUN_PATH'
  1962.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1963.       ;;
  1964.     sysv5*)
  1965.       _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text'
  1966.       # $CC -shared without GNU ld will not create a library from C++
  1967.       # object files and a static libstdc++, better avoid it by now
  1968.       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
  1969.       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/(.*)/1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
  1970.    $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
  1971.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
  1972.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1973.       runpath_var='LD_RUN_PATH'
  1974.       ;;
  1975.     uts4*)
  1976.       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  1977.       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  1978.       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
  1979.       ;;
  1980.     *)
  1981.       _LT_AC_TAGVAR(ld_shlibs, $1)=no
  1982.       ;;
  1983.     esac
  1984.   fi
  1985. ])
  1986. AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)])
  1987. test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
  1988. variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
  1989. if test "$GCC" = yes; then
  1990.   variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
  1991. fi
  1992. #
  1993. # Do we need to explicitly link libc?
  1994. #
  1995. case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in
  1996. x|xyes)
  1997.   # Assume -lc should be added
  1998.   _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
  1999.   if test "$enable_shared" = yes && test "$GCC" = yes; then
  2000.     case $_LT_AC_TAGVAR(archive_cmds, $1) in
  2001.     *'~'*)
  2002.       # FIXME: we may have to deal with multi-command sequences.
  2003.       ;;
  2004.     '$CC '*)
  2005.       # Test whether the compiler implicitly links with -lc since on some
  2006.       # systems, -lgcc has to come before -lc. If gcc already passes -lc
  2007.       # to ld, don't add -lc before -lgcc.
  2008.       AC_MSG_CHECKING([whether -lc should be explicitly linked in])
  2009.       $rm conftest*
  2010.       printf "$lt_simple_compile_test_code" > conftest.$ac_ext
  2011.       if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
  2012.         soname=conftest
  2013.         lib=conftest
  2014.         libobjs=conftest.$ac_objext
  2015.         deplibs=
  2016.         wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
  2017.         compiler_flags=-v
  2018.         linker_flags=-v
  2019.         verstring=
  2020.         output_objdir=.
  2021.         libname=conftest
  2022.         lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1)
  2023.         _LT_AC_TAGVAR(allow_undefined_flag, $1)=
  2024.         if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2>&1 | grep " -lc " >/dev/null 2>&1)
  2025.         then
  2026.   _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
  2027.         else
  2028.   _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
  2029.         fi
  2030.         _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
  2031.       else
  2032.         cat conftest.err 1>&5
  2033.       fi
  2034.       $rm conftest*
  2035.       AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)])
  2036.       ;;
  2037.     esac
  2038.   fi
  2039.   ;;
  2040. esac
  2041. ])# AC_LIBTOOL_PROG_LD_SHLIBS
  2042. # _LT_AC_FILE_LTDLL_C
  2043. # -------------------
  2044. # Be careful that the start marker always follows a newline.
  2045. AC_DEFUN([_LT_AC_FILE_LTDLL_C], [
  2046. # /* ltdll.c starts here */
  2047. # #define WIN32_LEAN_AND_MEAN
  2048. # #include <windows.h>
  2049. # #undef WIN32_LEAN_AND_MEAN
  2050. # #include <stdio.h>
  2051. #
  2052. # #ifndef __CYGWIN__
  2053. # #  ifdef __CYGWIN32__
  2054. # #    define __CYGWIN__ __CYGWIN32__
  2055. # #  endif
  2056. # #endif
  2057. #
  2058. # #ifdef __cplusplus
  2059. # extern "C" {
  2060. # #endif
  2061. # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved);
  2062. # #ifdef __cplusplus
  2063. # }
  2064. # #endif
  2065. #
  2066. # #ifdef __CYGWIN__
  2067. # #include <cygwin/cygwin_dll.h>
  2068. # DECLARE_CYGWIN_DLL( DllMain );
  2069. # #endif
  2070. # HINSTANCE __hDllInstance_base;
  2071. #
  2072. # BOOL APIENTRY
  2073. # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved)
  2074. # {
  2075. #   __hDllInstance_base = hInst;
  2076. #   return TRUE;
  2077. # }
  2078. # /* ltdll.c ends here */
  2079. ])# _LT_AC_FILE_LTDLL_C
  2080. # _LT_AC_TAGVAR(VARNAME, [TAGNAME])
  2081. # ---------------------------------
  2082. AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])])
  2083. # old names
  2084. AC_DEFUN([AM_PROG_LIBTOOL],   [AC_PROG_LIBTOOL])
  2085. AC_DEFUN([AM_ENABLE_SHARED],  [AC_ENABLE_SHARED($@)])
  2086. AC_DEFUN([AM_ENABLE_STATIC],  [AC_ENABLE_STATIC($@)])
  2087. AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
  2088. AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
  2089. AC_DEFUN([AM_PROG_LD],        [AC_PROG_LD])
  2090. AC_DEFUN([AM_PROG_NM],        [AC_PROG_NM])
  2091. # This is just to silence aclocal about the macro not being used
  2092. ifelse([AC_DISABLE_FAST_INSTALL])
  2093. AC_DEFUN([LT_AC_PROG_GCJ],
  2094. [AC_CHECK_TOOL(GCJ, gcj, no)
  2095.   test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
  2096.   AC_SUBST(GCJFLAGS)
  2097. ])
  2098. AC_DEFUN([LT_AC_PROG_RC],
  2099. [AC_CHECK_TOOL(RC, windres, no)
  2100. ])
  2101. # NOTE: This macro has been submitted for inclusion into   #
  2102. #  GNU Autoconf as AC_PROG_SED.  When it is available in   #
  2103. #  a released version of Autoconf we should remove this    #
  2104. #  macro and use it instead.                               #
  2105. # LT_AC_PROG_SED
  2106. # --------------
  2107. # Check for a fully-functional sed program, that truncates
  2108. # as few characters as possible.  Prefer GNU sed if found.
  2109. AC_DEFUN([LT_AC_PROG_SED],
  2110. [AC_MSG_CHECKING([for a sed that does not truncate output])
  2111. AC_CACHE_VAL(lt_cv_path_SED,
  2112. [# Loop through the user's path and test for sed and gsed.
  2113. # Then use that list of sed's as ones to test for truncation.
  2114. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2115. for as_dir in $PATH
  2116. do
  2117.   IFS=$as_save_IFS
  2118.   test -z "$as_dir" && as_dir=.
  2119.   for lt_ac_prog in sed gsed; do
  2120.     for ac_exec_ext in '' $ac_executable_extensions; do
  2121.       if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
  2122.         lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
  2123.       fi
  2124.     done
  2125.   done
  2126. done
  2127. lt_ac_max=0
  2128. lt_ac_count=0
  2129. # Add /usr/xpg4/bin/sed as it is typically found on Solaris
  2130. # along with /bin/sed that truncates output.
  2131. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
  2132.   test ! -f $lt_ac_sed && break
  2133.   cat /dev/null > conftest.in
  2134.   lt_ac_count=0
  2135.   echo $ECHO_N "0123456789$ECHO_C" >conftest.in
  2136.   # Check for GNU sed and select it if it is found.
  2137.   if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
  2138.     lt_cv_path_SED=$lt_ac_sed
  2139.     break
  2140.   fi
  2141.   while true; do
  2142.     cat conftest.in conftest.in >conftest.tmp
  2143.     mv conftest.tmp conftest.in
  2144.     cp conftest.in conftest.nl
  2145.     echo >>conftest.nl
  2146.     $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
  2147.     cmp -s conftest.out conftest.nl || break
  2148.     # 10000 chars as input seems more than enough
  2149.     test $lt_ac_count -gt 10 && break
  2150.     lt_ac_count=`expr $lt_ac_count + 1`
  2151.     if test $lt_ac_count -gt $lt_ac_max; then
  2152.       lt_ac_max=$lt_ac_count
  2153.       lt_cv_path_SED=$lt_ac_sed
  2154.     fi
  2155.   done
  2156. done
  2157. SED=$lt_cv_path_SED
  2158. ])
  2159. AC_MSG_RESULT([$SED])
  2160. ])
  2161. #                                                        -*- Autoconf -*-
  2162. # Copyright (C) 2002, 2003  Free Software Foundation, Inc.
  2163. # Generated from amversion.in; do not edit by hand.
  2164. # This program is free software; you can redistribute it and/or modify
  2165. # it under the terms of the GNU General Public License as published by
  2166. # the Free Software Foundation; either version 2, or (at your option)
  2167. # any later version.
  2168. # This program is distributed in the hope that it will be useful,
  2169. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2170. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2171. # GNU General Public License for more details.
  2172. # You should have received a copy of the GNU General Public License
  2173. # along with this program; if not, write to the Free Software
  2174. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2175. # AM_AUTOMAKE_VERSION(VERSION)
  2176. # ----------------------------
  2177. # Automake X.Y traces this macro to ensure aclocal.m4 has been
  2178. # generated from the m4 files accompanying Automake X.Y.
  2179. AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"])
  2180. # AM_SET_CURRENT_AUTOMAKE_VERSION
  2181. # -------------------------------
  2182. # Call AM_AUTOMAKE_VERSION so it can be traced.
  2183. # This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
  2184. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
  2185.  [AM_AUTOMAKE_VERSION([1.9.4])])
  2186. # AM_AUX_DIR_EXPAND
  2187. # Copyright (C) 2001, 2003 Free Software Foundation, Inc.
  2188. # This program is free software; you can redistribute it and/or modify
  2189. # it under the terms of the GNU General Public License as published by
  2190. # the Free Software Foundation; either version 2, or (at your option)
  2191. # any later version.
  2192. # This program is distributed in the hope that it will be useful,
  2193. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2194. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2195. # GNU General Public License for more details.
  2196. # You should have received a copy of the GNU General Public License
  2197. # along with this program; if not, write to the Free Software
  2198. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2199. # 02111-1307, USA.
  2200. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
  2201. # $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
  2202. # `$srcdir', `$srcdir/..', or `$srcdir/../..'.
  2203. #
  2204. # Of course, Automake must honor this variable whenever it calls a
  2205. # tool from the auxiliary directory.  The problem is that $srcdir (and
  2206. # therefore $ac_aux_dir as well) can be either absolute or relative,
  2207. # depending on how configure is run.  This is pretty annoying, since
  2208. # it makes $ac_aux_dir quite unusable in subdirectories: in the top
  2209. # source directory, any form will work fine, but in subdirectories a
  2210. # relative path needs to be adjusted first.
  2211. #
  2212. # $ac_aux_dir/missing
  2213. #    fails when called from a subdirectory if $ac_aux_dir is relative
  2214. # $top_srcdir/$ac_aux_dir/missing
  2215. #    fails if $ac_aux_dir is absolute,
  2216. #    fails when called from a subdirectory in a VPATH build with
  2217. #          a relative $ac_aux_dir
  2218. #
  2219. # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
  2220. # are both prefixed by $srcdir.  In an in-source build this is usually
  2221. # harmless because $srcdir is `.', but things will broke when you
  2222. # start a VPATH build or use an absolute $srcdir.
  2223. #
  2224. # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
  2225. # iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
  2226. #   am_aux_dir='$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*(.*)"`
  2227. # and then we would define $MISSING as
  2228. #   MISSING="${SHELL} $am_aux_dir/missing"
  2229. # This will work as long as MISSING is not called from configure, because
  2230. # unfortunately $(top_srcdir) has no meaning in configure.
  2231. # However there are other variables, like CC, which are often used in
  2232. # configure, and could therefore not use this "fixed" $ac_aux_dir.
  2233. #
  2234. # Another solution, used here, is to always expand $ac_aux_dir to an
  2235. # absolute PATH.  The drawback is that using absolute paths prevent a
  2236. # configured tree to be moved without reconfiguration.
  2237. AC_DEFUN([AM_AUX_DIR_EXPAND],
  2238. [dnl Rely on autoconf to set up CDPATH properly.
  2239. AC_PREREQ([2.50])dnl
  2240. # expand $ac_aux_dir to an absolute path
  2241. am_aux_dir=`cd $ac_aux_dir && pwd`
  2242. ])
  2243. # AM_CONDITIONAL                                              -*- Autoconf -*-
  2244. # Copyright (C) 1997, 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
  2245. # This program is free software; you can redistribute it and/or modify
  2246. # it under the terms of the GNU General Public License as published by
  2247. # the Free Software Foundation; either version 2, or (at your option)
  2248. # any later version.
  2249. # This program is distributed in the hope that it will be useful,
  2250. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2251. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2252. # GNU General Public License for more details.
  2253. # You should have received a copy of the GNU General Public License
  2254. # along with this program; if not, write to the Free Software
  2255. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2256. # 02111-1307, USA.
  2257. # serial 6
  2258. # AM_CONDITIONAL(NAME, SHELL-CONDITION)
  2259. # -------------------------------------
  2260. # Define a conditional.
  2261. AC_DEFUN([AM_CONDITIONAL],
  2262. [AC_PREREQ(2.52)dnl
  2263.  ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
  2264. [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
  2265. AC_SUBST([$1_TRUE])
  2266. AC_SUBST([$1_FALSE])
  2267. if $2; then
  2268.   $1_TRUE=
  2269.   $1_FALSE='#'
  2270. else
  2271.   $1_TRUE='#'
  2272.   $1_FALSE=
  2273. fi
  2274. AC_CONFIG_COMMANDS_PRE(
  2275. [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
  2276.   AC_MSG_ERROR([[conditional "$1" was never defined.
  2277. Usually this means the macro was only invoked conditionally.]])
  2278. fi])])
  2279. # serial 7 -*- Autoconf -*-
  2280. # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
  2281. # Free Software Foundation, Inc.
  2282. # This program is free software; you can redistribute it and/or modify
  2283. # it under the terms of the GNU General Public License as published by
  2284. # the Free Software Foundation; either version 2, or (at your option)
  2285. # any later version.
  2286. # This program is distributed in the hope that it will be useful,
  2287. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2288. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2289. # GNU General Public License for more details.
  2290. # You should have received a copy of the GNU General Public License
  2291. # along with this program; if not, write to the Free Software
  2292. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2293. # 02111-1307, USA.
  2294. # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
  2295. # written in clear, in which case automake, when reading aclocal.m4,
  2296. # will think it sees a *use*, and therefore will trigger all it's
  2297. # C support machinery.  Also note that it means that autoscan, seeing
  2298. # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
  2299. # _AM_DEPENDENCIES(NAME)
  2300. # ----------------------
  2301. # See how the compiler implements dependency checking.
  2302. # NAME is "CC", "CXX", "GCJ", or "OBJC".
  2303. # We try a few techniques and use that to set a single cache variable.
  2304. #
  2305. # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
  2306. # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
  2307. # dependency, and given that the user is not expected to run this macro,
  2308. # just rely on AC_PROG_CC.
  2309. AC_DEFUN([_AM_DEPENDENCIES],
  2310. [AC_REQUIRE([AM_SET_DEPDIR])dnl
  2311. AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
  2312. AC_REQUIRE([AM_MAKE_INCLUDE])dnl
  2313. AC_REQUIRE([AM_DEP_TRACK])dnl
  2314. ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
  2315.        [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
  2316.        [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
  2317.        [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
  2318.                    [depcc="$$1"   am_compiler_list=])
  2319. AC_CACHE_CHECK([dependency style of $depcc],
  2320.                [am_cv_$1_dependencies_compiler_type],
  2321. [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
  2322.   # We make a subdir and do the tests there.  Otherwise we can end up
  2323.   # making bogus files that we don't know about and never remove.  For
  2324.   # instance it was reported that on HP-UX the gcc test will end up
  2325.   # making a dummy file named `D' -- because `-MD' means `put the output
  2326.   # in D'.
  2327.   mkdir conftest.dir
  2328.   # Copy depcomp to subdir because otherwise we won't find it if we're
  2329.   # using a relative directory.
  2330.   cp "$am_depcomp" conftest.dir
  2331.   cd conftest.dir
  2332.   # We will build objects and dependencies in a subdirectory because
  2333.   # it helps to detect inapplicable dependency modes.  For instance
  2334.   # both Tru64's cc and ICC support -MD to output dependencies as a
  2335.   # side effect of compilation, but ICC will put the dependencies in
  2336.   # the current directory while Tru64 will put them in the object
  2337.   # directory.
  2338.   mkdir sub
  2339.   am_cv_$1_dependencies_compiler_type=none
  2340.   if test "$am_compiler_list" = ""; then
  2341.      am_compiler_list=`sed -n ['s/^#*([a-zA-Z0-9]*))$/1/p'] < ./depcomp`
  2342.   fi
  2343.   for depmode in $am_compiler_list; do
  2344.     # Setup a source with many dependencies, because some compilers
  2345.     # like to wrap large dependency lists on column 80 (with ), and
  2346.     # we should not choose a depcomp mode which is confused by this.
  2347.     #
  2348.     # We need to recreate these files for each test, as the compiler may
  2349.     # overwrite some of them when testing with obscure command lines.
  2350.     # This happens at least with the AIX C compiler.
  2351.     : > sub/conftest.c
  2352.     for i in 1 2 3 4 5 6; do
  2353.       echo '#include "conftst'$i'.h"' >> sub/conftest.c
  2354.       # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
  2355.       # Solaris 8's {/usr,}/bin/sh.
  2356.       touch sub/conftst$i.h
  2357.     done
  2358.     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
  2359.     case $depmode in
  2360.     nosideeffect)
  2361.       # after this tag, mechanisms are not by side-effect, so they'll
  2362.       # only be used when explicitly requested
  2363.       if test "x$enable_dependency_tracking" = xyes; then
  2364. continue
  2365.       else
  2366. break
  2367.       fi
  2368.       ;;
  2369.     none) break ;;
  2370.     esac
  2371.     # We check with `-c' and `-o' for the sake of the "dashmstdout"
  2372.     # mode.  It turns out that the SunPro C++ compiler does not properly
  2373.     # handle `-M -o', and we need to detect this.
  2374.     if depmode=$depmode 
  2375.        source=sub/conftest.c object=sub/conftest.${OBJEXT-o} 
  2376.        depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo 
  2377.        $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c 
  2378.          >/dev/null 2>conftest.err &&
  2379.        grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
  2380.        grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
  2381.        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
  2382.       # icc doesn't choke on unknown options, it will just issue warnings
  2383.       # or remarks (even with -Werror).  So we grep stderr for any message
  2384.       # that says an option was ignored or not supported.
  2385.       # When given -MP, icc 7.0 and 7.1 complain thusly:
  2386.       #   icc: Command line warning: ignoring option '-M'; no argument required
  2387.       # The diagnosis changed in icc 8.0:
  2388.       #   icc: Command line remark: option '-MP' not supported
  2389.       if (grep 'ignoring option' conftest.err ||
  2390.           grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
  2391.         am_cv_$1_dependencies_compiler_type=$depmode
  2392.         break
  2393.       fi
  2394.     fi
  2395.   done
  2396.   cd ..
  2397.   rm -rf conftest.dir
  2398. else
  2399.   am_cv_$1_dependencies_compiler_type=none
  2400. fi
  2401. ])
  2402. AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
  2403. AM_CONDITIONAL([am__fastdep$1], [
  2404.   test "x$enable_dependency_tracking" != xno 
  2405.   && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
  2406. ])
  2407. # AM_SET_DEPDIR
  2408. # -------------
  2409. # Choose a directory name for dependency files.
  2410. # This macro is AC_REQUIREd in _AM_DEPENDENCIES
  2411. AC_DEFUN([AM_SET_DEPDIR],
  2412. [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  2413. AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
  2414. ])
  2415. # AM_DEP_TRACK
  2416. # ------------
  2417. AC_DEFUN([AM_DEP_TRACK],
  2418. [AC_ARG_ENABLE(dependency-tracking,
  2419. [  --disable-dependency-tracking  speeds up one-time build
  2420.   --enable-dependency-tracking   do not reject slow dependency extractors])
  2421. if test "x$enable_dependency_tracking" != xno; then
  2422.   am_depcomp="$ac_aux_dir/depcomp"
  2423.   AMDEPBACKSLASH=''
  2424. fi
  2425. AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
  2426. AC_SUBST([AMDEPBACKSLASH])
  2427. ])
  2428. # Generate code to set up dependency tracking.   -*- Autoconf -*-
  2429. # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004
  2430. #   Free Software Foundation, Inc.
  2431. # This program is free software; you can redistribute it and/or modify
  2432. # it under the terms of the GNU General Public License as published by
  2433. # the Free Software Foundation; either version 2, or (at your option)
  2434. # any later version.
  2435. # This program is distributed in the hope that it will be useful,
  2436. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2437. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2438. # GNU General Public License for more details.
  2439. # You should have received a copy of the GNU General Public License
  2440. # along with this program; if not, write to the Free Software
  2441. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2442. # 02111-1307, USA.
  2443. #serial 2
  2444. # _AM_OUTPUT_DEPENDENCY_COMMANDS
  2445. # ------------------------------
  2446. AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
  2447. [for mf in $CONFIG_FILES; do
  2448.   # Strip MF so we end up with the name of the file.
  2449.   mf=`echo "$mf" | sed -e 's/:.*$//'`
  2450.   # Check whether this is an Automake generated Makefile or not.
  2451.   # We used to match only the files named `Makefile.in', but
  2452.   # some people rename them; so instead we look at the file content.
  2453.   # Grep'ing the first line is not enough: some people post-process
  2454.   # each Makefile.in and add a new line on top of each file to say so.
  2455.   # So let's grep whole file.
  2456.   if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
  2457.     dirpart=`AS_DIRNAME("$mf")`
  2458.   else
  2459.     continue
  2460.   fi
  2461.   # Extract the definition of DEPDIR, am__include, and am__quote
  2462.   # from the Makefile without running `make'.
  2463.   DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
  2464.   test -z "$DEPDIR" && continue
  2465.   am__include=`sed -n 's/^am__include = //p' < "$mf"`
  2466.   test -z "am__include" && continue
  2467.   am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
  2468.   # When using ansi2knr, U may be empty or an underscore; expand it
  2469.   U=`sed -n 's/^U = //p' < "$mf"`
  2470.   # Find all dependency output files, they are included files with
  2471.   # $(DEPDIR) in their names.  We invoke sed twice because it is the
  2472.   # simplest approach to changing $(DEPDIR) to its actual value in the
  2473.   # expansion.
  2474.   for file in `sed -n "
  2475.     s/^$am__include $am__quote(.*(DEPDIR).*)$am__quote"'$/1/p' <"$mf" | 
  2476.        sed -e 's/$(DEPDIR)/'"$DEPDIR"'/g' -e 's/$U/'"$U"'/g'`; do
  2477.     # Make sure the directory exists.
  2478.     test -f "$dirpart/$file" && continue
  2479.     fdir=`AS_DIRNAME(["$file"])`
  2480.     AS_MKDIR_P([$dirpart/$fdir])
  2481.     # echo "creating $dirpart/$file"
  2482.     echo '# dummy' > "$dirpart/$file"
  2483.   done
  2484. done
  2485. ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
  2486. # AM_OUTPUT_DEPENDENCY_COMMANDS
  2487. # -----------------------------
  2488. # This macro should only be invoked once -- use via AC_REQUIRE.
  2489. #
  2490. # This code is only required when automatic dependency tracking
  2491. # is enabled.  FIXME.  This creates each `.P' file that we will
  2492. # need in order to bootstrap the dependency handling code.
  2493. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
  2494. [AC_CONFIG_COMMANDS([depfiles],
  2495.      [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
  2496.      [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
  2497. ])
  2498. # Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*-
  2499. # Copyright (C) 1996, 1997, 2000, 2001, 2003 Free Software Foundation, Inc.
  2500. # This program is free software; you can redistribute it and/or modify
  2501. # it under the terms of the GNU General Public License as published by
  2502. # the Free Software Foundation; either version 2, or (at your option)
  2503. # any later version.
  2504. # This program is distributed in the hope that it will be useful,
  2505. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2506. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2507. # GNU General Public License for more details.
  2508. # You should have received a copy of the GNU General Public License
  2509. # along with this program; if not, write to the Free Software
  2510. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2511. # 02111-1307, USA.
  2512. # serial 7
  2513. # AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
  2514. AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
  2515. # Do all the work for Automake.                            -*- Autoconf -*-
  2516. # This macro actually does too much some checks are only needed if
  2517. # your package does certain things.  But this isn't really a big deal.
  2518. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
  2519. # Free Software Foundation, Inc.
  2520. # This program is free software; you can redistribute it and/or modify
  2521. # it under the terms of the GNU General Public License as published by
  2522. # the Free Software Foundation; either version 2, or (at your option)
  2523. # any later version.
  2524. # This program is distributed in the hope that it will be useful,
  2525. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2526. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2527. # GNU General Public License for more details.
  2528. # You should have received a copy of the GNU General Public License
  2529. # along with this program; if not, write to the Free Software
  2530. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2531. # 02111-1307, USA.
  2532. # serial 11
  2533. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
  2534. # AM_INIT_AUTOMAKE([OPTIONS])
  2535. # -----------------------------------------------
  2536. # The call with PACKAGE and VERSION arguments is the old style
  2537. # call (pre autoconf-2.50), which is being phased out.  PACKAGE
  2538. # and VERSION should now be passed to AC_INIT and removed from
  2539. # the call to AM_INIT_AUTOMAKE.
  2540. # We support both call styles for the transition.  After
  2541. # the next Automake release, Autoconf can make the AC_INIT
  2542. # arguments mandatory, and then we can depend on a new Autoconf
  2543. # release and drop the old call support.
  2544. AC_DEFUN([AM_INIT_AUTOMAKE],
  2545. [AC_PREREQ([2.58])dnl
  2546. dnl Autoconf wants to disallow AM_ names.  We explicitly allow
  2547. dnl the ones we care about.
  2548. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
  2549. AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
  2550. AC_REQUIRE([AC_PROG_INSTALL])dnl
  2551. # test to see if srcdir already configured
  2552. if test "`cd $srcdir && pwd`" != "`pwd`" &&
  2553.    test -f $srcdir/config.status; then
  2554.   AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  2555. fi
  2556. # test whether we have cygpath
  2557. if test -z "$CYGPATH_W"; then
  2558.   if (cygpath --version) >/dev/null 2>/dev/null; then
  2559.     CYGPATH_W='cygpath -w'
  2560.   else
  2561.     CYGPATH_W=echo
  2562.   fi
  2563. fi
  2564. AC_SUBST([CYGPATH_W])
  2565. # Define the identity of the package.
  2566. dnl Distinguish between old-style and new-style calls.
  2567. m4_ifval([$2],
  2568. [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
  2569.  AC_SUBST([PACKAGE], [$1])dnl
  2570.  AC_SUBST([VERSION], [$2])],
  2571. [_AM_SET_OPTIONS([$1])dnl
  2572.  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
  2573.  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
  2574. _AM_IF_OPTION([no-define],,
  2575. [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
  2576.  AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
  2577. # Some tools Automake needs.
  2578. AC_REQUIRE([AM_SANITY_CHECK])dnl
  2579. AC_REQUIRE([AC_ARG_PROGRAM])dnl
  2580. AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
  2581. AM_MISSING_PROG(AUTOCONF, autoconf)
  2582. AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
  2583. AM_MISSING_PROG(AUTOHEADER, autoheader)
  2584. AM_MISSING_PROG(MAKEINFO, makeinfo)
  2585. AM_PROG_INSTALL_SH
  2586. AM_PROG_INSTALL_STRIP
  2587. AC_REQUIRE([AM_PROG_MKDIR_P])dnl
  2588. # We need awk for the "check" target.  The system "awk" is bad on
  2589. # some platforms.
  2590. AC_REQUIRE([AC_PROG_AWK])dnl
  2591. AC_REQUIRE([AC_PROG_MAKE_SET])dnl
  2592. AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  2593. _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
  2594.               [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
  2595.             [_AM_PROG_TAR([v7])])])
  2596. _AM_IF_OPTION([no-dependencies],,
  2597. [AC_PROVIDE_IFELSE([AC_PROG_CC],
  2598.                   [_AM_DEPENDENCIES(CC)],
  2599.                   [define([AC_PROG_CC],
  2600.                           defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
  2601. AC_PROVIDE_IFELSE([AC_PROG_CXX],
  2602.                   [_AM_DEPENDENCIES(CXX)],
  2603.                   [define([AC_PROG_CXX],
  2604.                           defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
  2605. ])
  2606. ])
  2607. # When config.status generates a header, we must update the stamp-h file.
  2608. # This file resides in the same directory as the config header
  2609. # that is generated.  The stamp files are numbered to have different names.
  2610. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
  2611. # loop where config.status creates the headers, so we can generate
  2612. # our stamp files there.
  2613. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
  2614. [# Compute $1's index in $config_headers.
  2615. _am_stamp_count=1
  2616. for _am_header in $config_headers :; do
  2617.   case $_am_header in
  2618.     $1 | $1:* )
  2619.       break ;;
  2620.     * )
  2621.       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  2622.   esac
  2623. done
  2624. echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
  2625. # AM_PROG_INSTALL_SH
  2626. # ------------------
  2627. # Define $install_sh.
  2628. # Copyright (C) 2001, 2003 Free Software Foundation, Inc.
  2629. # This program is free software; you can redistribute it and/or modify
  2630. # it under the terms of the GNU General Public License as published by
  2631. # the Free Software Foundation; either version 2, or (at your option)
  2632. # any later version.
  2633. # This program is distributed in the hope that it will be useful,
  2634. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2635. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2636. # GNU General Public License for more details.
  2637. # You should have received a copy of the GNU General Public License
  2638. # along with this program; if not, write to the Free Software
  2639. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2640. # 02111-1307, USA.
  2641. AC_DEFUN([AM_PROG_INSTALL_SH],
  2642. [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  2643. install_sh=${install_sh-"$am_aux_dir/install-sh"}
  2644. AC_SUBST(install_sh)])
  2645. #                                                          -*- Autoconf -*-
  2646. # Copyright (C) 2003  Free Software Foundation, Inc.
  2647. # This program is free software; you can redistribute it and/or modify
  2648. # it under the terms of the GNU General Public License as published by
  2649. # the Free Software Foundation; either version 2, or (at your option)
  2650. # any later version.
  2651. # This program is distributed in the hope that it will be useful,
  2652. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2653. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2654. # GNU General Public License for more details.
  2655. # You should have received a copy of the GNU General Public License
  2656. # along with this program; if not, write to the Free Software
  2657. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2658. # 02111-1307, USA.
  2659. # serial 1
  2660. # Check whether the underlying file-system supports filenames
  2661. # with a leading dot.  For instance MS-DOS doesn't.
  2662. AC_DEFUN([AM_SET_LEADING_DOT],
  2663. [rm -rf .tst 2>/dev/null
  2664. mkdir .tst 2>/dev/null
  2665. if test -d .tst; then
  2666.   am__leading_dot=.
  2667. else
  2668.   am__leading_dot=_
  2669. fi
  2670. rmdir .tst 2>/dev/null
  2671. AC_SUBST([am__leading_dot])])
  2672. # Check to see how 'make' treats includes. -*- Autoconf -*-
  2673. # Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
  2674. # This program is free software; you can redistribute it and/or modify
  2675. # it under the terms of the GNU General Public License as published by
  2676. # the Free Software Foundation; either version 2, or (at your option)
  2677. # any later version.
  2678. # This program is distributed in the hope that it will be useful,
  2679. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2680. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2681. # GNU General Public License for more details.
  2682. # You should have received a copy of the GNU General Public License
  2683. # along with this program; if not, write to the Free Software
  2684. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2685. # 02111-1307, USA.
  2686. # serial 2
  2687. # AM_MAKE_INCLUDE()
  2688. # -----------------
  2689. # Check to see how make treats includes.
  2690. AC_DEFUN([AM_MAKE_INCLUDE],
  2691. [am_make=${MAKE-make}
  2692. cat > confinc << 'END'
  2693. am__doit:
  2694. @echo done
  2695. .PHONY: am__doit
  2696. END
  2697. # If we don't find an include directive, just comment out the code.
  2698. AC_MSG_CHECKING([for style of include used by $am_make])
  2699. am__include="#"
  2700. am__quote=
  2701. _am_result=none
  2702. # First try GNU make style include.
  2703. echo "include confinc" > confmf
  2704. # We grep out `Entering directory' and `Leaving directory'
  2705. # messages which can occur if `w' ends up in MAKEFLAGS.
  2706. # In particular we don't look at `^make:' because GNU make might
  2707. # be invoked under some other name (usually "gmake"), in which
  2708. # case it prints its new name instead of `make'.
  2709. if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
  2710.    am__include=include
  2711.    am__quote=
  2712.    _am_result=GNU
  2713. fi
  2714. # Now try BSD make style include.
  2715. if test "$am__include" = "#"; then
  2716.    echo '.include "confinc"' > confmf
  2717.    if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
  2718.       am__include=.include
  2719.       am__quote="""
  2720.       _am_result=BSD
  2721.    fi
  2722. fi
  2723. AC_SUBST([am__include])
  2724. AC_SUBST([am__quote])
  2725. AC_MSG_RESULT([$_am_result])
  2726. rm -f confinc confmf
  2727. ])
  2728. #  -*- Autoconf -*-
  2729. # Copyright (C) 1997, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
  2730. # This program is free software; you can redistribute it and/or modify
  2731. # it under the terms of the GNU General Public License as published by
  2732. # the Free Software Foundation; either version 2, or (at your option)
  2733. # any later version.
  2734. # This program is distributed in the hope that it will be useful,
  2735. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2736. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2737. # GNU General Public License for more details.
  2738. # You should have received a copy of the GNU General Public License
  2739. # along with this program; if not, write to the Free Software
  2740. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2741. # 02111-1307, USA.
  2742. # serial 3
  2743. # AM_MISSING_PROG(NAME, PROGRAM)
  2744. # ------------------------------
  2745. AC_DEFUN([AM_MISSING_PROG],
  2746. [AC_REQUIRE([AM_MISSING_HAS_RUN])
  2747. $1=${$1-"${am_missing_run}$2"}
  2748. AC_SUBST($1)])
  2749. # AM_MISSING_HAS_RUN
  2750. # ------------------
  2751. # Define MISSING if not defined so far and test if it supports --run.
  2752. # If it does, set am_missing_run to use it, otherwise, to nothing.
  2753. AC_DEFUN([AM_MISSING_HAS_RUN],
  2754. [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  2755. test x"${MISSING+set}" = xset || MISSING="${SHELL} $am_aux_dir/missing"
  2756. # Use eval to expand $SHELL
  2757. if eval "$MISSING --run true"; then
  2758.   am_missing_run="$MISSING --run "
  2759. else
  2760.   am_missing_run=
  2761.   AC_MSG_WARN([`missing' script is too old or missing])
  2762. fi
  2763. ])
  2764. # AM_PROG_MKDIR_P
  2765. # ---------------
  2766. # Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise.
  2767. # Copyright (C) 2003, 2004 Free Software Foundation, Inc.
  2768. # This program is free software; you can redistribute it and/or modify
  2769. # it under the terms of the GNU General Public License as published by
  2770. # the Free Software Foundation; either version 2, or (at your option)
  2771. # any later version.
  2772. # This program is distributed in the hope that it will be useful,
  2773. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2774. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2775. # GNU General Public License for more details.
  2776. # You should have received a copy of the GNU General Public License
  2777. # along with this program; if not, write to the Free Software
  2778. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2779. # 02111-1307, USA.
  2780. # Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
  2781. # created by `make install' are always world readable, even if the
  2782. # installer happens to have an overly restrictive umask (e.g. 077).
  2783. # This was a mistake.  There are at least two reasons why we must not
  2784. # use `-m 0755':
  2785. #   - it causes special bits like SGID to be ignored,
  2786. #   - it may be too restrictive (some setups expect 775 directories).
  2787. #
  2788. # Do not use -m 0755 and let people choose whatever they expect by
  2789. # setting umask.
  2790. #
  2791. # We cannot accept any implementation of `mkdir' that recognizes `-p'.
  2792. # Some implementations (such as Solaris 8's) are not thread-safe: if a
  2793. # parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c'
  2794. # concurrently, both version can detect that a/ is missing, but only
  2795. # one can create it and the other will error out.  Consequently we
  2796. # restrict ourselves to GNU make (using the --version option ensures
  2797. # this.)
  2798. AC_DEFUN([AM_PROG_MKDIR_P],
  2799. [if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
  2800.   # We used to keeping the `.' as first argument, in order to
  2801.   # allow $(mkdir_p) to be used without argument.  As in
  2802.   #   $(mkdir_p) $(somedir)
  2803.   # where $(somedir) is conditionally defined.  However this is wrong
  2804.   # for two reasons:
  2805.   #  1. if the package is installed by a user who cannot write `.'
  2806.   #     make install will fail,
  2807.   #  2. the above comment should most certainly read
  2808.   #     $(mkdir_p) $(DESTDIR)$(somedir)
  2809.   #     so it does not work when $(somedir) is undefined and
  2810.   #     $(DESTDIR) is not.
  2811.   #  To support the latter case, we have to write
  2812.   #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
  2813.   #  so the `.' trick is pointless.
  2814.   mkdir_p='mkdir -p --'
  2815. else
  2816.   # On NextStep and OpenStep, the `mkdir' command does not
  2817.   # recognize any option.  It will interpret all options as
  2818.   # directories to create, and then abort because `.' already
  2819.   # exists.
  2820.   for d in ./-p ./--version;
  2821.   do
  2822.     test -d $d && rmdir $d
  2823.   done
  2824.   # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
  2825.   if test -f "$ac_aux_dir/mkinstalldirs"; then
  2826.     mkdir_p='$(mkinstalldirs)'
  2827.   else
  2828.     mkdir_p='$(install_sh) -d'
  2829.   fi
  2830. fi
  2831. AC_SUBST([mkdir_p])])
  2832. # Helper functions for option handling.                    -*- Autoconf -*-
  2833. # Copyright (C) 2001, 2002, 2003  Free Software Foundation, Inc.
  2834. # This program is free software; you can redistribute it and/or modify
  2835. # it under the terms of the GNU General Public License as published by
  2836. # the Free Software Foundation; either version 2, or (at your option)
  2837. # any later version.
  2838. # This program is distributed in the hope that it will be useful,
  2839. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2840. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2841. # GNU General Public License for more details.
  2842. # You should have received a copy of the GNU General Public License
  2843. # along with this program; if not, write to the Free Software
  2844. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2845. # 02111-1307, USA.
  2846. # serial 2
  2847. # _AM_MANGLE_OPTION(NAME)
  2848. # -----------------------
  2849. AC_DEFUN([_AM_MANGLE_OPTION],
  2850. [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
  2851. # _AM_SET_OPTION(NAME)
  2852. # ------------------------------
  2853. # Set option NAME.  Presently that only means defining a flag for this option.
  2854. AC_DEFUN([_AM_SET_OPTION],
  2855. [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
  2856. # _AM_SET_OPTIONS(OPTIONS)
  2857. # ----------------------------------
  2858. # OPTIONS is a space-separated list of Automake options.
  2859. AC_DEFUN([_AM_SET_OPTIONS],
  2860. [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
  2861. # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
  2862. # -------------------------------------------
  2863. # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
  2864. AC_DEFUN([_AM_IF_OPTION],
  2865. [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
  2866. #
  2867. # Check to make sure that the build environment is sane.
  2868. #
  2869. # Copyright (C) 1996, 1997, 2000, 2001, 2003 Free Software Foundation, Inc.
  2870. # This program is free software; you can redistribute it and/or modify
  2871. # it under the terms of the GNU General Public License as published by
  2872. # the Free Software Foundation; either version 2, or (at your option)
  2873. # any later version.
  2874. # This program is distributed in the hope that it will be useful,
  2875. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2876. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2877. # GNU General Public License for more details.
  2878. # You should have received a copy of the GNU General Public License
  2879. # along with this program; if not, write to the Free Software
  2880. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2881. # 02111-1307, USA.
  2882. # serial 3
  2883. # AM_SANITY_CHECK
  2884. # ---------------
  2885. AC_DEFUN([AM_SANITY_CHECK],
  2886. [AC_MSG_CHECKING([whether build environment is sane])
  2887. # Just in case
  2888. sleep 1
  2889. echo timestamp > conftest.file
  2890. # Do `set' in a subshell so we don't clobber the current shell's
  2891. # arguments.  Must try -L first in case configure is actually a
  2892. # symlink; some systems play weird games with the mod time of symlinks
  2893. # (eg FreeBSD returns the mod time of the symlink's containing
  2894. # directory).
  2895. if (
  2896.    set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
  2897.    if test "$[*]" = "X"; then
  2898.       # -L didn't work.
  2899.       set X `ls -t $srcdir/configure conftest.file`
  2900.    fi
  2901.    rm -f conftest.file
  2902.    if test "$[*]" != "X $srcdir/configure conftest.file" 
  2903.       && test "$[*]" != "X conftest.file $srcdir/configure"; then
  2904.       # If neither matched, then we have a broken ls.  This can happen
  2905.       # if, for instance, CONFIG_SHELL is bash and it inherits a
  2906.       # broken ls alias from the environment.  This has actually
  2907.       # happened.  Such a system could not be considered "sane".
  2908.       AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
  2909. alias in your environment])
  2910.    fi
  2911.    test "$[2]" = conftest.file
  2912.    )
  2913. then
  2914.    # Ok.
  2915.    :
  2916. else
  2917.    AC_MSG_ERROR([newly created file is older than distributed files!
  2918. Check your system clock])
  2919. fi
  2920. AC_MSG_RESULT(yes)])
  2921. # AM_PROG_INSTALL_STRIP
  2922. # Copyright (C) 2001, 2003 Free Software Foundation, Inc.
  2923. # This program is free software; you can redistribute it and/or modify
  2924. # it under the terms of the GNU General Public License as published by
  2925. # the Free Software Foundation; either version 2, or (at your option)
  2926. # any later version.
  2927. # This program is distributed in the hope that it will be useful,
  2928. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2929. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2930. # GNU General Public License for more details.
  2931. # You should have received a copy of the GNU General Public License
  2932. # along with this program; if not, write to the Free Software
  2933. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2934. # 02111-1307, USA.
  2935. # One issue with vendor `install' (even GNU) is that you can't
  2936. # specify the program used to strip binaries.  This is especially
  2937. # annoying in cross-compiling environments, where the build's strip
  2938. # is unlikely to handle the host's binaries.
  2939. # Fortunately install-sh will honor a STRIPPROG variable, so we
  2940. # always use install-sh in `make install-strip', and initialize
  2941. # STRIPPROG with the value of the STRIP variable (set by the user).
  2942. AC_DEFUN([AM_PROG_INSTALL_STRIP],
  2943. [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  2944. # Installed binaries are usually stripped using `strip' when the user
  2945. # run `make install-strip'.  However `strip' might not be the right
  2946. # tool to use in cross-compilation environments, therefore Automake
  2947. # will honor the `STRIP' environment variable to overrule this program.
  2948. dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
  2949. if test "$cross_compiling" != no; then
  2950.   AC_CHECK_TOOL([STRIP], [strip], :)
  2951. fi
  2952. INSTALL_STRIP_PROGRAM="${SHELL} $(install_sh) -c -s"
  2953. AC_SUBST([INSTALL_STRIP_PROGRAM])])
  2954. # Check how to create a tarball.                            -*- Autoconf -*-
  2955. # Copyright (C) 2004  Free Software Foundation, Inc.
  2956. # This program is free software; you can redistribute it and/or modify
  2957. # it under the terms of the GNU General Public License as published by
  2958. # the Free Software Foundation; either version 2, or (at your option)
  2959. # any later version.
  2960. # This program is distributed in the hope that it will be useful,
  2961. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  2962. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  2963. # GNU General Public License for more details.
  2964. # You should have received a copy of the GNU General Public License
  2965. # along with this program; if not, write to the Free Software
  2966. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  2967. # 02111-1307, USA.
  2968. # serial 1
  2969. # _AM_PROG_TAR(FORMAT)
  2970. # --------------------
  2971. # Check how to create a tarball in format FORMAT.
  2972. # FORMAT should be one of `v7', `ustar', or `pax'.
  2973. #
  2974. # Substitute a variable $(am__tar) that is a command
  2975. # writing to stdout a FORMAT-tarball containing the directory
  2976. # $tardir.
  2977. #     tardir=directory && $(am__tar) > result.tar
  2978. #
  2979. # Substitute a variable $(am__untar) that extract such
  2980. # a tarball read from stdin.
  2981. #     $(am__untar) < result.tar
  2982. AC_DEFUN([_AM_PROG_TAR],
  2983. [# Always define AMTAR for backward compatibility.
  2984. AM_MISSING_PROG([AMTAR], [tar])
  2985. m4_if([$1], [v7],
  2986.      [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
  2987.      [m4_case([$1], [ustar],, [pax],,
  2988.               [m4_fatal([Unknown tar format])])
  2989. AC_MSG_CHECKING([how to create a $1 tar archive])
  2990. # Loop over all known methods to create a tar archive until one works.
  2991. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
  2992. _am_tools=${am_cv_prog_tar_$1-$_am_tools}
  2993. # Do not fold the above two line into one, because Tru64 sh and
  2994. # Solaris sh will not grok spaces in the rhs of `-'.
  2995. for _am_tool in $_am_tools
  2996. do
  2997.   case $_am_tool in
  2998.   gnutar)
  2999.     for _am_tar in tar gnutar gtar;
  3000.     do
  3001.       AM_RUN_LOG([$_am_tar --version]) && break
  3002.     done
  3003.     am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
  3004.     am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
  3005.     am__untar="$_am_tar -xf -"
  3006.     ;;
  3007.   plaintar)
  3008.     # Must skip GNU tar: if it does not support --format= it doesn't create
  3009.     # ustar tarball either.
  3010.     (tar --version) >/dev/null 2>&1 && continue
  3011.     am__tar='tar chf - "$$tardir"'
  3012.     am__tar_='tar chf - "$tardir"'
  3013.     am__untar='tar xf -'
  3014.     ;;
  3015.   pax)
  3016.     am__tar='pax -L -x $1 -w "$$tardir"'
  3017.     am__tar_='pax -L -x $1 -w "$tardir"'
  3018.     am__untar='pax -r'
  3019.     ;;
  3020.   cpio)
  3021.     am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
  3022.     am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
  3023.     am__untar='cpio -i -H $1 -d'
  3024.     ;;
  3025.   none)
  3026.     am__tar=false
  3027.     am__tar_=false
  3028.     am__untar=false
  3029.     ;;
  3030.   esac
  3031.   # If the value was cached, stop now.  We just wanted to have am__tar
  3032.   # and am__untar set.
  3033.   test -n "${am_cv_prog_tar_$1}" && break
  3034.   # tar/untar a dummy directory, and stop if the command works
  3035.   rm -rf conftest.dir
  3036.   mkdir conftest.dir
  3037.   echo GrepMe > conftest.dir/file
  3038.   AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
  3039.   rm -rf conftest.dir
  3040.   if test -s conftest.tar; then
  3041.     AM_RUN_LOG([$am__untar <conftest.tar])
  3042.     grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
  3043.   fi
  3044. done
  3045. rm -rf conftest.dir
  3046. AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
  3047. AC_MSG_RESULT([$am_cv_prog_tar_$1])])
  3048. AC_SUBST([am__tar])
  3049. AC_SUBST([am__untar])
  3050. ]) # _AM_PROG_TAR