aclocal.m4
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:251k
源码类别:

网格计算

开发平台:

Java

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