* libffi: Added.
[cacao.git] / src / libltdl / acinclude.m4
1 # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
2 ## Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
3 ## Free Software Foundation, Inc.
4 ## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
5 ##
6 ## This file is free software; the Free Software Foundation gives
7 ## unlimited permission to copy and/or distribute it, with or without
8 ## modifications, as long as this notice is preserved.
9
10 # serial 47 AC_PROG_LIBTOOL
11
12
13 # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED)
14 # -----------------------------------------------------------
15 # If this macro is not defined by Autoconf, define it here.
16 m4_ifdef([AC_PROVIDE_IFELSE],
17          [],
18          [m4_define([AC_PROVIDE_IFELSE],
19                  [m4_ifdef([AC_PROVIDE_$1],
20                            [$2], [$3])])])
21
22
23 # AC_PROG_LIBTOOL
24 # ---------------
25 AC_DEFUN([AC_PROG_LIBTOOL],
26 [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl
27 dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX
28 dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX.
29   AC_PROVIDE_IFELSE([AC_PROG_CXX],
30     [AC_LIBTOOL_CXX],
31     [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX
32   ])])
33 dnl And a similar setup for Fortran 77 support
34   AC_PROVIDE_IFELSE([AC_PROG_F77],
35     [AC_LIBTOOL_F77],
36     [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77
37 ])])
38
39 dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly.
40 dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run
41 dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both.
42   AC_PROVIDE_IFELSE([AC_PROG_GCJ],
43     [AC_LIBTOOL_GCJ],
44     [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
45       [AC_LIBTOOL_GCJ],
46       [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],
47         [AC_LIBTOOL_GCJ],
48       [ifdef([AC_PROG_GCJ],
49              [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])
50        ifdef([A][M_PROG_GCJ],
51              [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])])
52        ifdef([LT_AC_PROG_GCJ],
53              [define([LT_AC_PROG_GCJ],
54                 defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])])
55 ])])# AC_PROG_LIBTOOL
56
57
58 # _AC_PROG_LIBTOOL
59 # ----------------
60 AC_DEFUN([_AC_PROG_LIBTOOL],
61 [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
62 AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl
63 AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl
64 AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl
65
66 # This can be used to rebuild libtool when needed
67 LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
68
69 # Always use our own libtool.
70 LIBTOOL='$(SHELL) $(top_builddir)/libtool'
71 AC_SUBST(LIBTOOL)dnl
72
73 # Prevent multiple expansion
74 define([AC_PROG_LIBTOOL], [])
75 ])# _AC_PROG_LIBTOOL
76
77
78 # AC_LIBTOOL_SETUP
79 # ----------------
80 AC_DEFUN([AC_LIBTOOL_SETUP],
81 [AC_PREREQ(2.50)dnl
82 AC_REQUIRE([AC_ENABLE_SHARED])dnl
83 AC_REQUIRE([AC_ENABLE_STATIC])dnl
84 AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
85 AC_REQUIRE([AC_CANONICAL_HOST])dnl
86 AC_REQUIRE([AC_CANONICAL_BUILD])dnl
87 AC_REQUIRE([AC_PROG_CC])dnl
88 AC_REQUIRE([AC_PROG_LD])dnl
89 AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl
90 AC_REQUIRE([AC_PROG_NM])dnl
91
92 AC_REQUIRE([AC_PROG_LN_S])dnl
93 AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl
94 # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!
95 AC_REQUIRE([AC_OBJEXT])dnl
96 AC_REQUIRE([AC_EXEEXT])dnl
97 dnl
98
99 AC_LIBTOOL_SYS_MAX_CMD_LEN
100 AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
101 AC_LIBTOOL_OBJDIR
102
103 AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
104 _LT_AC_PROG_ECHO_BACKSLASH
105
106 case $host_os in
107 aix3*)
108   # AIX sometimes has problems with the GCC collect2 program.  For some
109   # reason, if we set the COLLECT_NAMES environment variable, the problems
110   # vanish in a puff of smoke.
111   if test "X${COLLECT_NAMES+set}" != Xset; then
112     COLLECT_NAMES=
113     export COLLECT_NAMES
114   fi
115   ;;
116 esac
117
118 # Sed substitution that helps us do robust quoting.  It backslashifies
119 # metacharacters that are still active within double-quoted strings.
120 Xsed='sed -e 1s/^X//'
121 [sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g']
122
123 # Same as above, but do not quote variable references.
124 [double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g']
125
126 # Sed substitution to delay expansion of an escaped shell variable in a
127 # double_quote_subst'ed string.
128 delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
129
130 # Sed substitution to avoid accidental globbing in evaled expressions
131 no_glob_subst='s/\*/\\\*/g'
132
133 # Constants:
134 rm="rm -f"
135
136 # Global variables:
137 default_ofile=libtool
138 can_build_shared=yes
139
140 # All known linkers require a `.a' archive for static linking (except M$VC,
141 # which needs '.lib').
142 libext=a
143 ltmain="$ac_aux_dir/ltmain.sh"
144 ofile="$default_ofile"
145 with_gnu_ld="$lt_cv_prog_gnu_ld"
146
147 AC_CHECK_TOOL(AR, ar, false)
148 AC_CHECK_TOOL(RANLIB, ranlib, :)
149 AC_CHECK_TOOL(STRIP, strip, :)
150
151 old_CC="$CC"
152 old_CFLAGS="$CFLAGS"
153
154 # Set sane defaults for various variables
155 test -z "$AR" && AR=ar
156 test -z "$AR_FLAGS" && AR_FLAGS=cru
157 test -z "$AS" && AS=as
158 test -z "$CC" && CC=cc
159 test -z "$LTCC" && LTCC=$CC
160 test -z "$DLLTOOL" && DLLTOOL=dlltool
161 test -z "$LD" && LD=ld
162 test -z "$LN_S" && LN_S="ln -s"
163 test -z "$MAGIC_CMD" && MAGIC_CMD=file
164 test -z "$NM" && NM=nm
165 test -z "$SED" && SED=sed
166 test -z "$OBJDUMP" && OBJDUMP=objdump
167 test -z "$RANLIB" && RANLIB=:
168 test -z "$STRIP" && STRIP=:
169 test -z "$ac_objext" && ac_objext=o
170
171 # Determine commands to create old-style static archives.
172 old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs'
173 old_postinstall_cmds='chmod 644 $oldlib'
174 old_postuninstall_cmds=
175
176 if test -n "$RANLIB"; then
177   case $host_os in
178   openbsd*)
179     old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds"
180     ;;
181   *)
182     old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds"
183     ;;
184   esac
185   old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
186 fi
187
188 _LT_CC_BASENAME([$compiler])
189
190 # Only perform the check for file, if the check method requires it
191 case $deplibs_check_method in
192 file_magic*)
193   if test "$file_magic_cmd" = '$MAGIC_CMD'; then
194     AC_PATH_MAGIC
195   fi
196   ;;
197 esac
198
199 AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
200 AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
201 enable_win32_dll=yes, enable_win32_dll=no)
202
203 AC_ARG_ENABLE([libtool-lock],
204     [AC_HELP_STRING([--disable-libtool-lock],
205         [avoid locking (might break parallel builds)])])
206 test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
207
208 AC_ARG_WITH([pic],
209     [AC_HELP_STRING([--with-pic],
210         [try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
211     [pic_mode="$withval"],
212     [pic_mode=default])
213 test -z "$pic_mode" && pic_mode=default
214
215 # Use C for the default configuration in the libtool script
216 tagname=
217 AC_LIBTOOL_LANG_C_CONFIG
218 _LT_AC_TAGCONFIG
219 ])# AC_LIBTOOL_SETUP
220
221
222 # _LT_AC_SYS_COMPILER
223 # -------------------
224 AC_DEFUN([_LT_AC_SYS_COMPILER],
225 [AC_REQUIRE([AC_PROG_CC])dnl
226
227 # If no C compiler was specified, use CC.
228 LTCC=${LTCC-"$CC"}
229
230 # Allow CC to be a program name with arguments.
231 compiler=$CC
232 ])# _LT_AC_SYS_COMPILER
233
234
235 # _LT_CC_BASENAME(CC)
236 # -------------------
237 # Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.
238 AC_DEFUN([_LT_CC_BASENAME],
239 [for cc_temp in $1""; do
240   case $cc_temp in
241     compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
242     distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
243     \-*) ;;
244     *) break;;
245   esac
246 done
247 cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
248 ])
249
250
251 # _LT_COMPILER_BOILERPLATE
252 # ------------------------
253 # Check for compiler boilerplate output or warnings with
254 # the simple compiler test code.
255 AC_DEFUN([_LT_COMPILER_BOILERPLATE],
256 [ac_outfile=conftest.$ac_objext
257 printf "$lt_simple_compile_test_code" >conftest.$ac_ext
258 eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err
259 _lt_compiler_boilerplate=`cat conftest.err`
260 $rm conftest*
261 ])# _LT_COMPILER_BOILERPLATE
262
263
264 # _LT_LINKER_BOILERPLATE
265 # ----------------------
266 # Check for linker boilerplate output or warnings with
267 # the simple link test code.
268 AC_DEFUN([_LT_LINKER_BOILERPLATE],
269 [ac_outfile=conftest.$ac_objext
270 printf "$lt_simple_link_test_code" >conftest.$ac_ext
271 eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err
272 _lt_linker_boilerplate=`cat conftest.err`
273 $rm conftest*
274 ])# _LT_LINKER_BOILERPLATE
275
276
277 # _LT_AC_SYS_LIBPATH_AIX
278 # ----------------------
279 # Links a minimal program and checks the executable
280 # for the system default hardcoded library path. In most cases,
281 # this is /usr/lib:/lib, but when the MPI compilers are used
282 # the location of the communication and MPI libs are included too.
283 # If we don't find anything, use the default library path according
284 # to the aix ld manual.
285 AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX],
286 [AC_LINK_IFELSE(AC_LANG_PROGRAM,[
287 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
288 }'`
289 # Check for a 64-bit object if we didn't find anything.
290 if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
291 }'`; fi],[])
292 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
293 ])# _LT_AC_SYS_LIBPATH_AIX
294
295
296 # _LT_AC_SHELL_INIT(ARG)
297 # ----------------------
298 AC_DEFUN([_LT_AC_SHELL_INIT],
299 [ifdef([AC_DIVERSION_NOTICE],
300              [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)],
301          [AC_DIVERT_PUSH(NOTICE)])
302 $1
303 AC_DIVERT_POP
304 ])# _LT_AC_SHELL_INIT
305
306
307 # _LT_AC_PROG_ECHO_BACKSLASH
308 # --------------------------
309 # Add some code to the start of the generated configure script which
310 # will find an echo command which doesn't interpret backslashes.
311 AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH],
312 [_LT_AC_SHELL_INIT([
313 # Check that we are running under the correct shell.
314 SHELL=${CONFIG_SHELL-/bin/sh}
315
316 case X$ECHO in
317 X*--fallback-echo)
318   # Remove one level of quotation (which was required for Make).
319   ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
320   ;;
321 esac
322
323 echo=${ECHO-echo}
324 if test "X[$]1" = X--no-reexec; then
325   # Discard the --no-reexec flag, and continue.
326   shift
327 elif test "X[$]1" = X--fallback-echo; then
328   # Avoid inline document here, it may be left over
329   :
330 elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
331   # Yippee, $echo works!
332   :
333 else
334   # Restart under the correct shell.
335   exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
336 fi
337
338 if test "X[$]1" = X--fallback-echo; then
339   # used as fallback echo
340   shift
341   cat <<EOF
342 [$]*
343 EOF
344   exit 0
345 fi
346
347 # The HP-UX ksh and POSIX shell print the target directory to stdout
348 # if CDPATH is set.
349 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
350
351 if test -z "$ECHO"; then
352 if test "X${echo_test_string+set}" != Xset; then
353 # find a string as large as possible, as long as the shell can cope with it
354   for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
355     # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
356     if (echo_test_string="`eval $cmd`") 2>/dev/null &&
357        echo_test_string="`eval $cmd`" &&
358        (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
359     then
360       break
361     fi
362   done
363 fi
364
365 if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
366    echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
367    test "X$echo_testing_string" = "X$echo_test_string"; then
368   :
369 else
370   # The Solaris, AIX, and Digital Unix default echo programs unquote
371   # backslashes.  This makes it impossible to quote backslashes using
372   #   echo "$something" | sed 's/\\/\\\\/g'
373   #
374   # So, first we look for a working echo in the user's PATH.
375
376   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
377   for dir in $PATH /usr/ucb; do
378     IFS="$lt_save_ifs"
379     if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
380        test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
381        echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
382        test "X$echo_testing_string" = "X$echo_test_string"; then
383       echo="$dir/echo"
384       break
385     fi
386   done
387   IFS="$lt_save_ifs"
388
389   if test "X$echo" = Xecho; then
390     # We didn't find a better echo, so look for alternatives.
391     if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
392        echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
393        test "X$echo_testing_string" = "X$echo_test_string"; then
394       # This shell has a builtin print -r that does the trick.
395       echo='print -r'
396     elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
397          test "X$CONFIG_SHELL" != X/bin/ksh; then
398       # If we have ksh, try running configure again with it.
399       ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
400       export ORIGINAL_CONFIG_SHELL
401       CONFIG_SHELL=/bin/ksh
402       export CONFIG_SHELL
403       exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
404     else
405       # Try using printf.
406       echo='printf %s\n'
407       if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
408          echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
409          test "X$echo_testing_string" = "X$echo_test_string"; then
410         # Cool, printf works
411         :
412       elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
413            test "X$echo_testing_string" = 'X\t' &&
414            echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
415            test "X$echo_testing_string" = "X$echo_test_string"; then
416         CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
417         export CONFIG_SHELL
418         SHELL="$CONFIG_SHELL"
419         export SHELL
420         echo="$CONFIG_SHELL [$]0 --fallback-echo"
421       elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
422            test "X$echo_testing_string" = 'X\t' &&
423            echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
424            test "X$echo_testing_string" = "X$echo_test_string"; then
425         echo="$CONFIG_SHELL [$]0 --fallback-echo"
426       else
427         # maybe with a smaller string...
428         prev=:
429
430         for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
431           if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
432           then
433             break
434           fi
435           prev="$cmd"
436         done
437
438         if test "$prev" != 'sed 50q "[$]0"'; then
439           echo_test_string=`eval $prev`
440           export echo_test_string
441           exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
442         else
443           # Oops.  We lost completely, so just stick with echo.
444           echo=echo
445         fi
446       fi
447     fi
448   fi
449 fi
450 fi
451
452 # Copy echo and quote the copy suitably for passing to libtool from
453 # the Makefile, instead of quoting the original, which is used later.
454 ECHO=$echo
455 if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
456    ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
457 fi
458
459 AC_SUBST(ECHO)
460 ])])# _LT_AC_PROG_ECHO_BACKSLASH
461
462
463 # _LT_AC_LOCK
464 # -----------
465 AC_DEFUN([_LT_AC_LOCK],
466 [AC_ARG_ENABLE([libtool-lock],
467     [AC_HELP_STRING([--disable-libtool-lock],
468         [avoid locking (might break parallel builds)])])
469 test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
470
471 # Some flags need to be propagated to the compiler or linker for good
472 # libtool support.
473 case $host in
474 ia64-*-hpux*)
475   # Find out which ABI we are using.
476   echo 'int i;' > conftest.$ac_ext
477   if AC_TRY_EVAL(ac_compile); then
478     case `/usr/bin/file conftest.$ac_objext` in
479     *ELF-32*)
480       HPUX_IA64_MODE="32"
481       ;;
482     *ELF-64*)
483       HPUX_IA64_MODE="64"
484       ;;
485     esac
486   fi
487   rm -rf conftest*
488   ;;
489 *-*-irix6*)
490   # Find out which ABI we are using.
491   echo '[#]line __oline__ "configure"' > conftest.$ac_ext
492   if AC_TRY_EVAL(ac_compile); then
493    if test "$lt_cv_prog_gnu_ld" = yes; then
494     case `/usr/bin/file conftest.$ac_objext` in
495     *32-bit*)
496       LD="${LD-ld} -melf32bsmip"
497       ;;
498     *N32*)
499       LD="${LD-ld} -melf32bmipn32"
500       ;;
501     *64-bit*)
502       LD="${LD-ld} -melf64bmip"
503       ;;
504     esac
505    else
506     case `/usr/bin/file conftest.$ac_objext` in
507     *32-bit*)
508       LD="${LD-ld} -32"
509       ;;
510     *N32*)
511       LD="${LD-ld} -n32"
512       ;;
513     *64-bit*)
514       LD="${LD-ld} -64"
515       ;;
516     esac
517    fi
518   fi
519   rm -rf conftest*
520   ;;
521
522 x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*)
523   # Find out which ABI we are using.
524   echo 'int i;' > conftest.$ac_ext
525   if AC_TRY_EVAL(ac_compile); then
526     case "`/usr/bin/file conftest.o`" in
527     *32-bit*)
528       case $host in
529         x86_64-*linux*)
530           LD="${LD-ld} -m elf_i386"
531           ;;
532         ppc64-*linux*|powerpc64-*linux*)
533           LD="${LD-ld} -m elf32ppclinux"
534           ;;
535         s390x-*linux*)
536           LD="${LD-ld} -m elf_s390"
537           ;;
538         sparc64-*linux*)
539           LD="${LD-ld} -m elf32_sparc"
540           ;;
541       esac
542       ;;
543     *64-bit*)
544       case $host in
545         x86_64-*linux*)
546           LD="${LD-ld} -m elf_x86_64"
547           ;;
548         ppc*-*linux*|powerpc*-*linux*)
549           LD="${LD-ld} -m elf64ppc"
550           ;;
551         s390*-*linux*)
552           LD="${LD-ld} -m elf64_s390"
553           ;;
554         sparc*-*linux*)
555           LD="${LD-ld} -m elf64_sparc"
556           ;;
557       esac
558       ;;
559     esac
560   fi
561   rm -rf conftest*
562   ;;
563
564 *-*-sco3.2v5*)
565   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
566   SAVE_CFLAGS="$CFLAGS"
567   CFLAGS="$CFLAGS -belf"
568   AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
569     [AC_LANG_PUSH(C)
570      AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
571      AC_LANG_POP])
572   if test x"$lt_cv_cc_needs_belf" != x"yes"; then
573     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
574     CFLAGS="$SAVE_CFLAGS"
575   fi
576   ;;
577 AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
578 [*-*-cygwin* | *-*-mingw* | *-*-pw32*)
579   AC_CHECK_TOOL(DLLTOOL, dlltool, false)
580   AC_CHECK_TOOL(AS, as, false)
581   AC_CHECK_TOOL(OBJDUMP, objdump, false)
582   ;;
583   ])
584 esac
585
586 need_locks="$enable_libtool_lock"
587
588 ])# _LT_AC_LOCK
589
590
591 # AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
592 #               [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])
593 # ----------------------------------------------------------------
594 # Check whether the given compiler option works
595 AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION],
596 [AC_REQUIRE([LT_AC_PROG_SED])
597 AC_CACHE_CHECK([$1], [$2],
598   [$2=no
599   ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
600    printf "$lt_simple_compile_test_code" > conftest.$ac_ext
601    lt_compiler_flag="$3"
602    # Insert the option either (1) after the last *FLAGS variable, or
603    # (2) before a word containing "conftest.", or (3) at the end.
604    # Note that $ac_compile itself does not contain backslashes and begins
605    # with a dollar sign (not a hyphen), so the echo should work correctly.
606    # The option is referenced via a variable to avoid confusing sed.
607    lt_compile=`echo "$ac_compile" | $SED \
608    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
609    -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
610    -e 's:$: $lt_compiler_flag:'`
611    (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
612    (eval "$lt_compile" 2>conftest.err)
613    ac_status=$?
614    cat conftest.err >&AS_MESSAGE_LOG_FD
615    echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
616    if (exit $ac_status) && test -s "$ac_outfile"; then
617      # The compiler can only warn and ignore the option if not recognized
618      # So say no if there are warnings other than the usual output.
619      $echo "X$_lt_compiler_boilerplate" | $Xsed >conftest.exp
620      $SED '/^$/d' conftest.err >conftest.er2
621      if test ! -s conftest.err || diff conftest.exp conftest.er2 >/dev/null; then
622        $2=yes
623      fi
624    fi
625    $rm conftest*
626 ])
627
628 if test x"[$]$2" = xyes; then
629     ifelse([$5], , :, [$5])
630 else
631     ifelse([$6], , :, [$6])
632 fi
633 ])# AC_LIBTOOL_COMPILER_OPTION
634
635
636 # AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
637 #                          [ACTION-SUCCESS], [ACTION-FAILURE])
638 # ------------------------------------------------------------
639 # Check whether the given compiler option works
640 AC_DEFUN([AC_LIBTOOL_LINKER_OPTION],
641 [AC_CACHE_CHECK([$1], [$2],
642   [$2=no
643    save_LDFLAGS="$LDFLAGS"
644    LDFLAGS="$LDFLAGS $3"
645    printf "$lt_simple_link_test_code" > conftest.$ac_ext
646    if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
647      # The compiler can only warn and ignore the option if not recognized
648      # So say no if there are warnings
649      if test -s conftest.err; then
650        # Append any errors to the config.log.
651        cat conftest.err 1>&AS_MESSAGE_LOG_FD
652        $echo "X$_lt_linker_boilerplate" | $Xsed > conftest.exp
653        $SED '/^$/d' conftest.err >conftest.er2
654        if diff conftest.exp conftest.er2 >/dev/null; then
655          $2=yes
656        fi
657      else
658        $2=yes
659      fi
660    fi
661    $rm conftest*
662    LDFLAGS="$save_LDFLAGS"
663 ])
664
665 if test x"[$]$2" = xyes; then
666     ifelse([$4], , :, [$4])
667 else
668     ifelse([$5], , :, [$5])
669 fi
670 ])# AC_LIBTOOL_LINKER_OPTION
671
672
673 # AC_LIBTOOL_SYS_MAX_CMD_LEN
674 # --------------------------
675 AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN],
676 [# find the maximum length of command line arguments
677 AC_MSG_CHECKING([the maximum length of command line arguments])
678 AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
679   i=0
680   teststring="ABCD"
681
682   case $build_os in
683   msdosdjgpp*)
684     # On DJGPP, this test can blow up pretty badly due to problems in libc
685     # (any single argument exceeding 2000 bytes causes a buffer overrun
686     # during glob expansion).  Even if it were fixed, the result of this
687     # check would be larger than it should be.
688     lt_cv_sys_max_cmd_len=12288;    # 12K is about right
689     ;;
690
691   gnu*)
692     # Under GNU Hurd, this test is not required because there is
693     # no limit to the length of command line arguments.
694     # Libtool will interpret -1 as no limit whatsoever
695     lt_cv_sys_max_cmd_len=-1;
696     ;;
697
698   cygwin* | mingw*)
699     # On Win9x/ME, this test blows up -- it succeeds, but takes
700     # about 5 minutes as the teststring grows exponentially.
701     # Worse, since 9x/ME are not pre-emptively multitasking,
702     # you end up with a "frozen" computer, even though with patience
703     # the test eventually succeeds (with a max line length of 256k).
704     # Instead, let's just punt: use the minimum linelength reported by
705     # all of the supported platforms: 8192 (on NT/2K/XP).
706     lt_cv_sys_max_cmd_len=8192;
707     ;;
708
709   amigaos*)
710     # On AmigaOS with pdksh, this test takes hours, literally.
711     # So we just punt and use a minimum line length of 8192.
712     lt_cv_sys_max_cmd_len=8192;
713     ;;
714
715   netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
716     # This has been around since 386BSD, at least.  Likely further.
717     if test -x /sbin/sysctl; then
718       lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
719     elif test -x /usr/sbin/sysctl; then
720       lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
721     else
722       lt_cv_sys_max_cmd_len=65536 # usable default for *BSD
723     fi
724     # And add a safety zone
725     lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
726     lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
727     ;;
728   osf*)
729     # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
730     # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
731     # nice to cause kernel panics so lets avoid the loop below.
732     # First set a reasonable default.
733     lt_cv_sys_max_cmd_len=16384
734     # 
735     if test -x /sbin/sysconfig; then
736       case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
737         *1*) lt_cv_sys_max_cmd_len=-1 ;;
738       esac
739     fi
740     ;;
741   *)
742     # If test is not a shell built-in, we'll probably end up computing a
743     # maximum length that is only half of the actual maximum length, but
744     # we can't tell.
745     SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
746     while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \
747                = "XX$teststring") >/dev/null 2>&1 &&
748             new_result=`expr "X$teststring" : ".*" 2>&1` &&
749             lt_cv_sys_max_cmd_len=$new_result &&
750             test $i != 17 # 1/2 MB should be enough
751     do
752       i=`expr $i + 1`
753       teststring=$teststring$teststring
754     done
755     teststring=
756     # Add a significant safety factor because C++ compilers can tack on massive
757     # amounts of additional arguments before passing them to the linker.
758     # It appears as though 1/2 is a usable value.
759     lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
760     ;;
761   esac
762 ])
763 if test -n $lt_cv_sys_max_cmd_len ; then
764   AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
765 else
766   AC_MSG_RESULT(none)
767 fi
768 ])# AC_LIBTOOL_SYS_MAX_CMD_LEN
769
770
771 # _LT_AC_CHECK_DLFCN
772 # --------------------
773 AC_DEFUN([_LT_AC_CHECK_DLFCN],
774 [AC_CHECK_HEADERS(dlfcn.h)dnl
775 ])# _LT_AC_CHECK_DLFCN
776
777
778 # _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
779 #                           ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
780 # ------------------------------------------------------------------
781 AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF],
782 [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
783 if test "$cross_compiling" = yes; then :
784   [$4]
785 else
786   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
787   lt_status=$lt_dlunknown
788   cat > conftest.$ac_ext <<EOF
789 [#line __oline__ "configure"
790 #include "confdefs.h"
791
792 #if HAVE_DLFCN_H
793 #include <dlfcn.h>
794 #endif
795
796 #include <stdio.h>
797
798 #ifdef RTLD_GLOBAL
799 #  define LT_DLGLOBAL           RTLD_GLOBAL
800 #else
801 #  ifdef DL_GLOBAL
802 #    define LT_DLGLOBAL         DL_GLOBAL
803 #  else
804 #    define LT_DLGLOBAL         0
805 #  endif
806 #endif
807
808 /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
809    find out it does not work in some platform. */
810 #ifndef LT_DLLAZY_OR_NOW
811 #  ifdef RTLD_LAZY
812 #    define LT_DLLAZY_OR_NOW            RTLD_LAZY
813 #  else
814 #    ifdef DL_LAZY
815 #      define LT_DLLAZY_OR_NOW          DL_LAZY
816 #    else
817 #      ifdef RTLD_NOW
818 #        define LT_DLLAZY_OR_NOW        RTLD_NOW
819 #      else
820 #        ifdef DL_NOW
821 #          define LT_DLLAZY_OR_NOW      DL_NOW
822 #        else
823 #          define LT_DLLAZY_OR_NOW      0
824 #        endif
825 #      endif
826 #    endif
827 #  endif
828 #endif
829
830 #ifdef __cplusplus
831 extern "C" void exit (int);
832 #endif
833
834 void fnord() { int i=42;}
835 int main ()
836 {
837   void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
838   int status = $lt_dlunknown;
839
840   if (self)
841     {
842       if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
843       else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
844       /* dlclose (self); */
845     }
846
847     exit (status);
848 }]
849 EOF
850   if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
851     (./conftest; exit; ) 2>/dev/null
852     lt_status=$?
853     case x$lt_status in
854       x$lt_dlno_uscore) $1 ;;
855       x$lt_dlneed_uscore) $2 ;;
856       x$lt_unknown|x*) $3 ;;
857     esac
858   else :
859     # compilation failed
860     $3
861   fi
862 fi
863 rm -fr conftest*
864 ])# _LT_AC_TRY_DLOPEN_SELF
865
866
867 # AC_LIBTOOL_DLOPEN_SELF
868 # -------------------
869 AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF],
870 [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
871 if test "x$enable_dlopen" != xyes; then
872   enable_dlopen=unknown
873   enable_dlopen_self=unknown
874   enable_dlopen_self_static=unknown
875 else
876   lt_cv_dlopen=no
877   lt_cv_dlopen_libs=
878
879   case $host_os in
880   beos*)
881     lt_cv_dlopen="load_add_on"
882     lt_cv_dlopen_libs=
883     lt_cv_dlopen_self=yes
884     ;;
885
886   mingw* | pw32*)
887     lt_cv_dlopen="LoadLibrary"
888     lt_cv_dlopen_libs=
889    ;;
890
891   cygwin*)
892     lt_cv_dlopen="dlopen"
893     lt_cv_dlopen_libs=
894    ;;
895
896   darwin*)
897   # if libdl is installed we need to link against it
898     AC_CHECK_LIB([dl], [dlopen],
899                 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
900     lt_cv_dlopen="dyld"
901     lt_cv_dlopen_libs=
902     lt_cv_dlopen_self=yes
903     ])
904    ;;
905
906   *)
907     AC_CHECK_FUNC([shl_load],
908           [lt_cv_dlopen="shl_load"],
909       [AC_CHECK_LIB([dld], [shl_load],
910             [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"],
911         [AC_CHECK_FUNC([dlopen],
912               [lt_cv_dlopen="dlopen"],
913           [AC_CHECK_LIB([dl], [dlopen],
914                 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
915             [AC_CHECK_LIB([svld], [dlopen],
916                   [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
917               [AC_CHECK_LIB([dld], [dld_link],
918                     [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
919               ])
920             ])
921           ])
922         ])
923       ])
924     ;;
925   esac
926
927   if test "x$lt_cv_dlopen" != xno; then
928     enable_dlopen=yes
929   else
930     enable_dlopen=no
931   fi
932
933   case $lt_cv_dlopen in
934   dlopen)
935     save_CPPFLAGS="$CPPFLAGS"
936     test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
937
938     save_LDFLAGS="$LDFLAGS"
939     eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
940
941     save_LIBS="$LIBS"
942     LIBS="$lt_cv_dlopen_libs $LIBS"
943
944     AC_CACHE_CHECK([whether a program can dlopen itself],
945           lt_cv_dlopen_self, [dnl
946           _LT_AC_TRY_DLOPEN_SELF(
947             lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
948             lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
949     ])
950
951     if test "x$lt_cv_dlopen_self" = xyes; then
952       LDFLAGS="$LDFLAGS $link_static_flag"
953       AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
954           lt_cv_dlopen_self_static, [dnl
955           _LT_AC_TRY_DLOPEN_SELF(
956             lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
957             lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
958       ])
959     fi
960
961     CPPFLAGS="$save_CPPFLAGS"
962     LDFLAGS="$save_LDFLAGS"
963     LIBS="$save_LIBS"
964     ;;
965   esac
966
967   case $lt_cv_dlopen_self in
968   yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
969   *) enable_dlopen_self=unknown ;;
970   esac
971
972   case $lt_cv_dlopen_self_static in
973   yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
974   *) enable_dlopen_self_static=unknown ;;
975   esac
976 fi
977 ])# AC_LIBTOOL_DLOPEN_SELF
978
979
980 # AC_LIBTOOL_PROG_CC_C_O([TAGNAME])
981 # ---------------------------------
982 # Check to see if options -c and -o are simultaneously supported by compiler
983 AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O],
984 [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
985 AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
986   [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
987   [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
988    $rm -r conftest 2>/dev/null
989    mkdir conftest
990    cd conftest
991    mkdir out
992    printf "$lt_simple_compile_test_code" > conftest.$ac_ext
993
994    lt_compiler_flag="-o out/conftest2.$ac_objext"
995    # Insert the option either (1) after the last *FLAGS variable, or
996    # (2) before a word containing "conftest.", or (3) at the end.
997    # Note that $ac_compile itself does not contain backslashes and begins
998    # with a dollar sign (not a hyphen), so the echo should work correctly.
999    lt_compile=`echo "$ac_compile" | $SED \
1000    -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
1001    -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
1002    -e 's:$: $lt_compiler_flag:'`
1003    (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
1004    (eval "$lt_compile" 2>out/conftest.err)
1005    ac_status=$?
1006    cat out/conftest.err >&AS_MESSAGE_LOG_FD
1007    echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
1008    if (exit $ac_status) && test -s out/conftest2.$ac_objext
1009    then
1010      # The compiler can only warn and ignore the option if not recognized
1011      # So say no if there are warnings
1012      $echo "X$_lt_compiler_boilerplate" | $Xsed > out/conftest.exp
1013      $SED '/^$/d' out/conftest.err >out/conftest.er2
1014      if test ! -s out/conftest.err || diff out/conftest.exp out/conftest.er2 >/dev/null; then
1015        _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
1016      fi
1017    fi
1018    chmod u+w .
1019    $rm conftest*
1020    # SGI C++ compiler will create directory out/ii_files/ for
1021    # template instantiation
1022    test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files
1023    $rm out/* && rmdir out
1024    cd ..
1025    rmdir conftest
1026    $rm conftest*
1027 ])
1028 ])# AC_LIBTOOL_PROG_CC_C_O
1029
1030
1031 # AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME])
1032 # -----------------------------------------
1033 # Check to see if we can do hard links to lock some files if needed
1034 AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS],
1035 [AC_REQUIRE([_LT_AC_LOCK])dnl
1036
1037 hard_links="nottested"
1038 if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
1039   # do not overwrite the value of need_locks provided by the user
1040   AC_MSG_CHECKING([if we can lock with hard links])
1041   hard_links=yes
1042   $rm conftest*
1043   ln conftest.a conftest.b 2>/dev/null && hard_links=no
1044   touch conftest.a
1045   ln conftest.a conftest.b 2>&5 || hard_links=no
1046   ln conftest.a conftest.b 2>/dev/null && hard_links=no
1047   AC_MSG_RESULT([$hard_links])
1048   if test "$hard_links" = no; then
1049     AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
1050     need_locks=warn
1051   fi
1052 else
1053   need_locks=no
1054 fi
1055 ])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS
1056
1057
1058 # AC_LIBTOOL_OBJDIR
1059 # -----------------
1060 AC_DEFUN([AC_LIBTOOL_OBJDIR],
1061 [AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
1062 [rm -f .libs 2>/dev/null
1063 mkdir .libs 2>/dev/null
1064 if test -d .libs; then
1065   lt_cv_objdir=.libs
1066 else
1067   # MS-DOS does not allow filenames that begin with a dot.
1068   lt_cv_objdir=_libs
1069 fi
1070 rmdir .libs 2>/dev/null])
1071 objdir=$lt_cv_objdir
1072 ])# AC_LIBTOOL_OBJDIR
1073
1074
1075 # AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME])
1076 # ----------------------------------------------
1077 # Check hardcoding attributes.
1078 AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH],
1079 [AC_MSG_CHECKING([how to hardcode library paths into programs])
1080 _LT_AC_TAGVAR(hardcode_action, $1)=
1081 if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \
1082    test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \
1083    test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
1084
1085   # We can hardcode non-existant directories.
1086   if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no &&
1087      # If the only mechanism to avoid hardcoding is shlibpath_var, we
1088      # have to relink, otherwise we might link with an installed library
1089      # when we should be linking with a yet-to-be-installed one
1090      ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
1091      test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then
1092     # Linking always hardcodes the temporary library directory.
1093     _LT_AC_TAGVAR(hardcode_action, $1)=relink
1094   else
1095     # We can link without hardcoding, and we can hardcode nonexisting dirs.
1096     _LT_AC_TAGVAR(hardcode_action, $1)=immediate
1097   fi
1098 else
1099   # We cannot hardcode anything, or else we can only hardcode existing
1100   # directories.
1101   _LT_AC_TAGVAR(hardcode_action, $1)=unsupported
1102 fi
1103 AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)])
1104
1105 if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then
1106   # Fast installation is not supported
1107   enable_fast_install=no
1108 elif test "$shlibpath_overrides_runpath" = yes ||
1109      test "$enable_shared" = no; then
1110   # Fast installation is not necessary
1111   enable_fast_install=needless
1112 fi
1113 ])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH
1114
1115
1116 # AC_LIBTOOL_SYS_LIB_STRIP
1117 # ------------------------
1118 AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP],
1119 [striplib=
1120 old_striplib=
1121 AC_MSG_CHECKING([whether stripping libraries is possible])
1122 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
1123   test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
1124   test -z "$striplib" && striplib="$STRIP --strip-unneeded"
1125   AC_MSG_RESULT([yes])
1126 else
1127 # FIXME - insert some real tests, host_os isn't really good enough
1128   case $host_os in
1129    darwin*)
1130        if test -n "$STRIP" ; then
1131          striplib="$STRIP -x"
1132          AC_MSG_RESULT([yes])
1133        else
1134   AC_MSG_RESULT([no])
1135 fi
1136        ;;
1137    *)
1138   AC_MSG_RESULT([no])
1139     ;;
1140   esac
1141 fi
1142 ])# AC_LIBTOOL_SYS_LIB_STRIP
1143
1144
1145 # AC_LIBTOOL_SYS_DYNAMIC_LINKER
1146 # -----------------------------
1147 # PORTME Fill in your ld.so characteristics
1148 AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER],
1149 [AC_MSG_CHECKING([dynamic linker characteristics])
1150 library_names_spec=
1151 libname_spec='lib$name'
1152 soname_spec=
1153 shrext_cmds=".so"
1154 postinstall_cmds=
1155 postuninstall_cmds=
1156 finish_cmds=
1157 finish_eval=
1158 shlibpath_var=
1159 shlibpath_overrides_runpath=unknown
1160 version_type=none
1161 dynamic_linker="$host_os ld.so"
1162 sys_lib_dlsearch_path_spec="/lib /usr/lib"
1163 if test "$GCC" = yes; then
1164   sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
1165   if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
1166     # if the path contains ";" then we assume it to be the separator
1167     # otherwise default to the standard path separator (i.e. ":") - it is
1168     # assumed that no part of a normal pathname contains ";" but that should
1169     # okay in the real world where ";" in dirpaths is itself problematic.
1170     sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
1171   else
1172     sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
1173   fi
1174 else
1175   sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
1176 fi
1177 need_lib_prefix=unknown
1178 hardcode_into_libs=no
1179
1180 # when you set need_version to no, make sure it does not cause -set_version
1181 # flags to be left without arguments
1182 need_version=unknown
1183
1184 case $host_os in
1185 aix3*)
1186   version_type=linux
1187   library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
1188   shlibpath_var=LIBPATH
1189
1190   # AIX 3 has no versioning support, so we append a major version to the name.
1191   soname_spec='${libname}${release}${shared_ext}$major'
1192   ;;
1193
1194 aix4* | aix5*)
1195   version_type=linux
1196   need_lib_prefix=no
1197   need_version=no
1198   hardcode_into_libs=yes
1199   if test "$host_cpu" = ia64; then
1200     # AIX 5 supports IA64
1201     library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
1202     shlibpath_var=LD_LIBRARY_PATH
1203   else
1204     # With GCC up to 2.95.x, collect2 would create an import file
1205     # for dependence libraries.  The import file would start with
1206     # the line `#! .'.  This would cause the generated library to
1207     # depend on `.', always an invalid library.  This was fixed in
1208     # development snapshots of GCC prior to 3.0.
1209     case $host_os in
1210       aix4 | aix4.[[01]] | aix4.[[01]].*)
1211       if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
1212            echo ' yes '
1213            echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
1214         :
1215       else
1216         can_build_shared=no
1217       fi
1218       ;;
1219     esac
1220     # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
1221     # soname into executable. Probably we can add versioning support to
1222     # collect2, so additional links can be useful in future.
1223     if test "$aix_use_runtimelinking" = yes; then
1224       # If using run time linking (on AIX 4.2 or later) use lib<name>.so
1225       # instead of lib<name>.a to let people know that these are not
1226       # typical AIX shared libraries.
1227       library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1228     else
1229       # We preserve .a as extension for shared libraries through AIX4.2
1230       # and later when we are not doing run time linking.
1231       library_names_spec='${libname}${release}.a $libname.a'
1232       soname_spec='${libname}${release}${shared_ext}$major'
1233     fi
1234     shlibpath_var=LIBPATH
1235   fi
1236   ;;
1237
1238 amigaos*)
1239   library_names_spec='$libname.ixlibrary $libname.a'
1240   # Create ${libname}_ixlibrary.a entries in /sys/libs.
1241   finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
1242   ;;
1243
1244 beos*)
1245   library_names_spec='${libname}${shared_ext}'
1246   dynamic_linker="$host_os ld.so"
1247   shlibpath_var=LIBRARY_PATH
1248   ;;
1249
1250 bsdi[[45]]*)
1251   version_type=linux
1252   need_version=no
1253   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1254   soname_spec='${libname}${release}${shared_ext}$major'
1255   finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
1256   shlibpath_var=LD_LIBRARY_PATH
1257   sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
1258   sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
1259   # the default ld.so.conf also contains /usr/contrib/lib and
1260   # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
1261   # libtool to hard-code these into programs
1262   ;;
1263
1264 cygwin* | mingw* | pw32*)
1265   version_type=windows
1266   shrext_cmds=".dll"
1267   need_version=no
1268   need_lib_prefix=no
1269
1270   case $GCC,$host_os in
1271   yes,cygwin* | yes,mingw* | yes,pw32*)
1272     library_names_spec='$libname.dll.a'
1273     # DLL is installed to $(libdir)/../bin by postinstall_cmds
1274     postinstall_cmds='base_file=`basename \${file}`~
1275       dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
1276       dldir=$destdir/`dirname \$dlpath`~
1277       test -d \$dldir || mkdir -p \$dldir~
1278       $install_prog $dir/$dlname \$dldir/$dlname'
1279     postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
1280       dlpath=$dir/\$dldll~
1281        $rm \$dlpath'
1282     shlibpath_overrides_runpath=yes
1283
1284     case $host_os in
1285     cygwin*)
1286       # Cygwin DLLs use 'cyg' prefix rather than 'lib'
1287       soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
1288       sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
1289       ;;
1290     mingw*)
1291       # MinGW DLLs use traditional 'lib' prefix
1292       soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
1293       sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
1294       if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then
1295         # It is most probably a Windows format PATH printed by
1296         # mingw gcc, but we are running on Cygwin. Gcc prints its search
1297         # path with ; separators, and with drive letters. We can handle the
1298         # drive letters (cygwin fileutils understands them), so leave them,
1299         # especially as we might pass files found there to a mingw objdump,
1300         # which wouldn't understand a cygwinified path. Ahh.
1301         sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
1302       else
1303         sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
1304       fi
1305       ;;
1306     pw32*)
1307       # pw32 DLLs use 'pw' prefix rather than 'lib'
1308       library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
1309       ;;
1310     esac
1311     ;;
1312
1313   *)
1314     library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
1315     ;;
1316   esac
1317   dynamic_linker='Win32 ld.exe'
1318   # FIXME: first we should search . and the directory the executable is in
1319   shlibpath_var=PATH
1320   ;;
1321
1322 darwin* | rhapsody*)
1323   dynamic_linker="$host_os dyld"
1324   version_type=darwin
1325   need_lib_prefix=no
1326   need_version=no
1327   library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
1328   soname_spec='${libname}${release}${major}$shared_ext'
1329   shlibpath_overrides_runpath=yes
1330   shlibpath_var=DYLD_LIBRARY_PATH
1331   shrext_cmds='$(test .$module = .yes && echo .so || echo .dylib)'
1332   # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
1333   if test "$GCC" = yes; then
1334     sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
1335   else
1336     sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib'
1337   fi
1338   sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
1339   ;;
1340
1341 dgux*)
1342   version_type=linux
1343   need_lib_prefix=no
1344   need_version=no
1345   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
1346   soname_spec='${libname}${release}${shared_ext}$major'
1347   shlibpath_var=LD_LIBRARY_PATH
1348   ;;
1349
1350 freebsd1*)
1351   dynamic_linker=no
1352   ;;
1353
1354 kfreebsd*-gnu)
1355   version_type=linux
1356   need_lib_prefix=no
1357   need_version=no
1358   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
1359   soname_spec='${libname}${release}${shared_ext}$major'
1360   shlibpath_var=LD_LIBRARY_PATH
1361   shlibpath_overrides_runpath=no
1362   hardcode_into_libs=yes
1363   dynamic_linker='GNU ld.so'
1364   ;;
1365
1366 freebsd* | dragonfly*)
1367   # DragonFly does not have aout.  When/if they implement a new
1368   # versioning mechanism, adjust this.
1369   objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout`
1370   version_type=freebsd-$objformat
1371   case $version_type in
1372     freebsd-elf*)
1373       library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
1374       need_version=no
1375       need_lib_prefix=no
1376       ;;
1377     freebsd-*)
1378       library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
1379       need_version=yes
1380       ;;
1381   esac
1382   shlibpath_var=LD_LIBRARY_PATH
1383   case $host_os in
1384   freebsd2*)
1385     shlibpath_overrides_runpath=yes
1386     ;;
1387   freebsd3.[[01]]* | freebsdelf3.[[01]]*)
1388     shlibpath_overrides_runpath=yes
1389     hardcode_into_libs=yes
1390     ;;
1391   *) # from 3.2 on
1392     shlibpath_overrides_runpath=no
1393     hardcode_into_libs=yes
1394     ;;
1395   esac
1396   ;;
1397
1398 gnu*)
1399   version_type=linux
1400   need_lib_prefix=no
1401   need_version=no
1402   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
1403   soname_spec='${libname}${release}${shared_ext}$major'
1404   shlibpath_var=LD_LIBRARY_PATH
1405   hardcode_into_libs=yes
1406   ;;
1407
1408 hpux9* | hpux10* | hpux11*)
1409   # Give a soname corresponding to the major version so that dld.sl refuses to
1410   # link against other versions.
1411   version_type=sunos
1412   need_lib_prefix=no
1413   need_version=no
1414   case "$host_cpu" in
1415   ia64*)
1416     shrext_cmds='.so'
1417     hardcode_into_libs=yes
1418     dynamic_linker="$host_os dld.so"
1419     shlibpath_var=LD_LIBRARY_PATH
1420     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
1421     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1422     soname_spec='${libname}${release}${shared_ext}$major'
1423     if test "X$HPUX_IA64_MODE" = X32; then
1424       sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
1425     else
1426       sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
1427     fi
1428     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
1429     ;;
1430    hppa*64*)
1431      shrext_cmds='.sl'
1432      hardcode_into_libs=yes
1433      dynamic_linker="$host_os dld.sl"
1434      shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
1435      shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
1436      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1437      soname_spec='${libname}${release}${shared_ext}$major'
1438      sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
1439      sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
1440      ;;
1441    *)
1442     shrext_cmds='.sl'
1443     dynamic_linker="$host_os dld.sl"
1444     shlibpath_var=SHLIB_PATH
1445     shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
1446     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1447     soname_spec='${libname}${release}${shared_ext}$major'
1448     ;;
1449   esac
1450   # HP-UX runs *really* slowly unless shared libraries are mode 555.
1451   postinstall_cmds='chmod 555 $lib'
1452   ;;
1453
1454 irix5* | irix6* | nonstopux*)
1455   case $host_os in
1456     nonstopux*) version_type=nonstopux ;;
1457     *)
1458         if test "$lt_cv_prog_gnu_ld" = yes; then
1459                 version_type=linux
1460         else
1461                 version_type=irix
1462         fi ;;
1463   esac
1464   need_lib_prefix=no
1465   need_version=no
1466   soname_spec='${libname}${release}${shared_ext}$major'
1467   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
1468   case $host_os in
1469   irix5* | nonstopux*)
1470     libsuff= shlibsuff=
1471     ;;
1472   *)
1473     case $LD in # libtool.m4 will add one of these switches to LD
1474     *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
1475       libsuff= shlibsuff= libmagic=32-bit;;
1476     *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
1477       libsuff=32 shlibsuff=N32 libmagic=N32;;
1478     *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
1479       libsuff=64 shlibsuff=64 libmagic=64-bit;;
1480     *) libsuff= shlibsuff= libmagic=never-match;;
1481     esac
1482     ;;
1483   esac
1484   shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
1485   shlibpath_overrides_runpath=no
1486   sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
1487   sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
1488   hardcode_into_libs=yes
1489   ;;
1490
1491 # No shared lib support for Linux oldld, aout, or coff.
1492 linux*oldld* | linux*aout* | linux*coff*)
1493   dynamic_linker=no
1494   ;;
1495
1496 # This must be Linux ELF.
1497 linux*)
1498   version_type=linux
1499   need_lib_prefix=no
1500   need_version=no
1501   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1502   soname_spec='${libname}${release}${shared_ext}$major'
1503   finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
1504   shlibpath_var=LD_LIBRARY_PATH
1505   shlibpath_overrides_runpath=no
1506   # This implies no fast_install, which is unacceptable.
1507   # Some rework will be needed to allow for fast_install
1508   # before this can be enabled.
1509   hardcode_into_libs=yes
1510
1511   # Append ld.so.conf contents to the search path
1512   if test -f /etc/ld.so.conf; then
1513     lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,    ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
1514     sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
1515   fi
1516
1517   # We used to test for /lib/ld.so.1 and disable shared libraries on
1518   # powerpc, because MkLinux only supported shared libraries with the
1519   # GNU dynamic linker.  Since this was broken with cross compilers,
1520   # most powerpc-linux boxes support dynamic linking these days and
1521   # people can always --disable-shared, the test was removed, and we
1522   # assume the GNU/Linux dynamic linker is in use.
1523   dynamic_linker='GNU/Linux ld.so'
1524   ;;
1525
1526 knetbsd*-gnu)
1527   version_type=linux
1528   need_lib_prefix=no
1529   need_version=no
1530   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
1531   soname_spec='${libname}${release}${shared_ext}$major'
1532   shlibpath_var=LD_LIBRARY_PATH
1533   shlibpath_overrides_runpath=no
1534   hardcode_into_libs=yes
1535   dynamic_linker='GNU ld.so'
1536   ;;
1537
1538 netbsd*)
1539   version_type=sunos
1540   need_lib_prefix=no
1541   need_version=no
1542   if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
1543     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
1544     finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
1545     dynamic_linker='NetBSD (a.out) ld.so'
1546   else
1547     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
1548     soname_spec='${libname}${release}${shared_ext}$major'
1549     dynamic_linker='NetBSD ld.elf_so'
1550   fi
1551   shlibpath_var=LD_LIBRARY_PATH
1552   shlibpath_overrides_runpath=yes
1553   hardcode_into_libs=yes
1554   ;;
1555
1556 newsos6)
1557   version_type=linux
1558   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1559   shlibpath_var=LD_LIBRARY_PATH
1560   shlibpath_overrides_runpath=yes
1561   ;;
1562
1563 nto-qnx*)
1564   version_type=linux
1565   need_lib_prefix=no
1566   need_version=no
1567   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1568   soname_spec='${libname}${release}${shared_ext}$major'
1569   shlibpath_var=LD_LIBRARY_PATH
1570   shlibpath_overrides_runpath=yes
1571   ;;
1572
1573 openbsd*)
1574   version_type=sunos
1575   need_lib_prefix=no
1576   # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
1577   case $host_os in
1578     openbsd3.3 | openbsd3.3.*) need_version=yes ;;
1579     *)                         need_version=no  ;;
1580   esac
1581   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
1582   finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
1583   shlibpath_var=LD_LIBRARY_PATH
1584   if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
1585     case $host_os in
1586       openbsd2.[[89]] | openbsd2.[[89]].*)
1587         shlibpath_overrides_runpath=no
1588         ;;
1589       *)
1590         shlibpath_overrides_runpath=yes
1591         ;;
1592       esac
1593   else
1594     shlibpath_overrides_runpath=yes
1595   fi
1596   ;;
1597
1598 os2*)
1599   libname_spec='$name'
1600   shrext_cmds=".dll"
1601   need_lib_prefix=no
1602   library_names_spec='$libname${shared_ext} $libname.a'
1603   dynamic_linker='OS/2 ld.exe'
1604   shlibpath_var=LIBPATH
1605   ;;
1606
1607 osf3* | osf4* | osf5*)
1608   version_type=osf
1609   need_lib_prefix=no
1610   need_version=no
1611   soname_spec='${libname}${release}${shared_ext}$major'
1612   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1613   shlibpath_var=LD_LIBRARY_PATH
1614   sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
1615   sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
1616   ;;
1617
1618 sco3.2v5*)
1619   version_type=osf
1620   soname_spec='${libname}${release}${shared_ext}$major'
1621   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1622   shlibpath_var=LD_LIBRARY_PATH
1623   ;;
1624
1625 solaris*)
1626   version_type=linux
1627   need_lib_prefix=no
1628   need_version=no
1629   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1630   soname_spec='${libname}${release}${shared_ext}$major'
1631   shlibpath_var=LD_LIBRARY_PATH
1632   shlibpath_overrides_runpath=yes
1633   hardcode_into_libs=yes
1634   # ldd complains unless libraries are executable
1635   postinstall_cmds='chmod +x $lib'
1636   ;;
1637
1638 sunos4*)
1639   version_type=sunos
1640   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
1641   finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
1642   shlibpath_var=LD_LIBRARY_PATH
1643   shlibpath_overrides_runpath=yes
1644   if test "$with_gnu_ld" = yes; then
1645     need_lib_prefix=no
1646   fi
1647   need_version=yes
1648   ;;
1649
1650 sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
1651   version_type=linux
1652   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1653   soname_spec='${libname}${release}${shared_ext}$major'
1654   shlibpath_var=LD_LIBRARY_PATH
1655   case $host_vendor in
1656     sni)
1657       shlibpath_overrides_runpath=no
1658       need_lib_prefix=no
1659       export_dynamic_flag_spec='${wl}-Blargedynsym'
1660       runpath_var=LD_RUN_PATH
1661       ;;
1662     siemens)
1663       need_lib_prefix=no
1664       ;;
1665     motorola)
1666       need_lib_prefix=no
1667       need_version=no
1668       shlibpath_overrides_runpath=no
1669       sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
1670       ;;
1671   esac
1672   ;;
1673
1674 sysv4*MP*)
1675   if test -d /usr/nec ;then
1676     version_type=linux
1677     library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
1678     soname_spec='$libname${shared_ext}.$major'
1679     shlibpath_var=LD_LIBRARY_PATH
1680   fi
1681   ;;
1682
1683 uts4*)
1684   version_type=linux
1685   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1686   soname_spec='${libname}${release}${shared_ext}$major'
1687   shlibpath_var=LD_LIBRARY_PATH
1688   ;;
1689
1690 *)
1691   dynamic_linker=no
1692   ;;
1693 esac
1694 AC_MSG_RESULT([$dynamic_linker])
1695 test "$dynamic_linker" = no && can_build_shared=no
1696 ])# AC_LIBTOOL_SYS_DYNAMIC_LINKER
1697
1698
1699 # _LT_AC_TAGCONFIG
1700 # ----------------
1701 AC_DEFUN([_LT_AC_TAGCONFIG],
1702 [AC_ARG_WITH([tags],
1703     [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@],
1704         [include additional configurations @<:@automatic@:>@])],
1705     [tagnames="$withval"])
1706
1707 if test -f "$ltmain" && test -n "$tagnames"; then
1708   if test ! -f "${ofile}"; then
1709     AC_MSG_WARN([output file `$ofile' does not exist])
1710   fi
1711
1712   if test -z "$LTCC"; then
1713     eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
1714     if test -z "$LTCC"; then
1715       AC_MSG_WARN([output file `$ofile' does not look like a libtool script])
1716     else
1717       AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile'])
1718     fi
1719   fi
1720
1721   # Extract list of available tagged configurations in $ofile.
1722   # Note that this assumes the entire list is on one line.
1723   available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
1724
1725   lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
1726   for tagname in $tagnames; do
1727     IFS="$lt_save_ifs"
1728     # Check whether tagname contains only valid characters
1729     case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in
1730     "") ;;
1731     *)  AC_MSG_ERROR([invalid tag name: $tagname])
1732         ;;
1733     esac
1734
1735     if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null
1736     then
1737       AC_MSG_ERROR([tag name \"$tagname\" already exists])
1738     fi
1739
1740     # Update the list of available tags.
1741     if test -n "$tagname"; then
1742       echo appending configuration tag \"$tagname\" to $ofile
1743
1744       case $tagname in
1745       CXX)
1746         if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
1747             ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
1748             (test "X$CXX" != "Xg++"))) ; then
1749           AC_LIBTOOL_LANG_CXX_CONFIG
1750         else
1751           tagname=""
1752         fi
1753         ;;
1754
1755       F77)
1756         if test -n "$F77" && test "X$F77" != "Xno"; then
1757           AC_LIBTOOL_LANG_F77_CONFIG
1758         else
1759           tagname=""
1760         fi
1761         ;;
1762
1763       GCJ)
1764         if test -n "$GCJ" && test "X$GCJ" != "Xno"; then
1765           AC_LIBTOOL_LANG_GCJ_CONFIG
1766         else
1767           tagname=""
1768         fi
1769         ;;
1770
1771       RC)
1772         AC_LIBTOOL_LANG_RC_CONFIG
1773         ;;
1774
1775       *)
1776         AC_MSG_ERROR([Unsupported tag name: $tagname])
1777         ;;
1778       esac
1779
1780       # Append the new tag name to the list of available tags.
1781       if test -n "$tagname" ; then
1782       available_tags="$available_tags $tagname"
1783     fi
1784     fi
1785   done
1786   IFS="$lt_save_ifs"
1787
1788   # Now substitute the updated list of available tags.
1789   if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then
1790     mv "${ofile}T" "$ofile"
1791     chmod +x "$ofile"
1792   else
1793     rm -f "${ofile}T"
1794     AC_MSG_ERROR([unable to update list of available tagged configurations.])
1795   fi
1796 fi
1797 ])# _LT_AC_TAGCONFIG
1798
1799
1800 # AC_LIBTOOL_DLOPEN
1801 # -----------------
1802 # enable checks for dlopen support
1803 AC_DEFUN([AC_LIBTOOL_DLOPEN],
1804  [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])
1805 ])# AC_LIBTOOL_DLOPEN
1806
1807
1808 # AC_LIBTOOL_WIN32_DLL
1809 # --------------------
1810 # declare package support for building win32 dll's
1811 AC_DEFUN([AC_LIBTOOL_WIN32_DLL],
1812 [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])
1813 ])# AC_LIBTOOL_WIN32_DLL
1814
1815
1816 # AC_ENABLE_SHARED([DEFAULT])
1817 # ---------------------------
1818 # implement the --enable-shared flag
1819 # DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
1820 AC_DEFUN([AC_ENABLE_SHARED],
1821 [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
1822 AC_ARG_ENABLE([shared],
1823     [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
1824         [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])],
1825     [p=${PACKAGE-default}
1826     case $enableval in
1827     yes) enable_shared=yes ;;
1828     no) enable_shared=no ;;
1829     *)
1830       enable_shared=no
1831       # Look at the argument we got.  We use all the common list separators.
1832       lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
1833       for pkg in $enableval; do
1834         IFS="$lt_save_ifs"
1835         if test "X$pkg" = "X$p"; then
1836           enable_shared=yes
1837         fi
1838       done
1839       IFS="$lt_save_ifs"
1840       ;;
1841     esac],
1842     [enable_shared=]AC_ENABLE_SHARED_DEFAULT)
1843 ])# AC_ENABLE_SHARED
1844
1845
1846 # AC_DISABLE_SHARED
1847 # -----------------
1848 #- set the default shared flag to --disable-shared
1849 AC_DEFUN([AC_DISABLE_SHARED],
1850 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
1851 AC_ENABLE_SHARED(no)
1852 ])# AC_DISABLE_SHARED
1853
1854
1855 # AC_ENABLE_STATIC([DEFAULT])
1856 # ---------------------------
1857 # implement the --enable-static flag
1858 # DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
1859 AC_DEFUN([AC_ENABLE_STATIC],
1860 [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
1861 AC_ARG_ENABLE([static],
1862     [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@],
1863         [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])],
1864     [p=${PACKAGE-default}
1865     case $enableval in
1866     yes) enable_static=yes ;;
1867     no) enable_static=no ;;
1868     *)
1869      enable_static=no
1870       # Look at the argument we got.  We use all the common list separators.
1871       lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
1872       for pkg in $enableval; do
1873         IFS="$lt_save_ifs"
1874         if test "X$pkg" = "X$p"; then
1875           enable_static=yes
1876         fi
1877       done
1878       IFS="$lt_save_ifs"
1879       ;;
1880     esac],
1881     [enable_static=]AC_ENABLE_STATIC_DEFAULT)
1882 ])# AC_ENABLE_STATIC
1883
1884
1885 # AC_DISABLE_STATIC
1886 # -----------------
1887 # set the default static flag to --disable-static
1888 AC_DEFUN([AC_DISABLE_STATIC],
1889 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
1890 AC_ENABLE_STATIC(no)
1891 ])# AC_DISABLE_STATIC
1892
1893
1894 # AC_ENABLE_FAST_INSTALL([DEFAULT])
1895 # ---------------------------------
1896 # implement the --enable-fast-install flag
1897 # DEFAULT is either `yes' or `no'.  If omitted, it defaults to `yes'.
1898 AC_DEFUN([AC_ENABLE_FAST_INSTALL],
1899 [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
1900 AC_ARG_ENABLE([fast-install],
1901     [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
1902     [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
1903     [p=${PACKAGE-default}
1904     case $enableval in
1905     yes) enable_fast_install=yes ;;
1906     no) enable_fast_install=no ;;
1907     *)
1908       enable_fast_install=no
1909       # Look at the argument we got.  We use all the common list separators.
1910       lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
1911       for pkg in $enableval; do
1912         IFS="$lt_save_ifs"
1913         if test "X$pkg" = "X$p"; then
1914           enable_fast_install=yes
1915         fi
1916       done
1917       IFS="$lt_save_ifs"
1918       ;;
1919     esac],
1920     [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT)
1921 ])# AC_ENABLE_FAST_INSTALL
1922
1923
1924 # AC_DISABLE_FAST_INSTALL
1925 # -----------------------
1926 # set the default to --disable-fast-install
1927 AC_DEFUN([AC_DISABLE_FAST_INSTALL],
1928 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
1929 AC_ENABLE_FAST_INSTALL(no)
1930 ])# AC_DISABLE_FAST_INSTALL
1931
1932
1933 # AC_LIBTOOL_PICMODE([MODE])
1934 # --------------------------
1935 # implement the --with-pic flag
1936 # MODE is either `yes' or `no'.  If omitted, it defaults to `both'.
1937 AC_DEFUN([AC_LIBTOOL_PICMODE],
1938 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
1939 pic_mode=ifelse($#,1,$1,default)
1940 ])# AC_LIBTOOL_PICMODE
1941
1942
1943 # AC_PROG_EGREP
1944 # -------------
1945 # This is predefined starting with Autoconf 2.54, so this conditional
1946 # definition can be removed once we require Autoconf 2.54 or later.
1947 m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP],
1948 [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep],
1949    [if echo a | (grep -E '(a|b)') >/dev/null 2>&1
1950     then ac_cv_prog_egrep='grep -E'
1951     else ac_cv_prog_egrep='egrep'
1952     fi])
1953  EGREP=$ac_cv_prog_egrep
1954  AC_SUBST([EGREP])
1955 ])])
1956
1957
1958 # AC_PATH_TOOL_PREFIX
1959 # -------------------
1960 # find a file program which can recognise shared library
1961 AC_DEFUN([AC_PATH_TOOL_PREFIX],
1962 [AC_REQUIRE([AC_PROG_EGREP])dnl
1963 AC_MSG_CHECKING([for $1])
1964 AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
1965 [case $MAGIC_CMD in
1966 [[\\/*] |  ?:[\\/]*])
1967   lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
1968   ;;
1969 *)
1970   lt_save_MAGIC_CMD="$MAGIC_CMD"
1971   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
1972 dnl $ac_dummy forces splitting on constant user-supplied paths.
1973 dnl POSIX.2 word splitting is done only on the output of word expansions,
1974 dnl not every word.  This closes a longstanding sh security hole.
1975   ac_dummy="ifelse([$2], , $PATH, [$2])"
1976   for ac_dir in $ac_dummy; do
1977     IFS="$lt_save_ifs"
1978     test -z "$ac_dir" && ac_dir=.
1979     if test -f $ac_dir/$1; then
1980       lt_cv_path_MAGIC_CMD="$ac_dir/$1"
1981       if test -n "$file_magic_test_file"; then
1982         case $deplibs_check_method in
1983         "file_magic "*)
1984           file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
1985           MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
1986           if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
1987             $EGREP "$file_magic_regex" > /dev/null; then
1988             :
1989           else
1990             cat <<EOF 1>&2
1991
1992 *** Warning: the command libtool uses to detect shared libraries,
1993 *** $file_magic_cmd, produces output that libtool cannot recognize.
1994 *** The result is that libtool may fail to recognize shared libraries
1995 *** as such.  This will affect the creation of libtool libraries that
1996 *** depend on shared libraries, but programs linked with such libtool
1997 *** libraries will work regardless of this problem.  Nevertheless, you
1998 *** may want to report the problem to your system manager and/or to
1999 *** bug-libtool@gnu.org
2000
2001 EOF
2002           fi ;;
2003         esac
2004       fi
2005       break
2006     fi
2007   done
2008   IFS="$lt_save_ifs"
2009   MAGIC_CMD="$lt_save_MAGIC_CMD"
2010   ;;
2011 esac])
2012 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
2013 if test -n "$MAGIC_CMD"; then
2014   AC_MSG_RESULT($MAGIC_CMD)
2015 else
2016   AC_MSG_RESULT(no)
2017 fi
2018 ])# AC_PATH_TOOL_PREFIX
2019
2020
2021 # AC_PATH_MAGIC
2022 # -------------
2023 # find a file program which can recognise a shared library
2024 AC_DEFUN([AC_PATH_MAGIC],
2025 [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
2026 if test -z "$lt_cv_path_MAGIC_CMD"; then
2027   if test -n "$ac_tool_prefix"; then
2028     AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
2029   else
2030     MAGIC_CMD=:
2031   fi
2032 fi
2033 ])# AC_PATH_MAGIC
2034
2035
2036 # AC_PROG_LD
2037 # ----------
2038 # find the pathname to the GNU or non-GNU linker
2039 AC_DEFUN([AC_PROG_LD],
2040 [AC_ARG_WITH([gnu-ld],
2041     [AC_HELP_STRING([--with-gnu-ld],
2042         [assume the C compiler uses GNU ld @<:@default=no@:>@])],
2043     [test "$withval" = no || with_gnu_ld=yes],
2044     [with_gnu_ld=no])
2045 AC_REQUIRE([LT_AC_PROG_SED])dnl
2046 AC_REQUIRE([AC_PROG_CC])dnl
2047 AC_REQUIRE([AC_CANONICAL_HOST])dnl
2048 AC_REQUIRE([AC_CANONICAL_BUILD])dnl
2049 ac_prog=ld
2050 if test "$GCC" = yes; then
2051   # Check if gcc -print-prog-name=ld gives a path.
2052   AC_MSG_CHECKING([for ld used by $CC])
2053   case $host in
2054   *-*-mingw*)
2055     # gcc leaves a trailing carriage return which upsets mingw
2056     ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
2057   *)
2058     ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
2059   esac
2060   case $ac_prog in
2061     # Accept absolute paths.
2062     [[\\/]]* | ?:[[\\/]]*)
2063       re_direlt='/[[^/]][[^/]]*/\.\./'
2064       # Canonicalize the pathname of ld
2065       ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
2066       while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
2067         ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
2068       done
2069       test -z "$LD" && LD="$ac_prog"
2070       ;;
2071   "")
2072     # If it fails, then pretend we aren't using GCC.
2073     ac_prog=ld
2074     ;;
2075   *)
2076     # If it is relative, then search for the first ld in PATH.
2077     with_gnu_ld=unknown
2078     ;;
2079   esac
2080 elif test "$with_gnu_ld" = yes; then
2081   AC_MSG_CHECKING([for GNU ld])
2082 else
2083   AC_MSG_CHECKING([for non-GNU ld])
2084 fi
2085 AC_CACHE_VAL(lt_cv_path_LD,
2086 [if test -z "$LD"; then
2087   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
2088   for ac_dir in $PATH; do
2089     IFS="$lt_save_ifs"
2090     test -z "$ac_dir" && ac_dir=.
2091     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
2092       lt_cv_path_LD="$ac_dir/$ac_prog"
2093       # Check to see if the program is GNU ld.  I'd rather use --version,
2094       # but apparently some GNU ld's only accept -v.
2095       # Break only if it was the GNU/non-GNU ld that we prefer.
2096       case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
2097       *GNU* | *'with BFD'*)
2098         test "$with_gnu_ld" != no && break
2099         ;;
2100       *)
2101         test "$with_gnu_ld" != yes && break
2102         ;;
2103       esac
2104     fi
2105   done
2106   IFS="$lt_save_ifs"
2107 else
2108   lt_cv_path_LD="$LD" # Let the user override the test with a path.
2109 fi])
2110 LD="$lt_cv_path_LD"
2111 if test -n "$LD"; then
2112   AC_MSG_RESULT($LD)
2113 else
2114   AC_MSG_RESULT(no)
2115 fi
2116 test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
2117 AC_PROG_LD_GNU
2118 ])# AC_PROG_LD
2119
2120
2121 # AC_PROG_LD_GNU
2122 # --------------
2123 AC_DEFUN([AC_PROG_LD_GNU],
2124 [AC_REQUIRE([AC_PROG_EGREP])dnl
2125 AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
2126 [# I'd rather use --version here, but apparently some GNU ld's only accept -v.
2127 case `$LD -v 2>&1 </dev/null` in
2128 *GNU* | *'with BFD'*)
2129   lt_cv_prog_gnu_ld=yes
2130   ;;
2131 *)
2132   lt_cv_prog_gnu_ld=no
2133   ;;
2134 esac])
2135 with_gnu_ld=$lt_cv_prog_gnu_ld
2136 ])# AC_PROG_LD_GNU
2137
2138
2139 # AC_PROG_LD_RELOAD_FLAG
2140 # ----------------------
2141 # find reload flag for linker
2142 #   -- PORTME Some linkers may need a different reload flag.
2143 AC_DEFUN([AC_PROG_LD_RELOAD_FLAG],
2144 [AC_CACHE_CHECK([for $LD option to reload object files],
2145   lt_cv_ld_reload_flag,
2146   [lt_cv_ld_reload_flag='-r'])
2147 reload_flag=$lt_cv_ld_reload_flag
2148 case $reload_flag in
2149 "" | " "*) ;;
2150 *) reload_flag=" $reload_flag" ;;
2151 esac
2152 reload_cmds='$LD$reload_flag -o $output$reload_objs'
2153 case $host_os in
2154   darwin*)
2155     if test "$GCC" = yes; then
2156       reload_cmds='$CC -nostdlib ${wl}-r -o $output$reload_objs'
2157     else
2158       reload_cmds='$LD$reload_flag -o $output$reload_objs'
2159     fi
2160     ;;
2161 esac
2162 ])# AC_PROG_LD_RELOAD_FLAG
2163
2164
2165 # AC_DEPLIBS_CHECK_METHOD
2166 # -----------------------
2167 # how to check for library dependencies
2168 #  -- PORTME fill in with the dynamic library characteristics
2169 AC_DEFUN([AC_DEPLIBS_CHECK_METHOD],
2170 [AC_CACHE_CHECK([how to recognise dependent libraries],
2171 lt_cv_deplibs_check_method,
2172 [lt_cv_file_magic_cmd='$MAGIC_CMD'
2173 lt_cv_file_magic_test_file=
2174 lt_cv_deplibs_check_method='unknown'
2175 # Need to set the preceding variable on all platforms that support
2176 # interlibrary dependencies.
2177 # 'none' -- dependencies not supported.
2178 # `unknown' -- same as none, but documents that we really don't know.
2179 # 'pass_all' -- all dependencies passed with no checks.
2180 # 'test_compile' -- check by making test program.
2181 # 'file_magic [[regex]]' -- check by looking for files in library path
2182 # which responds to the $file_magic_cmd with a given extended regex.
2183 # If you have `file' or equivalent on your system and you're not sure
2184 # whether `pass_all' will *always* work, you probably want this one.
2185
2186 case $host_os in
2187 aix4* | aix5*)
2188   lt_cv_deplibs_check_method=pass_all
2189   ;;
2190
2191 beos*)
2192   lt_cv_deplibs_check_method=pass_all
2193   ;;
2194
2195 bsdi[[45]]*)
2196   lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
2197   lt_cv_file_magic_cmd='/usr/bin/file -L'
2198   lt_cv_file_magic_test_file=/shlib/libc.so
2199   ;;
2200
2201 cygwin*)
2202   # func_win32_libid is a shell function defined in ltmain.sh
2203   lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
2204   lt_cv_file_magic_cmd='func_win32_libid'
2205   ;;
2206
2207 mingw* | pw32*)
2208   # Base MSYS/MinGW do not provide the 'file' command needed by
2209   # func_win32_libid shell function, so use a weaker test based on 'objdump'.
2210   lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
2211   lt_cv_file_magic_cmd='$OBJDUMP -f'
2212   ;;
2213
2214 darwin* | rhapsody*)
2215   lt_cv_deplibs_check_method=pass_all
2216   ;;
2217
2218 freebsd* | kfreebsd*-gnu | dragonfly*)
2219   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
2220     case $host_cpu in
2221     i*86 )
2222       # Not sure whether the presence of OpenBSD here was a mistake.
2223       # Let's accept both of them until this is cleared up.
2224       lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
2225       lt_cv_file_magic_cmd=/usr/bin/file
2226       lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
2227       ;;
2228     esac
2229   else
2230     lt_cv_deplibs_check_method=pass_all
2231   fi
2232   ;;
2233
2234 gnu*)
2235   lt_cv_deplibs_check_method=pass_all
2236   ;;
2237
2238 hpux10.20* | hpux11*)
2239   lt_cv_file_magic_cmd=/usr/bin/file
2240   case "$host_cpu" in
2241   ia64*)
2242     lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
2243     lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
2244     ;;
2245   hppa*64*)
2246     [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]']
2247     lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
2248     ;;
2249   *)
2250     lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library'
2251     lt_cv_file_magic_test_file=/usr/lib/libc.sl
2252     ;;
2253   esac
2254   ;;
2255
2256 irix5* | irix6* | nonstopux*)
2257   case $LD in
2258   *-32|*"-32 ") libmagic=32-bit;;
2259   *-n32|*"-n32 ") libmagic=N32;;
2260   *-64|*"-64 ") libmagic=64-bit;;
2261   *) libmagic=never-match;;
2262   esac
2263   lt_cv_deplibs_check_method=pass_all
2264   ;;
2265
2266 # This must be Linux ELF.
2267 linux*)
2268   lt_cv_deplibs_check_method=pass_all
2269   ;;
2270
2271 netbsd*)
2272   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
2273     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
2274   else
2275     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
2276   fi
2277   ;;
2278
2279 newos6*)
2280   lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
2281   lt_cv_file_magic_cmd=/usr/bin/file
2282   lt_cv_file_magic_test_file=/usr/lib/libnls.so
2283   ;;
2284
2285 nto-qnx*)
2286   lt_cv_deplibs_check_method=unknown
2287   ;;
2288
2289 openbsd*)
2290   if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
2291     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
2292   else
2293     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
2294   fi
2295   ;;
2296
2297 osf3* | osf4* | osf5*)
2298   lt_cv_deplibs_check_method=pass_all
2299   ;;
2300
2301 sco3.2v5*)
2302   lt_cv_deplibs_check_method=pass_all
2303   ;;
2304
2305 solaris*)
2306   lt_cv_deplibs_check_method=pass_all
2307   ;;
2308
2309 sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
2310   case $host_vendor in
2311   motorola)
2312     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]'
2313     lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
2314     ;;
2315   ncr)
2316     lt_cv_deplibs_check_method=pass_all
2317     ;;
2318   sequent)
2319     lt_cv_file_magic_cmd='/bin/file'
2320     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
2321     ;;
2322   sni)
2323     lt_cv_file_magic_cmd='/bin/file'
2324     lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
2325     lt_cv_file_magic_test_file=/lib/libc.so
2326     ;;
2327   siemens)
2328     lt_cv_deplibs_check_method=pass_all
2329     ;;
2330   esac
2331   ;;
2332
2333 sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7* | sysv4*uw2*)
2334   lt_cv_deplibs_check_method=pass_all
2335   ;;
2336 esac
2337 ])
2338 file_magic_cmd=$lt_cv_file_magic_cmd
2339 deplibs_check_method=$lt_cv_deplibs_check_method
2340 test -z "$deplibs_check_method" && deplibs_check_method=unknown
2341 ])# AC_DEPLIBS_CHECK_METHOD
2342
2343
2344 # AC_PROG_NM
2345 # ----------
2346 # find the pathname to a BSD-compatible name lister
2347 AC_DEFUN([AC_PROG_NM],
2348 [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM,
2349 [if test -n "$NM"; then
2350   # Let the user override the test.
2351   lt_cv_path_NM="$NM"
2352 else
2353   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
2354   for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
2355     IFS="$lt_save_ifs"
2356     test -z "$ac_dir" && ac_dir=.
2357     tmp_nm="$ac_dir/${ac_tool_prefix}nm"
2358     if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
2359       # Check to see if the nm accepts a BSD-compat flag.
2360       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
2361       #   nm: unknown option "B" ignored
2362       # Tru64's nm complains that /dev/null is an invalid object file
2363       case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
2364       */dev/null* | *'Invalid file or object type'*)
2365         lt_cv_path_NM="$tmp_nm -B"
2366         break
2367         ;;
2368       *)
2369         case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
2370         */dev/null*)
2371           lt_cv_path_NM="$tmp_nm -p"
2372           break
2373           ;;
2374         *)
2375           lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
2376           continue # so that we can try to find one that supports BSD flags
2377           ;;
2378         esac
2379       esac
2380     fi
2381   done
2382   IFS="$lt_save_ifs"
2383   test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
2384 fi])
2385 NM="$lt_cv_path_NM"
2386 ])# AC_PROG_NM
2387
2388
2389 # AC_CHECK_LIBM
2390 # -------------
2391 # check for math library
2392 AC_DEFUN([AC_CHECK_LIBM],
2393 [AC_REQUIRE([AC_CANONICAL_HOST])dnl
2394 LIBM=
2395 case $host in
2396 *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
2397   # These system don't have libm, or don't need it
2398   ;;
2399 *-ncr-sysv4.3*)
2400   AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
2401   AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
2402   ;;
2403 *)
2404   AC_CHECK_LIB(m, cos, LIBM="-lm")
2405   ;;
2406 esac
2407 ])# AC_CHECK_LIBM
2408
2409
2410 # AC_LIBLTDL_CONVENIENCE([DIRECTORY])
2411 # -----------------------------------
2412 # sets LIBLTDL to the link flags for the libltdl convenience library and
2413 # LTDLINCL to the include flags for the libltdl header and adds
2414 # --enable-ltdl-convenience to the configure arguments.  Note that LIBLTDL
2415 # and LTDLINCL are not AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called.  If
2416 # DIRECTORY is not provided, it is assumed to be `libltdl'.  LIBLTDL will
2417 # be prefixed with '${top_builddir}/' and LTDLINCL will be prefixed with
2418 # '${top_srcdir}/' (note the single quotes!).  If your package is not
2419 # flat and you're not using automake, define top_builddir and
2420 # top_srcdir appropriately in the Makefiles.
2421 AC_DEFUN([AC_LIBLTDL_CONVENIENCE],
2422 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
2423   case $enable_ltdl_convenience in
2424   no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
2425   "") enable_ltdl_convenience=yes
2426       ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
2427   esac
2428   LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la
2429   LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
2430   # For backwards non-gettext consistent compatibility...
2431   INCLTDL="$LTDLINCL"
2432 ])# AC_LIBLTDL_CONVENIENCE
2433
2434
2435 # AC_LIBLTDL_INSTALLABLE([DIRECTORY])
2436 # -----------------------------------
2437 # sets LIBLTDL to the link flags for the libltdl installable library and
2438 # LTDLINCL to the include flags for the libltdl header and adds
2439 # --enable-ltdl-install to the configure arguments.  Note that LIBLTDL
2440 # and LTDLINCL are not AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called.  If
2441 # DIRECTORY is not provided and an installed libltdl is not found, it is
2442 # assumed to be `libltdl'.  LIBLTDL will be prefixed with '${top_builddir}/'
2443 # and LTDLINCL will be prefixed with '${top_srcdir}/' (note the single
2444 # quotes!).  If your package is not flat and you're not using automake,
2445 # define top_builddir and top_srcdir appropriately in the Makefiles.
2446 # In the future, this macro may have to be called after AC_PROG_LIBTOOL.
2447 AC_DEFUN([AC_LIBLTDL_INSTALLABLE],
2448 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
2449   AC_CHECK_LIB(ltdl, lt_dlinit,
2450   [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no],
2451   [if test x"$enable_ltdl_install" = xno; then
2452      AC_MSG_WARN([libltdl not installed, but installation disabled])
2453    else
2454      enable_ltdl_install=yes
2455    fi
2456   ])
2457   if test x"$enable_ltdl_install" = x"yes"; then
2458     ac_configure_args="$ac_configure_args --enable-ltdl-install"
2459     LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la
2460     LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
2461   else
2462     ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
2463     LIBLTDL="-lltdl"
2464     LTDLINCL=
2465   fi
2466   # For backwards non-gettext consistent compatibility...
2467   INCLTDL="$LTDLINCL"
2468 ])# AC_LIBLTDL_INSTALLABLE
2469
2470
2471 # AC_LIBTOOL_CXX
2472 # --------------
2473 # enable support for C++ libraries
2474 AC_DEFUN([AC_LIBTOOL_CXX],
2475 [AC_REQUIRE([_LT_AC_LANG_CXX])
2476 ])# AC_LIBTOOL_CXX
2477
2478
2479 # _LT_AC_LANG_CXX
2480 # ---------------
2481 AC_DEFUN([_LT_AC_LANG_CXX],
2482 [AC_REQUIRE([AC_PROG_CXX])
2483 AC_REQUIRE([_LT_AC_PROG_CXXCPP])
2484 _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX])
2485 ])# _LT_AC_LANG_CXX
2486
2487 # _LT_AC_PROG_CXXCPP
2488 # ---------------
2489 AC_DEFUN([_LT_AC_PROG_CXXCPP],
2490 [
2491 AC_REQUIRE([AC_PROG_CXX])
2492 if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
2493     ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
2494     (test "X$CXX" != "Xg++"))) ; then
2495   AC_PROG_CXXCPP
2496 fi
2497 ])# _LT_AC_PROG_CXXCPP
2498
2499 # AC_LIBTOOL_F77
2500 # --------------
2501 # enable support for Fortran 77 libraries
2502 AC_DEFUN([AC_LIBTOOL_F77],
2503 [AC_REQUIRE([_LT_AC_LANG_F77])
2504 ])# AC_LIBTOOL_F77
2505
2506
2507 # _LT_AC_LANG_F77
2508 # ---------------
2509 AC_DEFUN([_LT_AC_LANG_F77],
2510 [AC_REQUIRE([AC_PROG_F77])
2511 _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77])
2512 ])# _LT_AC_LANG_F77
2513
2514
2515 # AC_LIBTOOL_GCJ
2516 # --------------
2517 # enable support for GCJ libraries
2518 AC_DEFUN([AC_LIBTOOL_GCJ],
2519 [AC_REQUIRE([_LT_AC_LANG_GCJ])
2520 ])# AC_LIBTOOL_GCJ
2521
2522
2523 # _LT_AC_LANG_GCJ
2524 # ---------------
2525 AC_DEFUN([_LT_AC_LANG_GCJ],
2526 [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[],
2527   [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[],
2528     [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[],
2529       [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])],
2530          [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])],
2531            [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])])
2532 _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ])
2533 ])# _LT_AC_LANG_GCJ
2534
2535
2536 # AC_LIBTOOL_RC
2537 # --------------
2538 # enable support for Windows resource files
2539 AC_DEFUN([AC_LIBTOOL_RC],
2540 [AC_REQUIRE([LT_AC_PROG_RC])
2541 _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC])
2542 ])# AC_LIBTOOL_RC
2543
2544
2545 # AC_LIBTOOL_LANG_C_CONFIG
2546 # ------------------------
2547 # Ensure that the configuration vars for the C compiler are
2548 # suitably defined.  Those variables are subsequently used by
2549 # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
2550 AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG])
2551 AC_DEFUN([_LT_AC_LANG_C_CONFIG],
2552 [lt_save_CC="$CC"
2553 AC_LANG_PUSH(C)
2554
2555 # Source file extension for C test sources.
2556 ac_ext=c
2557
2558 # Object file extension for compiled C test sources.
2559 objext=o
2560 _LT_AC_TAGVAR(objext, $1)=$objext
2561
2562 # Code to be used in simple compile tests
2563 lt_simple_compile_test_code="int some_variable = 0;\n"
2564
2565 # Code to be used in simple link tests
2566 lt_simple_link_test_code='int main(){return(0);}\n'
2567
2568 _LT_AC_SYS_COMPILER
2569
2570 # save warnings/boilerplate of simple test code
2571 _LT_COMPILER_BOILERPLATE
2572 _LT_LINKER_BOILERPLATE
2573
2574 #
2575 # Check for any special shared library compilation flags.
2576 #
2577 _LT_AC_TAGVAR(lt_prog_cc_shlib, $1)=
2578 if test "$GCC" = no; then
2579   case $host_os in
2580   sco3.2v5*)
2581     _LT_AC_TAGVAR(lt_prog_cc_shlib, $1)='-belf'
2582     ;;
2583   esac
2584 fi
2585 if test -n "$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)"; then
2586   AC_MSG_WARN([`$CC' requires `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to build shared libraries])
2587   if echo "$old_CC $old_CFLAGS " | grep "[[     ]]$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)[[        ]]" >/dev/null; then :
2588   else
2589     AC_MSG_WARN([add `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to the CC or CFLAGS env variable and reconfigure])
2590     _LT_AC_TAGVAR(lt_cv_prog_cc_can_build_shared, $1)=no
2591   fi
2592 fi
2593
2594
2595 #
2596 # Check to make sure the static flag actually works.
2597 #
2598 AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $_LT_AC_TAGVAR(lt_prog_compiler_static, $1) works],
2599   _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1),
2600   $_LT_AC_TAGVAR(lt_prog_compiler_static, $1),
2601   [],
2602   [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=])
2603
2604
2605 ## CAVEAT EMPTOR:
2606 ## There is no encapsulation within the following macros, do not change
2607 ## the running order or otherwise move them around unless you know exactly
2608 ## what you are doing...
2609 AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
2610 AC_LIBTOOL_PROG_COMPILER_PIC($1)
2611 AC_LIBTOOL_PROG_CC_C_O($1)
2612 AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
2613 AC_LIBTOOL_PROG_LD_SHLIBS($1)
2614 AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
2615 AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
2616 AC_LIBTOOL_SYS_LIB_STRIP
2617 AC_LIBTOOL_DLOPEN_SELF($1)
2618
2619 # Report which librarie types wil actually be built
2620 AC_MSG_CHECKING([if libtool supports shared libraries])
2621 AC_MSG_RESULT([$can_build_shared])
2622
2623 AC_MSG_CHECKING([whether to build shared libraries])
2624 test "$can_build_shared" = "no" && enable_shared=no
2625
2626 # On AIX, shared libraries and static libraries use the same namespace, and
2627 # are all built from PIC.
2628 case "$host_os" in
2629 aix3*)
2630   test "$enable_shared" = yes && enable_static=no
2631   if test -n "$RANLIB"; then
2632     archive_cmds="$archive_cmds~\$RANLIB \$lib"
2633     postinstall_cmds='$RANLIB $lib'
2634   fi
2635   ;;
2636
2637 aix4* | aix5*)
2638   if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
2639     test "$enable_shared" = yes && enable_static=no
2640   fi
2641     ;;
2642 esac
2643 AC_MSG_RESULT([$enable_shared])
2644
2645 AC_MSG_CHECKING([whether to build static libraries])
2646 # Make sure either enable_shared or enable_static is yes.
2647 test "$enable_shared" = yes || enable_static=yes
2648 AC_MSG_RESULT([$enable_static])
2649
2650 AC_LIBTOOL_CONFIG($1)
2651
2652 AC_LANG_POP
2653 CC="$lt_save_CC"
2654 ])# AC_LIBTOOL_LANG_C_CONFIG
2655
2656
2657 # AC_LIBTOOL_LANG_CXX_CONFIG
2658 # --------------------------
2659 # Ensure that the configuration vars for the C compiler are
2660 # suitably defined.  Those variables are subsequently used by
2661 # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
2662 AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)])
2663 AC_DEFUN([_LT_AC_LANG_CXX_CONFIG],
2664 [AC_LANG_PUSH(C++)
2665 AC_REQUIRE([AC_PROG_CXX])
2666 AC_REQUIRE([_LT_AC_PROG_CXXCPP])
2667
2668 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
2669 _LT_AC_TAGVAR(allow_undefined_flag, $1)=
2670 _LT_AC_TAGVAR(always_export_symbols, $1)=no
2671 _LT_AC_TAGVAR(archive_expsym_cmds, $1)=
2672 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
2673 _LT_AC_TAGVAR(hardcode_direct, $1)=no
2674 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
2675 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
2676 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
2677 _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
2678 _LT_AC_TAGVAR(hardcode_automatic, $1)=no
2679 _LT_AC_TAGVAR(module_cmds, $1)=
2680 _LT_AC_TAGVAR(module_expsym_cmds, $1)=
2681 _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
2682 _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
2683 _LT_AC_TAGVAR(no_undefined_flag, $1)=
2684 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
2685 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
2686
2687 # Dependencies to place before and after the object being linked:
2688 _LT_AC_TAGVAR(predep_objects, $1)=
2689 _LT_AC_TAGVAR(postdep_objects, $1)=
2690 _LT_AC_TAGVAR(predeps, $1)=
2691 _LT_AC_TAGVAR(postdeps, $1)=
2692 _LT_AC_TAGVAR(compiler_lib_search_path, $1)=
2693
2694 # Source file extension for C++ test sources.
2695 ac_ext=cc
2696
2697 # Object file extension for compiled C++ test sources.
2698 objext=o
2699 _LT_AC_TAGVAR(objext, $1)=$objext
2700
2701 # Code to be used in simple compile tests
2702 lt_simple_compile_test_code="int some_variable = 0;\n"
2703
2704 # Code to be used in simple link tests
2705 lt_simple_link_test_code='int main(int, char *[]) { return(0); }\n'
2706
2707 # ltmain only uses $CC for tagged configurations so make sure $CC is set.
2708 _LT_AC_SYS_COMPILER
2709
2710 # save warnings/boilerplate of simple test code
2711 _LT_COMPILER_BOILERPLATE
2712 _LT_LINKER_BOILERPLATE
2713
2714 # Allow CC to be a program name with arguments.
2715 lt_save_CC=$CC
2716 lt_save_LD=$LD
2717 lt_save_GCC=$GCC
2718 GCC=$GXX
2719 lt_save_with_gnu_ld=$with_gnu_ld
2720 lt_save_path_LD=$lt_cv_path_LD
2721 if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
2722   lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
2723 else
2724   unset lt_cv_prog_gnu_ld
2725 fi
2726 if test -n "${lt_cv_path_LDCXX+set}"; then
2727   lt_cv_path_LD=$lt_cv_path_LDCXX
2728 else
2729   unset lt_cv_path_LD
2730 fi
2731 test -z "${LDCXX+set}" || LD=$LDCXX
2732 CC=${CXX-"c++"}
2733 compiler=$CC
2734 _LT_AC_TAGVAR(compiler, $1)=$CC
2735 _LT_CC_BASENAME([$compiler])
2736
2737 # We don't want -fno-exception wen compiling C++ code, so set the
2738 # no_builtin_flag separately
2739 if test "$GXX" = yes; then
2740   _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
2741 else
2742   _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
2743 fi
2744
2745 if test "$GXX" = yes; then
2746   # Set up default GNU C++ configuration
2747
2748   AC_PROG_LD
2749
2750   # Check if GNU C++ uses GNU ld as the underlying linker, since the
2751   # archiving commands below assume that GNU ld is being used.
2752   if test "$with_gnu_ld" = yes; then
2753     _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
2754     _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
2755
2756     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
2757     _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
2758
2759     # If archive_cmds runs LD, not CC, wlarc should be empty
2760     # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
2761     #     investigate it a little bit more. (MM)
2762     wlarc='${wl}'
2763
2764     # ancient GNU ld didn't support --whole-archive et. al.
2765     if eval "`$CC -print-prog-name=ld` --help 2>&1" | \
2766         grep 'no-whole-archive' > /dev/null; then
2767       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
2768     else
2769       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
2770     fi
2771   else
2772     with_gnu_ld=no
2773     wlarc=
2774
2775     # A generic and very simple default shared library creation
2776     # command for GNU C++ for the case where it uses the native
2777     # linker, instead of GNU ld.  If possible, this setting should
2778     # overridden to take advantage of the native linker features on
2779     # the platform it is being used on.
2780     _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
2781   fi
2782
2783   # Commands to make compiler produce verbose output that lists
2784   # what "hidden" libraries, object files and flags are used when
2785   # linking a shared library.
2786   output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
2787
2788 else
2789   GXX=no
2790   with_gnu_ld=no
2791   wlarc=
2792 fi
2793
2794 # PORTME: fill in a description of your system's C++ link characteristics
2795 AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
2796 _LT_AC_TAGVAR(ld_shlibs, $1)=yes
2797 case $host_os in
2798   aix3*)
2799     # FIXME: insert proper C++ library support
2800     _LT_AC_TAGVAR(ld_shlibs, $1)=no
2801     ;;
2802   aix4* | aix5*)
2803     if test "$host_cpu" = ia64; then
2804       # On IA64, the linker does run time linking by default, so we don't
2805       # have to do anything special.
2806       aix_use_runtimelinking=no
2807       exp_sym_flag='-Bexport'
2808       no_entry_flag=""
2809     else
2810       aix_use_runtimelinking=no
2811
2812       # Test if we are trying to use run time linking or normal
2813       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
2814       # need to do runtime linking.
2815       case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*)
2816         for ld_flag in $LDFLAGS; do
2817           case $ld_flag in
2818           *-brtl*)
2819             aix_use_runtimelinking=yes
2820             break
2821             ;;
2822           esac
2823         done
2824       esac
2825
2826       exp_sym_flag='-bexport'
2827       no_entry_flag='-bnoentry'
2828     fi
2829
2830     # When large executables or shared objects are built, AIX ld can
2831     # have problems creating the table of contents.  If linking a library
2832     # or program results in "error TOC overflow" add -mminimal-toc to
2833     # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
2834     # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
2835
2836     _LT_AC_TAGVAR(archive_cmds, $1)=''
2837     _LT_AC_TAGVAR(hardcode_direct, $1)=yes
2838     _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
2839     _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
2840
2841     if test "$GXX" = yes; then
2842       case $host_os in aix4.[[012]]|aix4.[[012]].*)
2843       # We only want to do this on AIX 4.2 and lower, the check
2844       # below for broken collect2 doesn't work under 4.3+
2845         collect2name=`${CC} -print-prog-name=collect2`
2846         if test -f "$collect2name" && \
2847            strings "$collect2name" | grep resolve_lib_name >/dev/null
2848         then
2849           # We have reworked collect2
2850           _LT_AC_TAGVAR(hardcode_direct, $1)=yes
2851         else
2852           # We have old collect2
2853           _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
2854           # It fails to find uninstalled libraries when the uninstalled
2855           # path is not listed in the libpath.  Setting hardcode_minus_L
2856           # to unsupported forces relinking
2857           _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
2858           _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
2859           _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
2860         fi
2861       esac
2862       shared_flag='-shared'
2863       if test "$aix_use_runtimelinking" = yes; then
2864         shared_flag="$shared_flag "'${wl}-G'
2865       fi
2866     else
2867       # not using gcc
2868       if test "$host_cpu" = ia64; then
2869         # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
2870         # chokes on -Wl,-G. The following line is correct:
2871         shared_flag='-G'
2872       else
2873         if test "$aix_use_runtimelinking" = yes; then
2874           shared_flag='${wl}-G'
2875         else
2876           shared_flag='${wl}-bM:SRE'
2877         fi
2878       fi
2879     fi
2880
2881     # It seems that -bexpall does not export symbols beginning with
2882     # underscore (_), so it is better to generate a list of symbols to export.
2883     _LT_AC_TAGVAR(always_export_symbols, $1)=yes
2884     if test "$aix_use_runtimelinking" = yes; then
2885       # Warning - without using the other runtime loading flags (-brtl),
2886       # -berok will link without error, but may produce a broken library.
2887       _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
2888       # Determine the default libpath from the value encoded in an empty executable.
2889       _LT_AC_SYS_LIBPATH_AIX
2890       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
2891
2892       _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"
2893      else
2894       if test "$host_cpu" = ia64; then
2895         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
2896         _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
2897         _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"
2898       else
2899         # Determine the default libpath from the value encoded in an empty executable.
2900         _LT_AC_SYS_LIBPATH_AIX
2901         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
2902         # Warning - without using the other run time loading flags,
2903         # -berok will link without error, but may produce a broken library.
2904         _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
2905         _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
2906         # -bexpall does not export symbols beginning with underscore (_)
2907         _LT_AC_TAGVAR(always_export_symbols, $1)=yes
2908         # Exported symbols can be pulled into shared objects from archives
2909         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' '
2910         _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
2911         # This is similar to how AIX traditionally builds it's shared libraries.
2912         _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'
2913       fi
2914     fi
2915     ;;
2916   chorus*)
2917     case $cc_basename in
2918       *)
2919         # FIXME: insert proper C++ library support
2920         _LT_AC_TAGVAR(ld_shlibs, $1)=no
2921         ;;
2922     esac
2923     ;;
2924
2925
2926   cygwin* | mingw* | pw32*)
2927     # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
2928     # as there is no search path for DLLs.
2929     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
2930     _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
2931     _LT_AC_TAGVAR(always_export_symbols, $1)=no
2932     _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
2933
2934     if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
2935       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib'
2936       # If the export-symbols file already is a .def file (1st line
2937       # is EXPORTS), use it as is; otherwise, prepend...
2938       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
2939         cp $export_symbols $output_objdir/$soname.def;
2940       else
2941         echo EXPORTS > $output_objdir/$soname.def;
2942         cat $export_symbols >> $output_objdir/$soname.def;
2943       fi~
2944       $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib'
2945     else
2946       _LT_AC_TAGVAR(ld_shlibs, $1)=no
2947     fi
2948   ;;
2949       darwin* | rhapsody*)
2950         case "$host_os" in
2951         rhapsody* | darwin1.[[012]])
2952          _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress'
2953          ;;
2954        *) # Darwin 1.3 on
2955          if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
2956            _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
2957          else
2958            case ${MACOSX_DEPLOYMENT_TARGET} in
2959              10.[[012]])
2960                _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
2961                ;;
2962              10.*)
2963                _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup'
2964                ;;
2965            esac
2966          fi
2967          ;;
2968         esac
2969       _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
2970       _LT_AC_TAGVAR(hardcode_direct, $1)=no
2971       _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
2972       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
2973       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
2974       _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
2975
2976     if test "$GXX" = yes ; then
2977       lt_int_apple_cc_single_mod=no
2978       output_verbose_link_cmd='echo'
2979       if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then
2980        lt_int_apple_cc_single_mod=yes
2981       fi
2982       if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
2983        _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
2984       else
2985           _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
2986         fi
2987         _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
2988         # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's
2989           if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
2990             _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
2991           else
2992             _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
2993           fi
2994             _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}'
2995       else
2996       case $cc_basename in
2997         xlc*)
2998          output_verbose_link_cmd='echo'
2999           _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
3000           _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
3001           # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's
3002           _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
3003           _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}'
3004           ;;
3005        *)
3006          _LT_AC_TAGVAR(ld_shlibs, $1)=no
3007           ;;
3008       esac
3009       fi
3010         ;;
3011
3012   dgux*)
3013     case $cc_basename in
3014       ec++*)
3015         # FIXME: insert proper C++ library support
3016         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3017         ;;
3018       ghcx*)
3019         # Green Hills C++ Compiler
3020         # FIXME: insert proper C++ library support
3021         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3022         ;;
3023       *)
3024         # FIXME: insert proper C++ library support
3025         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3026         ;;
3027     esac
3028     ;;
3029   freebsd[[12]]*)
3030     # C++ shared libraries reported to be fairly broken before switch to ELF
3031     _LT_AC_TAGVAR(ld_shlibs, $1)=no
3032     ;;
3033   freebsd-elf*)
3034     _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3035     ;;
3036   freebsd* | kfreebsd*-gnu | dragonfly*)
3037     # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
3038     # conventions
3039     _LT_AC_TAGVAR(ld_shlibs, $1)=yes
3040     ;;
3041   gnu*)
3042     ;;
3043   hpux9*)
3044     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
3045     _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3046     _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
3047     _LT_AC_TAGVAR(hardcode_direct, $1)=yes
3048     _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
3049                                 # but as the default
3050                                 # location of the library.
3051
3052     case $cc_basename in
3053     CC*)
3054       # FIXME: insert proper C++ library support
3055       _LT_AC_TAGVAR(ld_shlibs, $1)=no
3056       ;;
3057     aCC*)
3058       _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
3059       # Commands to make compiler produce verbose output that lists
3060       # what "hidden" libraries, object files and flags are used when
3061       # linking a shared library.
3062       #
3063       # There doesn't appear to be a way to prevent this compiler from
3064       # explicitly linking system object files so we need to strip them
3065       # from the output so that they don't get included in the library
3066       # dependencies.
3067       output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
3068       ;;
3069     *)
3070       if test "$GXX" = yes; then
3071         _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
3072       else
3073         # FIXME: insert proper C++ library support
3074         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3075       fi
3076       ;;
3077     esac
3078     ;;
3079   hpux10*|hpux11*)
3080     if test $with_gnu_ld = no; then
3081       case "$host_cpu" in
3082       hppa*64*)
3083         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
3084         _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
3085         _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3086         ;;
3087       ia64*)
3088         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
3089         ;;
3090       *)
3091         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
3092         _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3093         _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
3094         ;;
3095       esac
3096     fi
3097     case "$host_cpu" in
3098     hppa*64*)
3099       _LT_AC_TAGVAR(hardcode_direct, $1)=no
3100       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3101       ;;
3102     ia64*)
3103       _LT_AC_TAGVAR(hardcode_direct, $1)=no
3104       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3105       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
3106                                               # but as the default
3107                                               # location of the library.
3108       ;;
3109     *)
3110       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
3111       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
3112                                               # but as the default
3113                                               # location of the library.
3114       ;;
3115     esac
3116
3117     case $cc_basename in
3118       CC*)
3119         # FIXME: insert proper C++ library support
3120         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3121         ;;
3122       aCC*)
3123         case "$host_cpu" in
3124         hppa*64*|ia64*)
3125           _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs'
3126           ;;
3127         *)
3128           _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
3129           ;;
3130         esac
3131         # Commands to make compiler produce verbose output that lists
3132         # what "hidden" libraries, object files and flags are used when
3133         # linking a shared library.
3134         #
3135         # There doesn't appear to be a way to prevent this compiler from
3136         # explicitly linking system object files so we need to strip them
3137         # from the output so that they don't get included in the library
3138         # dependencies.
3139         output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
3140         ;;
3141       *)
3142         if test "$GXX" = yes; then
3143           if test $with_gnu_ld = no; then
3144             case "$host_cpu" in
3145             ia64*|hppa*64*)
3146               _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs'
3147               ;;
3148             *)
3149               _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
3150               ;;
3151             esac
3152           fi
3153         else
3154           # FIXME: insert proper C++ library support
3155           _LT_AC_TAGVAR(ld_shlibs, $1)=no
3156         fi
3157         ;;
3158     esac
3159     ;;
3160   irix5* | irix6*)
3161     case $cc_basename in
3162       CC*)
3163         # SGI C++
3164         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
3165
3166         # Archives containing C++ object files must be created using
3167         # "CC -ar", where "CC" is the IRIX C++ compiler.  This is
3168         # necessary to make sure instantiated templates are included
3169         # in the archive.
3170         _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
3171         ;;
3172       *)
3173         if test "$GXX" = yes; then
3174           if test "$with_gnu_ld" = no; then
3175             _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $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'
3176           else
3177             _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib'
3178           fi
3179         fi
3180         _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
3181         ;;
3182     esac
3183     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
3184     _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3185     ;;
3186   linux*)
3187     case $cc_basename in
3188       KCC*)
3189         # Kuck and Associates, Inc. (KAI) C++ Compiler
3190
3191         # KCC will only create a shared library if the output file
3192         # ends with ".so" (or ".sl" for HP-UX), so rename the library
3193         # to its proper name (with version) after linking.
3194         _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
3195         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
3196         # Commands to make compiler produce verbose output that lists
3197         # what "hidden" libraries, object files and flags are used when
3198         # linking a shared library.
3199         #
3200         # There doesn't appear to be a way to prevent this compiler from
3201         # explicitly linking system object files so we need to strip them
3202         # from the output so that they don't get included in the library
3203         # dependencies.
3204         output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
3205
3206         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir'
3207         _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
3208
3209         # Archives containing C++ object files must be created using
3210         # "CC -Bstatic", where "CC" is the KAI C++ compiler.
3211         _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
3212         ;;
3213       icpc*)
3214         # Intel C++
3215         with_gnu_ld=yes
3216         # version 8.0 and above of icpc choke on multiply defined symbols
3217         # if we add $predep_objects and $postdep_objects, however 7.1 and
3218         # earlier do not add the objects themselves.
3219         case `$CC -V 2>&1` in
3220         *"Version 7."*)
3221           _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
3222           _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
3223           ;;
3224         *)  # Version 8.0 or newer
3225           tmp_idyn=
3226           case $host_cpu in
3227             ia64*) tmp_idyn=' -i_dynamic';;
3228           esac
3229           _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
3230           _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
3231           ;;
3232         esac
3233         _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3234         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
3235         _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
3236         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
3237         ;;
3238       pgCC*)
3239         # Portland Group C++ compiler
3240         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
3241         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
3242
3243         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
3244         _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
3245         _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'
3246         ;;
3247       cxx*)
3248         # Compaq C++
3249         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
3250         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
3251
3252         runpath_var=LD_RUN_PATH
3253         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
3254         _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3255
3256         # Commands to make compiler produce verbose output that lists
3257         # what "hidden" libraries, object files and flags are used when
3258         # linking a shared library.
3259         #
3260         # There doesn't appear to be a way to prevent this compiler from
3261         # explicitly linking system object files so we need to strip them
3262         # from the output so that they don't get included in the library
3263         # dependencies.
3264         output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
3265         ;;
3266     esac
3267     ;;
3268   lynxos*)
3269     # FIXME: insert proper C++ library support
3270     _LT_AC_TAGVAR(ld_shlibs, $1)=no
3271     ;;
3272   m88k*)
3273     # FIXME: insert proper C++ library support
3274     _LT_AC_TAGVAR(ld_shlibs, $1)=no
3275     ;;
3276   mvs*)
3277     case $cc_basename in
3278       cxx*)
3279         # FIXME: insert proper C++ library support
3280         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3281         ;;
3282       *)
3283         # FIXME: insert proper C++ library support
3284         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3285         ;;
3286     esac
3287     ;;
3288   netbsd*)
3289     if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
3290       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
3291       wlarc=
3292       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
3293       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
3294       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3295     fi
3296     # Workaround some broken pre-1.5 toolchains
3297     output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
3298     ;;
3299   openbsd2*)
3300     # C++ shared libraries are fairly broken
3301     _LT_AC_TAGVAR(ld_shlibs, $1)=no
3302     ;;
3303   openbsd*)
3304     _LT_AC_TAGVAR(hardcode_direct, $1)=yes
3305     _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3306     _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
3307     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
3308     if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
3309       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
3310       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
3311       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
3312     fi
3313     output_verbose_link_cmd='echo'
3314     ;;
3315   osf3*)
3316     case $cc_basename in
3317       KCC*)
3318         # Kuck and Associates, Inc. (KAI) C++ Compiler
3319
3320         # KCC will only create a shared library if the output file
3321         # ends with ".so" (or ".sl" for HP-UX), so rename the library
3322         # to its proper name (with version) after linking.
3323         _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
3324
3325         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
3326         _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3327
3328         # Archives containing C++ object files must be created using
3329         # "CC -Bstatic", where "CC" is the KAI C++ compiler.
3330         _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
3331
3332         ;;
3333       RCC*)
3334         # Rational C++ 2.4.1
3335         # FIXME: insert proper C++ library support
3336         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3337         ;;
3338       cxx*)
3339         _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
3340         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
3341
3342         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
3343         _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3344
3345         # Commands to make compiler produce verbose output that lists
3346         # what "hidden" libraries, object files and flags are used when
3347         # linking a shared library.
3348         #
3349         # There doesn't appear to be a way to prevent this compiler from
3350         # explicitly linking system object files so we need to strip them
3351         # from the output so that they don't get included in the library
3352         # dependencies.
3353         output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
3354         ;;
3355       *)
3356         if test "$GXX" = yes && test "$with_gnu_ld" = no; then
3357           _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
3358           _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $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'
3359
3360           _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
3361           _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3362
3363           # Commands to make compiler produce verbose output that lists
3364           # what "hidden" libraries, object files and flags are used when
3365           # linking a shared library.
3366           output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
3367
3368         else
3369           # FIXME: insert proper C++ library support
3370           _LT_AC_TAGVAR(ld_shlibs, $1)=no
3371         fi
3372         ;;
3373     esac
3374     ;;
3375   osf4* | osf5*)
3376     case $cc_basename in
3377       KCC*)
3378         # Kuck and Associates, Inc. (KAI) C++ Compiler
3379
3380         # KCC will only create a shared library if the output file
3381         # ends with ".so" (or ".sl" for HP-UX), so rename the library
3382         # to its proper name (with version) after linking.
3383         _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
3384
3385         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
3386         _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3387
3388         # Archives containing C++ object files must be created using
3389         # the KAI C++ compiler.
3390         _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs'
3391         ;;
3392       RCC*)
3393         # Rational C++ 2.4.1
3394         # FIXME: insert proper C++ library support
3395         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3396         ;;
3397       cxx*)
3398         _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
3399         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
3400         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
3401           echo "-hidden">> $lib.exp~
3402           $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp  `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~
3403           $rm $lib.exp'
3404
3405         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
3406         _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3407
3408         # Commands to make compiler produce verbose output that lists
3409         # what "hidden" libraries, object files and flags are used when
3410         # linking a shared library.
3411         #
3412         # There doesn't appear to be a way to prevent this compiler from
3413         # explicitly linking system object files so we need to strip them
3414         # from the output so that they don't get included in the library
3415         # dependencies.
3416         output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
3417         ;;
3418       *)
3419         if test "$GXX" = yes && test "$with_gnu_ld" = no; then
3420           _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
3421          _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $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'
3422
3423           _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
3424           _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3425
3426           # Commands to make compiler produce verbose output that lists
3427           # what "hidden" libraries, object files and flags are used when
3428           # linking a shared library.
3429           output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
3430
3431         else
3432           # FIXME: insert proper C++ library support
3433           _LT_AC_TAGVAR(ld_shlibs, $1)=no
3434         fi
3435         ;;
3436     esac
3437     ;;
3438   psos*)
3439     # FIXME: insert proper C++ library support
3440     _LT_AC_TAGVAR(ld_shlibs, $1)=no
3441     ;;
3442   sco*)
3443     _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3444     case $cc_basename in
3445       CC*)
3446         # FIXME: insert proper C++ library support
3447         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3448         ;;
3449       *)
3450         # FIXME: insert proper C++ library support
3451         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3452         ;;
3453     esac
3454     ;;
3455   sunos4*)
3456     case $cc_basename in
3457       CC*)
3458         # Sun C++ 4.x
3459         # FIXME: insert proper C++ library support
3460         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3461         ;;
3462       lcc*)
3463         # Lucid
3464         # FIXME: insert proper C++ library support
3465         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3466         ;;
3467       *)
3468         # FIXME: insert proper C++ library support
3469         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3470         ;;
3471     esac
3472     ;;
3473   solaris*)
3474     case $cc_basename in
3475       CC*)
3476         # Sun C++ 4.2, 5.x and Centerline C++
3477         _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs'
3478         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -nolib -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
3479         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
3480         $CC -G${allow_undefined_flag} -nolib ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
3481
3482         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
3483         _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3484         case $host_os in
3485           solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
3486           *)
3487             # The C++ compiler is used as linker so we must use $wl
3488             # flag to pass the commands to the underlying system
3489             # linker. We must also pass each convience library through
3490             # to the system linker between allextract/defaultextract.
3491             # The C++ compiler will combine linker options so we
3492             # cannot just pass the convience library names through
3493             # without $wl.
3494             # Supported since Solaris 2.6 (maybe 2.5.1?)
3495             _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'
3496             ;;
3497         esac
3498         _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
3499
3500         # Commands to make compiler produce verbose output that lists
3501         # what "hidden" libraries, object files and flags are used when
3502         # linking a shared library.
3503         #
3504         # There doesn't appear to be a way to prevent this compiler from
3505         # explicitly linking system object files so we need to strip them
3506         # from the output so that they don't get included in the library
3507         # dependencies.
3508         output_verbose_link_cmd='templist=`$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep "\-[[LR]]"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
3509
3510         # Archives containing C++ object files must be created using
3511         # "CC -xar", where "CC" is the Sun C++ compiler.  This is
3512         # necessary to make sure instantiated templates are included
3513         # in the archive.
3514         _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
3515         ;;
3516       gcx*)
3517         # Green Hills C++ Compiler
3518         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
3519
3520         # The C++ compiler must be used to create the archive.
3521         _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
3522         ;;
3523       *)
3524         # GNU C++ compiler with Solaris linker
3525         if test "$GXX" = yes && test "$with_gnu_ld" = no; then
3526           _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
3527           if $CC --version | grep -v '^2\.7' > /dev/null; then
3528             _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
3529             _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
3530                 $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
3531
3532             # Commands to make compiler produce verbose output that lists
3533             # what "hidden" libraries, object files and flags are used when
3534             # linking a shared library.
3535             output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\""
3536           else
3537             # g++ 2.7 appears to require `-G' NOT `-shared' on this
3538             # platform.
3539             _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
3540             _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
3541                 $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
3542
3543             # Commands to make compiler produce verbose output that lists
3544             # what "hidden" libraries, object files and flags are used when
3545             # linking a shared library.
3546             output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\""
3547           fi
3548
3549           _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
3550         fi
3551         ;;
3552     esac
3553     ;;
3554   sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7*)
3555     _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3556     ;;
3557   tandem*)
3558     case $cc_basename in
3559       NCC*)
3560         # NonStop-UX NCC 3.20
3561         # FIXME: insert proper C++ library support
3562         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3563         ;;
3564       *)
3565         # FIXME: insert proper C++ library support
3566         _LT_AC_TAGVAR(ld_shlibs, $1)=no
3567         ;;
3568     esac
3569     ;;
3570   vxworks*)
3571     # FIXME: insert proper C++ library support
3572     _LT_AC_TAGVAR(ld_shlibs, $1)=no
3573     ;;
3574   *)
3575     # FIXME: insert proper C++ library support
3576     _LT_AC_TAGVAR(ld_shlibs, $1)=no
3577     ;;
3578 esac
3579 AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)])
3580 test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
3581
3582 _LT_AC_TAGVAR(GCC, $1)="$GXX"
3583 _LT_AC_TAGVAR(LD, $1)="$LD"
3584
3585 ## CAVEAT EMPTOR:
3586 ## There is no encapsulation within the following macros, do not change
3587 ## the running order or otherwise move them around unless you know exactly
3588 ## what you are doing...
3589 AC_LIBTOOL_POSTDEP_PREDEP($1)
3590 AC_LIBTOOL_PROG_COMPILER_PIC($1)
3591 AC_LIBTOOL_PROG_CC_C_O($1)
3592 AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
3593 AC_LIBTOOL_PROG_LD_SHLIBS($1)
3594 AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
3595 AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
3596 AC_LIBTOOL_SYS_LIB_STRIP
3597 AC_LIBTOOL_DLOPEN_SELF($1)
3598
3599 AC_LIBTOOL_CONFIG($1)
3600
3601 AC_LANG_POP
3602 CC=$lt_save_CC
3603 LDCXX=$LD
3604 LD=$lt_save_LD
3605 GCC=$lt_save_GCC
3606 with_gnu_ldcxx=$with_gnu_ld
3607 with_gnu_ld=$lt_save_with_gnu_ld
3608 lt_cv_path_LDCXX=$lt_cv_path_LD
3609 lt_cv_path_LD=$lt_save_path_LD
3610 lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
3611 lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
3612 ])# AC_LIBTOOL_LANG_CXX_CONFIG
3613
3614 # AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME])
3615 # ------------------------
3616 # Figure out "hidden" library dependencies from verbose
3617 # compiler output when linking a shared library.
3618 # Parse the compiler output and extract the necessary
3619 # objects, libraries and library flags.
3620 AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[
3621 dnl we can't use the lt_simple_compile_test_code here,
3622 dnl because it contains code intended for an executable,
3623 dnl not a library.  It's possible we should let each
3624 dnl tag define a new lt_????_link_test_code variable,
3625 dnl but it's only used here...
3626 ifelse([$1],[],[cat > conftest.$ac_ext <<EOF
3627 int a;
3628 void foo (void) { a = 0; }
3629 EOF
3630 ],[$1],[CXX],[cat > conftest.$ac_ext <<EOF
3631 class Foo
3632 {
3633 public:
3634   Foo (void) { a = 0; }
3635 private:
3636   int a;
3637 };
3638 EOF
3639 ],[$1],[F77],[cat > conftest.$ac_ext <<EOF
3640       subroutine foo
3641       implicit none
3642       integer*4 a
3643       a=0
3644       return
3645       end
3646 EOF
3647 ],[$1],[GCJ],[cat > conftest.$ac_ext <<EOF
3648 public class foo {
3649   private int a;
3650   public void bar (void) {
3651     a = 0;
3652   }
3653 };
3654 EOF
3655 ])
3656 dnl Parse the compiler output and extract the necessary
3657 dnl objects, libraries and library flags.
3658 if AC_TRY_EVAL(ac_compile); then
3659   # Parse the compiler output and extract the necessary
3660   # objects, libraries and library flags.
3661
3662   # Sentinel used to keep track of whether or not we are before
3663   # the conftest object file.
3664   pre_test_object_deps_done=no
3665
3666   # The `*' in the case matches for architectures that use `case' in
3667   # $output_verbose_cmd can trigger glob expansion during the loop
3668   # eval without this substitution.
3669   output_verbose_link_cmd="`$echo \"X$output_verbose_link_cmd\" | $Xsed -e \"$no_glob_subst\"`"
3670
3671   for p in `eval $output_verbose_link_cmd`; do
3672     case $p in
3673
3674     -L* | -R* | -l*)
3675        # Some compilers place space between "-{L,R}" and the path.
3676        # Remove the space.
3677        if test $p = "-L" \
3678           || test $p = "-R"; then
3679          prev=$p
3680          continue
3681        else
3682          prev=
3683        fi
3684
3685        if test "$pre_test_object_deps_done" = no; then
3686          case $p in
3687          -L* | -R*)
3688            # Internal compiler library paths should come after those
3689            # provided the user.  The postdeps already come after the
3690            # user supplied libs so there is no need to process them.
3691            if test -z "$_LT_AC_TAGVAR(compiler_lib_search_path, $1)"; then
3692              _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
3693            else
3694              _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${_LT_AC_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
3695            fi
3696            ;;
3697          # The "-l" case would never come before the object being
3698          # linked, so don't bother handling this case.
3699          esac
3700        else
3701          if test -z "$_LT_AC_TAGVAR(postdeps, $1)"; then
3702            _LT_AC_TAGVAR(postdeps, $1)="${prev}${p}"
3703          else
3704            _LT_AC_TAGVAR(postdeps, $1)="${_LT_AC_TAGVAR(postdeps, $1)} ${prev}${p}"
3705          fi
3706        fi
3707        ;;
3708
3709     *.$objext)
3710        # This assumes that the test object file only shows up
3711        # once in the compiler output.
3712        if test "$p" = "conftest.$objext"; then
3713          pre_test_object_deps_done=yes
3714          continue
3715        fi
3716
3717        if test "$pre_test_object_deps_done" = no; then
3718          if test -z "$_LT_AC_TAGVAR(predep_objects, $1)"; then
3719            _LT_AC_TAGVAR(predep_objects, $1)="$p"
3720          else
3721            _LT_AC_TAGVAR(predep_objects, $1)="$_LT_AC_TAGVAR(predep_objects, $1) $p"
3722          fi
3723        else
3724          if test -z "$_LT_AC_TAGVAR(postdep_objects, $1)"; then
3725            _LT_AC_TAGVAR(postdep_objects, $1)="$p"
3726          else
3727            _LT_AC_TAGVAR(postdep_objects, $1)="$_LT_AC_TAGVAR(postdep_objects, $1) $p"
3728          fi
3729        fi
3730        ;;
3731
3732     *) ;; # Ignore the rest.
3733
3734     esac
3735   done
3736
3737   # Clean up.
3738   rm -f a.out a.exe
3739 else
3740   echo "libtool.m4: error: problem compiling $1 test program"
3741 fi
3742
3743 $rm -f confest.$objext
3744
3745 case " $_LT_AC_TAGVAR(postdeps, $1) " in
3746 *" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;;
3747 esac
3748 ])# AC_LIBTOOL_POSTDEP_PREDEP
3749
3750 # AC_LIBTOOL_LANG_F77_CONFIG
3751 # ------------------------
3752 # Ensure that the configuration vars for the C compiler are
3753 # suitably defined.  Those variables are subsequently used by
3754 # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
3755 AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)])
3756 AC_DEFUN([_LT_AC_LANG_F77_CONFIG],
3757 [AC_REQUIRE([AC_PROG_F77])
3758 AC_LANG_PUSH(Fortran 77)
3759
3760 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3761 _LT_AC_TAGVAR(allow_undefined_flag, $1)=
3762 _LT_AC_TAGVAR(always_export_symbols, $1)=no
3763 _LT_AC_TAGVAR(archive_expsym_cmds, $1)=
3764 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
3765 _LT_AC_TAGVAR(hardcode_direct, $1)=no
3766 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
3767 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
3768 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
3769 _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
3770 _LT_AC_TAGVAR(hardcode_automatic, $1)=no
3771 _LT_AC_TAGVAR(module_cmds, $1)=
3772 _LT_AC_TAGVAR(module_expsym_cmds, $1)=
3773 _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
3774 _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
3775 _LT_AC_TAGVAR(no_undefined_flag, $1)=
3776 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
3777 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
3778
3779 # Source file extension for f77 test sources.
3780 ac_ext=f
3781
3782 # Object file extension for compiled f77 test sources.
3783 objext=o
3784 _LT_AC_TAGVAR(objext, $1)=$objext
3785
3786 # Code to be used in simple compile tests
3787 lt_simple_compile_test_code="      subroutine t\n      return\n      end\n"
3788
3789 # Code to be used in simple link tests
3790 lt_simple_link_test_code="      program t\n      end\n"
3791
3792 # ltmain only uses $CC for tagged configurations so make sure $CC is set.
3793 _LT_AC_SYS_COMPILER
3794
3795 # save warnings/boilerplate of simple test code
3796 _LT_COMPILER_BOILERPLATE
3797 _LT_LINKER_BOILERPLATE
3798
3799 # Allow CC to be a program name with arguments.
3800 lt_save_CC="$CC"
3801 CC=${F77-"f77"}
3802 compiler=$CC
3803 _LT_AC_TAGVAR(compiler, $1)=$CC
3804 _LT_CC_BASENAME([$compiler])
3805
3806 AC_MSG_CHECKING([if libtool supports shared libraries])
3807 AC_MSG_RESULT([$can_build_shared])
3808
3809 AC_MSG_CHECKING([whether to build shared libraries])
3810 test "$can_build_shared" = "no" && enable_shared=no
3811
3812 # On AIX, shared libraries and static libraries use the same namespace, and
3813 # are all built from PIC.
3814 case "$host_os" in
3815 aix3*)
3816   test "$enable_shared" = yes && enable_static=no
3817   if test -n "$RANLIB"; then
3818     archive_cmds="$archive_cmds~\$RANLIB \$lib"
3819     postinstall_cmds='$RANLIB $lib'
3820   fi
3821   ;;
3822 aix4* | aix5*)
3823   if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
3824     test "$enable_shared" = yes && enable_static=no
3825   fi
3826   ;;
3827 esac
3828 AC_MSG_RESULT([$enable_shared])
3829
3830 AC_MSG_CHECKING([whether to build static libraries])
3831 # Make sure either enable_shared or enable_static is yes.
3832 test "$enable_shared" = yes || enable_static=yes
3833 AC_MSG_RESULT([$enable_static])
3834
3835 test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
3836
3837 _LT_AC_TAGVAR(GCC, $1)="$G77"
3838 _LT_AC_TAGVAR(LD, $1)="$LD"
3839
3840 AC_LIBTOOL_PROG_COMPILER_PIC($1)
3841 AC_LIBTOOL_PROG_CC_C_O($1)
3842 AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
3843 AC_LIBTOOL_PROG_LD_SHLIBS($1)
3844 AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
3845 AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
3846 AC_LIBTOOL_SYS_LIB_STRIP
3847
3848
3849 AC_LIBTOOL_CONFIG($1)
3850
3851 AC_LANG_POP
3852 CC="$lt_save_CC"
3853 ])# AC_LIBTOOL_LANG_F77_CONFIG
3854
3855
3856 # AC_LIBTOOL_LANG_GCJ_CONFIG
3857 # --------------------------
3858 # Ensure that the configuration vars for the C compiler are
3859 # suitably defined.  Those variables are subsequently used by
3860 # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
3861 AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)])
3862 AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG],
3863 [AC_LANG_SAVE
3864
3865 # Source file extension for Java test sources.
3866 ac_ext=java
3867
3868 # Object file extension for compiled Java test sources.
3869 objext=o
3870 _LT_AC_TAGVAR(objext, $1)=$objext
3871
3872 # Code to be used in simple compile tests
3873 lt_simple_compile_test_code="class foo {}\n"
3874
3875 # Code to be used in simple link tests
3876 lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }\n'
3877
3878 # ltmain only uses $CC for tagged configurations so make sure $CC is set.
3879 _LT_AC_SYS_COMPILER
3880
3881 # save warnings/boilerplate of simple test code
3882 _LT_COMPILER_BOILERPLATE
3883 _LT_LINKER_BOILERPLATE
3884
3885 # Allow CC to be a program name with arguments.
3886 lt_save_CC="$CC"
3887 CC=${GCJ-"gcj"}
3888 compiler=$CC
3889 _LT_AC_TAGVAR(compiler, $1)=$CC
3890 _LT_CC_BASENAME([$compiler])
3891
3892 # GCJ did not exist at the time GCC didn't implicitly link libc in.
3893 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3894
3895 _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
3896
3897 ## CAVEAT EMPTOR:
3898 ## There is no encapsulation within the following macros, do not change
3899 ## the running order or otherwise move them around unless you know exactly
3900 ## what you are doing...
3901 AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
3902 AC_LIBTOOL_PROG_COMPILER_PIC($1)
3903 AC_LIBTOOL_PROG_CC_C_O($1)
3904 AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
3905 AC_LIBTOOL_PROG_LD_SHLIBS($1)
3906 AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
3907 AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
3908 AC_LIBTOOL_SYS_LIB_STRIP
3909 AC_LIBTOOL_DLOPEN_SELF($1)
3910
3911 AC_LIBTOOL_CONFIG($1)
3912
3913 AC_LANG_RESTORE
3914 CC="$lt_save_CC"
3915 ])# AC_LIBTOOL_LANG_GCJ_CONFIG
3916
3917
3918 # AC_LIBTOOL_LANG_RC_CONFIG
3919 # --------------------------
3920 # Ensure that the configuration vars for the Windows resource compiler are
3921 # suitably defined.  Those variables are subsequently used by
3922 # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'.
3923 AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)])
3924 AC_DEFUN([_LT_AC_LANG_RC_CONFIG],
3925 [AC_LANG_SAVE
3926
3927 # Source file extension for RC test sources.
3928 ac_ext=rc
3929
3930 # Object file extension for compiled RC test sources.
3931 objext=o
3932 _LT_AC_TAGVAR(objext, $1)=$objext
3933
3934 # Code to be used in simple compile tests
3935 lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }\n'
3936
3937 # Code to be used in simple link tests
3938 lt_simple_link_test_code="$lt_simple_compile_test_code"
3939
3940 # ltmain only uses $CC for tagged configurations so make sure $CC is set.
3941 _LT_AC_SYS_COMPILER
3942
3943 # save warnings/boilerplate of simple test code
3944 _LT_COMPILER_BOILERPLATE
3945 _LT_LINKER_BOILERPLATE
3946
3947 # Allow CC to be a program name with arguments.
3948 lt_save_CC="$CC"
3949 CC=${RC-"windres"}
3950 compiler=$CC
3951 _LT_AC_TAGVAR(compiler, $1)=$CC
3952 _LT_CC_BASENAME([$compiler])
3953 _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
3954
3955 AC_LIBTOOL_CONFIG($1)
3956
3957 AC_LANG_RESTORE
3958 CC="$lt_save_CC"
3959 ])# AC_LIBTOOL_LANG_RC_CONFIG
3960
3961
3962 # AC_LIBTOOL_CONFIG([TAGNAME])
3963 # ----------------------------
3964 # If TAGNAME is not passed, then create an initial libtool script
3965 # with a default configuration from the untagged config vars.  Otherwise
3966 # add code to config.status for appending the configuration named by
3967 # TAGNAME from the matching tagged config vars.
3968 AC_DEFUN([AC_LIBTOOL_CONFIG],
3969 [# The else clause should only fire when bootstrapping the
3970 # libtool distribution, otherwise you forgot to ship ltmain.sh
3971 # with your package, and you will get complaints that there are
3972 # no rules to generate ltmain.sh.
3973 if test -f "$ltmain"; then
3974   # See if we are running on zsh, and set the options which allow our commands through
3975   # without removal of \ escapes.
3976   if test -n "${ZSH_VERSION+set}" ; then
3977     setopt NO_GLOB_SUBST
3978   fi
3979   # Now quote all the things that may contain metacharacters while being
3980   # careful not to overquote the AC_SUBSTed values.  We take copies of the
3981   # variables and quote the copies for generation of the libtool script.
3982   for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \
3983     SED SHELL STRIP \
3984     libname_spec library_names_spec soname_spec extract_expsyms_cmds \
3985     old_striplib striplib file_magic_cmd finish_cmds finish_eval \
3986     deplibs_check_method reload_flag reload_cmds need_locks \
3987     lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \
3988     lt_cv_sys_global_symbol_to_c_name_address \
3989     sys_lib_search_path_spec sys_lib_dlsearch_path_spec \
3990     old_postinstall_cmds old_postuninstall_cmds \
3991     _LT_AC_TAGVAR(compiler, $1) \
3992     _LT_AC_TAGVAR(CC, $1) \
3993     _LT_AC_TAGVAR(LD, $1) \
3994     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \
3995     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \
3996     _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \
3997     _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \
3998     _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \
3999     _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \
4000     _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \
4001     _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \
4002     _LT_AC_TAGVAR(old_archive_cmds, $1) \
4003     _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \
4004     _LT_AC_TAGVAR(predep_objects, $1) \
4005     _LT_AC_TAGVAR(postdep_objects, $1) \
4006     _LT_AC_TAGVAR(predeps, $1) \
4007     _LT_AC_TAGVAR(postdeps, $1) \
4008     _LT_AC_TAGVAR(compiler_lib_search_path, $1) \
4009     _LT_AC_TAGVAR(archive_cmds, $1) \
4010     _LT_AC_TAGVAR(archive_expsym_cmds, $1) \
4011     _LT_AC_TAGVAR(postinstall_cmds, $1) \
4012     _LT_AC_TAGVAR(postuninstall_cmds, $1) \
4013     _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \
4014     _LT_AC_TAGVAR(allow_undefined_flag, $1) \
4015     _LT_AC_TAGVAR(no_undefined_flag, $1) \
4016     _LT_AC_TAGVAR(export_symbols_cmds, $1) \
4017     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \
4018     _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \
4019     _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \
4020     _LT_AC_TAGVAR(hardcode_automatic, $1) \
4021     _LT_AC_TAGVAR(module_cmds, $1) \
4022     _LT_AC_TAGVAR(module_expsym_cmds, $1) \
4023     _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \
4024     _LT_AC_TAGVAR(exclude_expsyms, $1) \
4025     _LT_AC_TAGVAR(include_expsyms, $1); do
4026
4027     case $var in
4028     _LT_AC_TAGVAR(old_archive_cmds, $1) | \
4029     _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \
4030     _LT_AC_TAGVAR(archive_cmds, $1) | \
4031     _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \
4032     _LT_AC_TAGVAR(module_cmds, $1) | \
4033     _LT_AC_TAGVAR(module_expsym_cmds, $1) | \
4034     _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \
4035     _LT_AC_TAGVAR(export_symbols_cmds, $1) | \
4036     extract_expsyms_cmds | reload_cmds | finish_cmds | \
4037     postinstall_cmds | postuninstall_cmds | \
4038     old_postinstall_cmds | old_postuninstall_cmds | \
4039     sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
4040       # Double-quote double-evaled strings.
4041       eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
4042       ;;
4043     *)
4044       eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
4045       ;;
4046     esac
4047   done
4048
4049   case $lt_echo in
4050   *'\[$]0 --fallback-echo"')
4051     lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'`
4052     ;;
4053   esac
4054
4055 ifelse([$1], [],
4056   [cfgfile="${ofile}T"
4057   trap "$rm \"$cfgfile\"; exit 1" 1 2 15
4058   $rm -f "$cfgfile"
4059   AC_MSG_NOTICE([creating $ofile])],
4060   [cfgfile="$ofile"])
4061
4062   cat <<__EOF__ >> "$cfgfile"
4063 ifelse([$1], [],
4064 [#! $SHELL
4065
4066 # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
4067 # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
4068 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
4069 #
4070 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
4071 # Free Software Foundation, Inc.
4072 #
4073 # This file is part of GNU Libtool:
4074 # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
4075 #
4076 # This program is free software; you can redistribute it and/or modify
4077 # it under the terms of the GNU General Public License as published by
4078 # the Free Software Foundation; either version 2 of the License, or
4079 # (at your option) any later version.
4080 #
4081 # This program is distributed in the hope that it will be useful, but
4082 # WITHOUT ANY WARRANTY; without even the implied warranty of
4083 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
4084 # General Public License for more details.
4085 #
4086 # You should have received a copy of the GNU General Public License
4087 # along with this program; if not, write to the Free Software
4088 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
4089 #
4090 # As a special exception to the GNU General Public License, if you
4091 # distribute this file as part of a program that contains a
4092 # configuration script generated by Autoconf, you may include it under
4093 # the same distribution terms that you use for the rest of that program.
4094
4095 # A sed program that does not truncate output.
4096 SED=$lt_SED
4097
4098 # Sed that helps us avoid accidentally triggering echo(1) options like -n.
4099 Xsed="$SED -e 1s/^X//"
4100
4101 # The HP-UX ksh and POSIX shell print the target directory to stdout
4102 # if CDPATH is set.
4103 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
4104
4105 # The names of the tagged configurations supported by this script.
4106 available_tags=
4107
4108 # ### BEGIN LIBTOOL CONFIG],
4109 [# ### BEGIN LIBTOOL TAG CONFIG: $tagname])
4110
4111 # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
4112
4113 # Shell to use when invoking shell scripts.
4114 SHELL=$lt_SHELL
4115
4116 # Whether or not to build shared libraries.
4117 build_libtool_libs=$enable_shared
4118
4119 # Whether or not to build static libraries.
4120 build_old_libs=$enable_static
4121
4122 # Whether or not to add -lc for building shared libraries.
4123 build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)
4124
4125 # Whether or not to disallow shared libs when runtime libs are static
4126 allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)
4127
4128 # Whether or not to optimize for fast installation.
4129 fast_install=$enable_fast_install
4130
4131 # The host system.
4132 host_alias=$host_alias
4133 host=$host
4134 host_os=$host_os
4135
4136 # The build system.
4137 build_alias=$build_alias
4138 build=$build
4139 build_os=$build_os
4140
4141 # An echo program that does not interpret backslashes.
4142 echo=$lt_echo
4143
4144 # The archiver.
4145 AR=$lt_AR
4146 AR_FLAGS=$lt_AR_FLAGS
4147
4148 # A C compiler.
4149 LTCC=$lt_LTCC
4150
4151 # A language-specific compiler.
4152 CC=$lt_[]_LT_AC_TAGVAR(compiler, $1)
4153
4154 # Is the compiler the GNU C compiler?
4155 with_gcc=$_LT_AC_TAGVAR(GCC, $1)
4156
4157 # An ERE matcher.
4158 EGREP=$lt_EGREP
4159
4160 # The linker used to build libraries.
4161 LD=$lt_[]_LT_AC_TAGVAR(LD, $1)
4162
4163 # Whether we need hard or soft links.
4164 LN_S=$lt_LN_S
4165
4166 # A BSD-compatible nm program.
4167 NM=$lt_NM
4168
4169 # A symbol stripping program
4170 STRIP=$lt_STRIP
4171
4172 # Used to examine libraries when file_magic_cmd begins "file"
4173 MAGIC_CMD=$MAGIC_CMD
4174
4175 # Used on cygwin: DLL creation program.
4176 DLLTOOL="$DLLTOOL"
4177
4178 # Used on cygwin: object dumper.
4179 OBJDUMP="$OBJDUMP"
4180
4181 # Used on cygwin: assembler.
4182 AS="$AS"
4183
4184 # The name of the directory that contains temporary libtool files.
4185 objdir=$objdir
4186
4187 # How to create reloadable object files.
4188 reload_flag=$lt_reload_flag
4189 reload_cmds=$lt_reload_cmds
4190
4191 # How to pass a linker flag through the compiler.
4192 wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
4193
4194 # Object file suffix (normally "o").
4195 objext="$ac_objext"
4196
4197 # Old archive suffix (normally "a").
4198 libext="$libext"
4199
4200 # Shared library suffix (normally ".so").
4201 shrext_cmds='$shrext_cmds'
4202
4203 # Executable file suffix (normally "").
4204 exeext="$exeext"
4205
4206 # Additional compiler flags for building library objects.
4207 pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)
4208 pic_mode=$pic_mode
4209
4210 # What is the maximum length of a command?
4211 max_cmd_len=$lt_cv_sys_max_cmd_len
4212
4213 # Does compiler simultaneously support -c and -o options?
4214 compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)
4215
4216 # Must we lock files when doing compilation?
4217 need_locks=$lt_need_locks
4218
4219 # Do we need the lib prefix for modules?
4220 need_lib_prefix=$need_lib_prefix
4221
4222 # Do we need a version for libraries?
4223 need_version=$need_version
4224
4225 # Whether dlopen is supported.
4226 dlopen_support=$enable_dlopen
4227
4228 # Whether dlopen of programs is supported.
4229 dlopen_self=$enable_dlopen_self
4230
4231 # Whether dlopen of statically linked programs is supported.
4232 dlopen_self_static=$enable_dlopen_self_static
4233
4234 # Compiler flag to prevent dynamic linking.
4235 link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1)
4236
4237 # Compiler flag to turn off builtin functions.
4238 no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)
4239
4240 # Compiler flag to allow reflexive dlopens.
4241 export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)
4242
4243 # Compiler flag to generate shared objects directly from archives.
4244 whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1)
4245
4246 # Compiler flag to generate thread-safe objects.
4247 thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1)
4248
4249 # Library versioning type.
4250 version_type=$version_type
4251
4252 # Format of library name prefix.
4253 libname_spec=$lt_libname_spec
4254
4255 # List of archive names.  First name is the real one, the rest are links.
4256 # The last name is the one that the linker finds with -lNAME.
4257 library_names_spec=$lt_library_names_spec
4258
4259 # The coded name of the library, if different from the real name.
4260 soname_spec=$lt_soname_spec
4261
4262 # Commands used to build and install an old-style archive.
4263 RANLIB=$lt_RANLIB
4264 old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1)
4265 old_postinstall_cmds=$lt_old_postinstall_cmds
4266 old_postuninstall_cmds=$lt_old_postuninstall_cmds
4267
4268 # Create an old-style archive from a shared archive.
4269 old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1)
4270
4271 # Create a temporary old-style archive to link instead of a shared archive.
4272 old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)
4273
4274 # Commands used to build and install a shared archive.
4275 archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1)
4276 archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1)
4277 postinstall_cmds=$lt_postinstall_cmds
4278 postuninstall_cmds=$lt_postuninstall_cmds
4279
4280 # Commands used to build a loadable module (assumed same as above if empty)
4281 module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1)
4282 module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1)
4283
4284 # Commands to strip libraries.
4285 old_striplib=$lt_old_striplib
4286 striplib=$lt_striplib
4287
4288 # Dependencies to place before the objects being linked to create a
4289 # shared library.
4290 predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1)
4291
4292 # Dependencies to place after the objects being linked to create a
4293 # shared library.
4294 postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1)
4295
4296 # Dependencies to place before the objects being linked to create a
4297 # shared library.
4298 predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1)
4299
4300 # Dependencies to place after the objects being linked to create a
4301 # shared library.
4302 postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1)
4303
4304 # The library search path used internally by the compiler when linking
4305 # a shared library.
4306 compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1)
4307
4308 # Method to check whether dependent libraries are shared objects.
4309 deplibs_check_method=$lt_deplibs_check_method
4310
4311 # Command to use when deplibs_check_method == file_magic.
4312 file_magic_cmd=$lt_file_magic_cmd
4313
4314 # Flag that allows shared libraries with undefined symbols to be built.
4315 allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1)
4316
4317 # Flag that forces no undefined symbols.
4318 no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1)
4319
4320 # Commands used to finish a libtool library installation in a directory.
4321 finish_cmds=$lt_finish_cmds
4322
4323 # Same as above, but a single script fragment to be evaled but not shown.
4324 finish_eval=$lt_finish_eval
4325
4326 # Take the output of nm and produce a listing of raw symbols and C names.
4327 global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
4328
4329 # Transform the output of nm in a proper C declaration
4330 global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
4331
4332 # Transform the output of nm in a C name address pair
4333 global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
4334
4335 # This is the shared library runtime path variable.
4336 runpath_var=$runpath_var
4337
4338 # This is the shared library path variable.
4339 shlibpath_var=$shlibpath_var
4340
4341 # Is shlibpath searched before the hard-coded library search path?
4342 shlibpath_overrides_runpath=$shlibpath_overrides_runpath
4343
4344 # How to hardcode a shared library path into an executable.
4345 hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1)
4346
4347 # Whether we should hardcode library paths into libraries.
4348 hardcode_into_libs=$hardcode_into_libs
4349
4350 # Flag to hardcode \$libdir into a binary during linking.
4351 # This must work even if \$libdir does not exist.
4352 hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)
4353
4354 # If ld is used when linking, flag to hardcode \$libdir into
4355 # a binary during linking. This must work even if \$libdir does
4356 # not exist.
4357 hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)
4358
4359 # Whether we need a single -rpath flag with a separated argument.
4360 hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1)
4361
4362 # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
4363 # resulting binary.
4364 hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1)
4365
4366 # Set to yes if using the -LDIR flag during linking hardcodes DIR into the
4367 # resulting binary.
4368 hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1)
4369
4370 # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
4371 # the resulting binary.
4372 hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)
4373
4374 # Set to yes if building a shared library automatically hardcodes DIR into the library
4375 # and all subsequent libraries and executables linked against it.
4376 hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1)
4377
4378 # Variables whose values should be saved in libtool wrapper scripts and
4379 # restored at relink time.
4380 variables_saved_for_relink="$variables_saved_for_relink"
4381
4382 # Whether libtool must link a program against all its dependency libraries.
4383 link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1)
4384
4385 # Compile-time system search path for libraries
4386 sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
4387
4388 # Run-time system search path for libraries
4389 sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
4390
4391 # Fix the shell variable \$srcfile for the compiler.
4392 fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)"
4393
4394 # Set to yes if exported symbols are required.
4395 always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1)
4396
4397 # The commands to list exported symbols.
4398 export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1)
4399
4400 # The commands to extract the exported symbol list from a shared archive.
4401 extract_expsyms_cmds=$lt_extract_expsyms_cmds
4402
4403 # Symbols that should not be listed in the preloaded symbols.
4404 exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1)
4405
4406 # Symbols that must always be exported.
4407 include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1)
4408
4409 ifelse([$1],[],
4410 [# ### END LIBTOOL CONFIG],
4411 [# ### END LIBTOOL TAG CONFIG: $tagname])
4412
4413 __EOF__
4414
4415 ifelse([$1],[], [
4416   case $host_os in
4417   aix3*)
4418     cat <<\EOF >> "$cfgfile"
4419
4420 # AIX sometimes has problems with the GCC collect2 program.  For some
4421 # reason, if we set the COLLECT_NAMES environment variable, the problems
4422 # vanish in a puff of smoke.
4423 if test "X${COLLECT_NAMES+set}" != Xset; then
4424   COLLECT_NAMES=
4425   export COLLECT_NAMES
4426 fi
4427 EOF
4428     ;;
4429   esac
4430
4431   # We use sed instead of cat because bash on DJGPP gets confused if
4432   # if finds mixed CR/LF and LF-only lines.  Since sed operates in
4433   # text mode, it properly converts lines to CR/LF.  This bash problem
4434   # is reportedly fixed, but why not run on old versions too?
4435   sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1)
4436
4437   mv -f "$cfgfile" "$ofile" || \
4438     (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
4439   chmod +x "$ofile"
4440 ])
4441 else
4442   # If there is no Makefile yet, we rely on a make rule to execute
4443   # `config.status --recheck' to rerun these tests and create the
4444   # libtool script then.
4445   ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
4446   if test -f "$ltmain_in"; then
4447     test -f Makefile && make "$ltmain"
4448   fi
4449 fi
4450 ])# AC_LIBTOOL_CONFIG
4451
4452
4453 # AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME])
4454 # -------------------------------------------
4455 AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI],
4456 [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
4457
4458 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
4459
4460 if test "$GCC" = yes; then
4461   _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
4462
4463   AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
4464     lt_cv_prog_compiler_rtti_exceptions,
4465     [-fno-rtti -fno-exceptions], [],
4466     [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
4467 fi
4468 ])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI
4469
4470
4471 # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
4472 # ---------------------------------
4473 AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE],
4474 [AC_REQUIRE([AC_CANONICAL_HOST])
4475 AC_REQUIRE([AC_PROG_NM])
4476 AC_REQUIRE([AC_OBJEXT])
4477 # Check for command to grab the raw symbol name followed by C symbol from nm.
4478 AC_MSG_CHECKING([command to parse $NM output from $compiler object])
4479 AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
4480 [
4481 # These are sane defaults that work on at least a few old systems.
4482 # [They come from Ultrix.  What could be older than Ultrix?!! ;)]
4483
4484 # Character class describing NM global symbol codes.
4485 symcode='[[BCDEGRST]]'
4486
4487 # Regexp to match symbols that can be accessed directly from C.
4488 sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
4489
4490 # Transform an extracted symbol line into a proper C declaration
4491 lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'"
4492
4493 # Transform an extracted symbol line into symbol name and symbol address
4494 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'"
4495
4496 # Define system-specific variables.
4497 case $host_os in
4498 aix*)
4499   symcode='[[BCDT]]'
4500   ;;
4501 cygwin* | mingw* | pw32*)
4502   symcode='[[ABCDGISTW]]'
4503   ;;
4504 hpux*) # Its linker distinguishes data from code symbols
4505   if test "$host_cpu" = ia64; then
4506     symcode='[[ABCDEGRST]]'
4507   fi
4508   lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
4509   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'"
4510   ;;
4511 linux*)
4512   if test "$host_cpu" = ia64; then
4513     symcode='[[ABCDGIRSTW]]'
4514     lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
4515     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'"
4516   fi
4517   ;;
4518 irix* | nonstopux*)
4519   symcode='[[BCDEGRST]]'
4520   ;;
4521 osf*)
4522   symcode='[[BCDEGQRST]]'
4523   ;;
4524 solaris* | sysv5*)
4525   symcode='[[BDRT]]'
4526   ;;
4527 sysv4)
4528   symcode='[[DFNSTU]]'
4529   ;;
4530 esac
4531
4532 # Handle CRLF in mingw tool chain
4533 opt_cr=
4534 case $build_os in
4535 mingw*)
4536   opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp
4537   ;;
4538 esac
4539
4540 # If we're using GNU nm, then use its standard symbol codes.
4541 case `$NM -V 2>&1` in
4542 *GNU* | *'with BFD'*)
4543   symcode='[[ABCDGIRSTW]]' ;;
4544 esac
4545
4546 # Try without a prefix undercore, then with it.
4547 for ac_symprfx in "" "_"; do
4548
4549   # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
4550   symxfrm="\\1 $ac_symprfx\\2 \\2"
4551
4552   # Write the raw and C identifiers.
4553   lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[      ]]\($symcode$symcode*\)[[       ]][[    ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
4554
4555   # Check to see that the pipe works correctly.
4556   pipe_works=no
4557
4558   rm -f conftest*
4559   cat > conftest.$ac_ext <<EOF
4560 #ifdef __cplusplus
4561 extern "C" {
4562 #endif
4563 char nm_test_var;
4564 void nm_test_func(){}
4565 #ifdef __cplusplus
4566 }
4567 #endif
4568 int main(){nm_test_var='a';nm_test_func();return(0);}
4569 EOF
4570
4571   if AC_TRY_EVAL(ac_compile); then
4572     # Now try to grab the symbols.
4573     nlist=conftest.nm
4574     if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then
4575       # Try sorting and uniquifying the output.
4576       if sort "$nlist" | uniq > "$nlist"T; then
4577         mv -f "$nlist"T "$nlist"
4578       else
4579         rm -f "$nlist"T
4580       fi
4581
4582       # Make sure that we snagged all the symbols we need.
4583       if grep ' nm_test_var$' "$nlist" >/dev/null; then
4584         if grep ' nm_test_func$' "$nlist" >/dev/null; then
4585           cat <<EOF > conftest.$ac_ext
4586 #ifdef __cplusplus
4587 extern "C" {
4588 #endif
4589
4590 EOF
4591           # Now generate the symbol file.
4592           eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext'
4593
4594           cat <<EOF >> conftest.$ac_ext
4595 #if defined (__STDC__) && __STDC__
4596 # define lt_ptr_t void *
4597 #else
4598 # define lt_ptr_t char *
4599 # define const
4600 #endif
4601
4602 /* The mapping between symbol names and symbols. */
4603 const struct {
4604   const char *name;
4605   lt_ptr_t address;
4606 }
4607 lt_preloaded_symbols[[]] =
4608 {
4609 EOF
4610           $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/  {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext
4611           cat <<\EOF >> conftest.$ac_ext
4612   {0, (lt_ptr_t) 0}
4613 };
4614
4615 #ifdef __cplusplus
4616 }
4617 #endif
4618 EOF
4619           # Now try linking the two files.
4620           mv conftest.$ac_objext conftstm.$ac_objext
4621           lt_save_LIBS="$LIBS"
4622           lt_save_CFLAGS="$CFLAGS"
4623           LIBS="conftstm.$ac_objext"
4624           CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
4625           if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
4626             pipe_works=yes
4627           fi
4628           LIBS="$lt_save_LIBS"
4629           CFLAGS="$lt_save_CFLAGS"
4630         else
4631           echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
4632         fi
4633       else
4634         echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
4635       fi
4636     else
4637       echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
4638     fi
4639   else
4640     echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
4641     cat conftest.$ac_ext >&5
4642   fi
4643   rm -f conftest* conftst*
4644
4645   # Do not use the global_symbol_pipe unless it works.
4646   if test "$pipe_works" = yes; then
4647     break
4648   else
4649     lt_cv_sys_global_symbol_pipe=
4650   fi
4651 done
4652 ])
4653 if test -z "$lt_cv_sys_global_symbol_pipe"; then
4654   lt_cv_sys_global_symbol_to_cdecl=
4655 fi
4656 if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
4657   AC_MSG_RESULT(failed)
4658 else
4659   AC_MSG_RESULT(ok)
4660 fi
4661 ]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
4662
4663
4664 # AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME])
4665 # ---------------------------------------
4666 AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC],
4667 [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)=
4668 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
4669 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)=
4670
4671 AC_MSG_CHECKING([for $compiler option to produce PIC])
4672  ifelse([$1],[CXX],[
4673   # C++ specific cases for pic, static, wl, etc.
4674   if test "$GXX" = yes; then
4675     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4676     _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
4677
4678     case $host_os in
4679     aix*)
4680       # All AIX code is PIC.
4681       if test "$host_cpu" = ia64; then
4682         # AIX 5 now supports IA64 processor
4683         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4684       fi
4685       ;;
4686     amigaos*)
4687       # FIXME: we need at least 68020 code to build shared libraries, but
4688       # adding the `-m68020' flag to GCC prevents building anything better,
4689       # like `-m68040'.
4690       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
4691       ;;
4692     beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
4693       # PIC is the default for these OSes.
4694       ;;
4695     mingw* | os2* | pw32*)
4696       # This hack is so that the source file can tell whether it is being
4697       # built for inclusion in a dll (and should export symbols for example).
4698       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
4699       ;;
4700     darwin* | rhapsody*)
4701       # PIC is the default on this platform
4702       # Common symbols not allowed in MH_DYLIB files
4703       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
4704       ;;
4705     *djgpp*)
4706       # DJGPP does not support shared libraries at all
4707       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
4708       ;;
4709     sysv4*MP*)
4710       if test -d /usr/nec; then
4711         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
4712       fi
4713       ;;
4714     hpux*)
4715       # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
4716       # not for PA HP-UX.
4717       case "$host_cpu" in
4718       hppa*64*|ia64*)
4719         ;;
4720       *)
4721         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4722         ;;
4723       esac
4724       ;;
4725     *)
4726       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4727       ;;
4728     esac
4729   else
4730     case $host_os in
4731       aix4* | aix5*)
4732         # All AIX code is PIC.
4733         if test "$host_cpu" = ia64; then
4734           # AIX 5 now supports IA64 processor
4735           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4736         else
4737           _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
4738         fi
4739         ;;
4740       chorus*)
4741         case $cc_basename in
4742         cxch68*)
4743           # Green Hills C++ Compiler
4744           # _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"
4745           ;;
4746         esac
4747         ;;
4748        darwin*)
4749          # PIC is the default on this platform
4750          # Common symbols not allowed in MH_DYLIB files
4751          case $cc_basename in
4752            xlc*)
4753            _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
4754            _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4755            ;;
4756          esac
4757        ;;
4758       dgux*)
4759         case $cc_basename in
4760           ec++*)
4761             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4762             ;;
4763           ghcx*)
4764             # Green Hills C++ Compiler
4765             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4766             ;;
4767           *)
4768             ;;
4769         esac
4770         ;;
4771       freebsd* | kfreebsd*-gnu | dragonfly*)
4772         # FreeBSD uses GNU C++
4773         ;;
4774       hpux9* | hpux10* | hpux11*)
4775         case $cc_basename in
4776           CC*)
4777             _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4778             _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive"
4779             if test "$host_cpu" != ia64; then
4780               _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
4781             fi
4782             ;;
4783           aCC*)
4784             _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4785             _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive"
4786             case "$host_cpu" in
4787             hppa*64*|ia64*)
4788               # +Z the default
4789               ;;
4790             *)
4791               _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
4792               ;;
4793             esac
4794             ;;
4795           *)
4796             ;;
4797         esac
4798         ;;
4799       irix5* | irix6* | nonstopux*)
4800         case $cc_basename in
4801           CC*)
4802             _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4803             _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4804             # CC pic flag -KPIC is the default.
4805             ;;
4806           *)
4807             ;;
4808         esac
4809         ;;
4810       linux*)
4811         case $cc_basename in
4812           KCC*)
4813             # KAI C++ Compiler
4814             _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
4815             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4816             ;;
4817           icpc* | ecpc*)
4818             # Intel C++
4819             _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4820             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4821             _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
4822             ;;
4823           pgCC*)
4824             # Portland Group C++ compiler.
4825             _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4826             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
4827             _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
4828             ;;
4829           cxx*)
4830             # Compaq C++
4831             # Make sure the PIC flag is empty.  It appears that all Alpha
4832             # Linux and Compaq Tru64 Unix objects are PIC.
4833             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
4834             _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4835             ;;
4836           *)
4837             ;;
4838         esac
4839         ;;
4840       lynxos*)
4841         ;;
4842       m88k*)
4843         ;;
4844       mvs*)
4845         case $cc_basename in
4846           cxx*)
4847             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
4848             ;;
4849           *)
4850             ;;
4851         esac
4852         ;;
4853       netbsd*)
4854         ;;
4855       osf3* | osf4* | osf5*)
4856         case $cc_basename in
4857           KCC*)
4858             _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
4859             ;;
4860           RCC*)
4861             # Rational C++ 2.4.1
4862             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4863             ;;
4864           cxx*)
4865             # Digital/Compaq C++
4866             _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4867             # Make sure the PIC flag is empty.  It appears that all Alpha
4868             # Linux and Compaq Tru64 Unix objects are PIC.
4869             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
4870             _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4871             ;;
4872           *)
4873             ;;
4874         esac
4875         ;;
4876       psos*)
4877         ;;
4878       sco*)
4879         case $cc_basename in
4880           CC*)
4881             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4882             ;;
4883           *)
4884             ;;
4885         esac
4886         ;;
4887       solaris*)
4888         case $cc_basename in
4889           CC*)
4890             # Sun C++ 4.2, 5.x and Centerline C++
4891             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4892             _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4893             _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
4894             ;;
4895           gcx*)
4896             # Green Hills C++ Compiler
4897             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
4898             ;;
4899           *)
4900             ;;
4901         esac
4902         ;;
4903       sunos4*)
4904         case $cc_basename in
4905           CC*)
4906             # Sun C++ 4.x
4907             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4908             _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4909             ;;
4910           lcc*)
4911             # Lucid
4912             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4913             ;;
4914           *)
4915             ;;
4916         esac
4917         ;;
4918       tandem*)
4919         case $cc_basename in
4920           NCC*)
4921             # NonStop-UX NCC 3.20
4922             _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4923             ;;
4924           *)
4925             ;;
4926         esac
4927         ;;
4928       unixware*)
4929         ;;
4930       vxworks*)
4931         ;;
4932       *)
4933         _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
4934         ;;
4935     esac
4936   fi
4937 ],
4938 [
4939   if test "$GCC" = yes; then
4940     _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4941     _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
4942
4943     case $host_os in
4944       aix*)
4945       # All AIX code is PIC.
4946       if test "$host_cpu" = ia64; then
4947         # AIX 5 now supports IA64 processor
4948         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4949       fi
4950       ;;
4951
4952     amigaos*)
4953       # FIXME: we need at least 68020 code to build shared libraries, but
4954       # adding the `-m68020' flag to GCC prevents building anything better,
4955       # like `-m68040'.
4956       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
4957       ;;
4958
4959     beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
4960       # PIC is the default for these OSes.
4961       ;;
4962
4963     mingw* | pw32* | os2*)
4964       # This hack is so that the source file can tell whether it is being
4965       # built for inclusion in a dll (and should export symbols for example).
4966       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
4967       ;;
4968
4969     darwin* | rhapsody*)
4970       # PIC is the default on this platform
4971       # Common symbols not allowed in MH_DYLIB files
4972       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
4973       ;;
4974
4975     msdosdjgpp*)
4976       # Just because we use GCC doesn't mean we suddenly get shared libraries
4977       # on systems that don't support them.
4978       _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
4979       enable_shared=no
4980       ;;
4981
4982     sysv4*MP*)
4983       if test -d /usr/nec; then
4984         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
4985       fi
4986       ;;
4987
4988     hpux*)
4989       # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
4990       # not for PA HP-UX.
4991       case "$host_cpu" in
4992       hppa*64*|ia64*)
4993         # +Z the default
4994         ;;
4995       *)
4996         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4997         ;;
4998       esac
4999       ;;
5000
5001     *)
5002       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
5003       ;;
5004     esac
5005   else
5006     # PORTME Check for flag to pass linker flags through the system compiler.
5007     case $host_os in
5008     aix*)
5009       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5010       if test "$host_cpu" = ia64; then
5011         # AIX 5 now supports IA64 processor
5012         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5013       else
5014         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
5015       fi
5016       ;;
5017       darwin*)
5018         # PIC is the default on this platform
5019         # Common symbols not allowed in MH_DYLIB files
5020        case $cc_basename in
5021          xlc*)
5022          _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
5023          _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5024          ;;
5025        esac
5026        ;;
5027
5028     mingw* | pw32* | os2*)
5029       # This hack is so that the source file can tell whether it is being
5030       # built for inclusion in a dll (and should export symbols for example).
5031       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
5032       ;;
5033
5034     hpux9* | hpux10* | hpux11*)
5035       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5036       # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
5037       # not for PA HP-UX.
5038       case "$host_cpu" in
5039       hppa*64*|ia64*)
5040         # +Z the default
5041         ;;
5042       *)
5043         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
5044         ;;
5045       esac
5046       # Is there a better lt_prog_compiler_static that works with the bundled CC?
5047       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
5048       ;;
5049
5050     irix5* | irix6* | nonstopux*)
5051       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5052       # PIC (with -KPIC) is the default.
5053       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
5054       ;;
5055
5056     newsos6)
5057       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5058       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5059       ;;
5060
5061     linux*)
5062       case $cc_basename in
5063       icc* | ecc*)
5064         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5065         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5066         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
5067         ;;
5068       pgcc* | pgf77* | pgf90*)
5069         # Portland Group compilers (*not* the Pentium gcc compiler,
5070         # which looks to be a dead project)
5071         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5072         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
5073         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
5074         ;;
5075       ccc*)
5076         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5077         # All Alpha code is PIC.
5078         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
5079         ;;
5080       esac
5081       ;;
5082
5083     osf3* | osf4* | osf5*)
5084       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5085       # All OSF/1 code is PIC.
5086       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
5087       ;;
5088
5089     sco3.2v5*)
5090       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kpic'
5091       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-dn'
5092       ;;
5093
5094     solaris*)
5095       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5096       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5097       case $cc_basename in
5098       f77* | f90* | f95*)
5099         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
5100       *)
5101         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
5102       esac
5103       ;;
5104
5105     sunos4*)
5106       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
5107       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
5108       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5109       ;;
5110
5111     sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
5112       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5113       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5114       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5115       ;;
5116
5117     sysv4*MP*)
5118       if test -d /usr/nec ;then
5119         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
5120         _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5121       fi
5122       ;;
5123
5124     unicos*)
5125       _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5126       _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
5127       ;;
5128
5129     uts4*)
5130       _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
5131       _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5132       ;;
5133
5134     *)
5135       _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
5136       ;;
5137     esac
5138   fi
5139 ])
5140 AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)])
5141
5142 #
5143 # Check to make sure the PIC flag actually works.
5144 #
5145 if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then
5146   AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works],
5147     _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1),
5148     [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [],
5149     [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in
5150      "" | " "*) ;;
5151      *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;;
5152      esac],
5153     [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
5154      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
5155 fi
5156 case "$host_os" in
5157   # For platforms which do not support PIC, -DPIC is meaningless:
5158   *djgpp*)
5159     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
5160     ;;
5161   *)
5162     _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])"
5163     ;;
5164 esac
5165 ])
5166
5167
5168 # AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME])
5169 # ------------------------------------
5170 # See if the linker supports building shared libraries.
5171 AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS],
5172 [AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
5173 ifelse([$1],[CXX],[
5174   _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
5175   case $host_os in
5176   aix4* | aix5*)
5177     # If we're using GNU nm, then we don't want the "-C" option.
5178     # -C means demangle to AIX nm, but means don't demangle with GNU nm
5179     if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
5180       _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'
5181     else
5182       _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'
5183     fi
5184     ;;
5185   pw32*)
5186     _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
5187   ;;
5188   cygwin* | mingw*)
5189     _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'
5190   ;;
5191   *)
5192     _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
5193   ;;
5194   esac
5195 ],[
5196   runpath_var=
5197   _LT_AC_TAGVAR(allow_undefined_flag, $1)=
5198   _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
5199   _LT_AC_TAGVAR(archive_cmds, $1)=
5200   _LT_AC_TAGVAR(archive_expsym_cmds, $1)=
5201   _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)=
5202   _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)=
5203   _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
5204   _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
5205   _LT_AC_TAGVAR(thread_safe_flag_spec, $1)=
5206   _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
5207   _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
5208   _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
5209   _LT_AC_TAGVAR(hardcode_direct, $1)=no
5210   _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
5211   _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
5212   _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
5213   _LT_AC_TAGVAR(hardcode_automatic, $1)=no
5214   _LT_AC_TAGVAR(module_cmds, $1)=
5215   _LT_AC_TAGVAR(module_expsym_cmds, $1)=
5216   _LT_AC_TAGVAR(always_export_symbols, $1)=no
5217   _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
5218   # include_expsyms should be a list of space-separated symbols to be *always*
5219   # included in the symbol list
5220   _LT_AC_TAGVAR(include_expsyms, $1)=
5221   # exclude_expsyms can be an extended regexp of symbols to exclude
5222   # it will be wrapped by ` (' and `)$', so one must not match beginning or
5223   # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
5224   # as well as any symbol that contains `d'.
5225   _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_"
5226   # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
5227   # platforms (ab)use it in PIC code, but their linkers get confused if
5228   # the symbol is explicitly referenced.  Since portable code cannot
5229   # rely on this symbol name, it's probably fine to never include it in
5230   # preloaded symbol tables.
5231   extract_expsyms_cmds=
5232   # Just being paranoid about ensuring that cc_basename is set.
5233   _LT_CC_BASENAME([$compiler])
5234   case $host_os in
5235   cygwin* | mingw* | pw32*)
5236     # FIXME: the MSVC++ port hasn't been tested in a loooong time
5237     # When not using gcc, we currently assume that we are using
5238     # Microsoft Visual C++.
5239     if test "$GCC" != yes; then
5240       with_gnu_ld=no
5241     fi
5242     ;;
5243   openbsd*)
5244     with_gnu_ld=no
5245     ;;
5246   esac
5247
5248   _LT_AC_TAGVAR(ld_shlibs, $1)=yes
5249   if test "$with_gnu_ld" = yes; then
5250     # If archive_cmds runs LD, not CC, wlarc should be empty
5251     wlarc='${wl}'
5252     
5253     # Set some defaults for GNU ld with shared library support. These
5254     # are reset later if shared libraries are not supported. Putting them
5255     # here allows them to be overridden if necessary.
5256     runpath_var=LD_RUN_PATH
5257     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
5258     _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
5259     # ancient GNU ld didn't support --whole-archive et. al.
5260     if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
5261         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
5262       else
5263         _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
5264     fi
5265     supports_anon_versioning=no
5266     case `$LD -v 2>/dev/null` in
5267       *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
5268       *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
5269       *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
5270       *\ 2.11.*) ;; # other 2.11 versions
5271       *) supports_anon_versioning=yes ;;
5272     esac
5273     
5274     # See if GNU ld supports shared libraries.
5275     case $host_os in
5276     aix3* | aix4* | aix5*)
5277       # On AIX/PPC, the GNU linker is very broken
5278       if test "$host_cpu" != ia64; then
5279         _LT_AC_TAGVAR(ld_shlibs, $1)=no
5280         cat <<EOF 1>&2
5281
5282 *** Warning: the GNU linker, at least up to release 2.9.1, is reported
5283 *** to be unable to reliably create shared libraries on AIX.
5284 *** Therefore, libtool is disabling shared libraries support.  If you
5285 *** really care for shared libraries, you may want to modify your PATH
5286 *** so that a non-GNU linker is found, and then restart.
5287
5288 EOF
5289       fi
5290       ;;
5291
5292     amigaos*)
5293       _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)'
5294       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5295       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5296
5297       # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
5298       # that the semantics of dynamic libraries on AmigaOS, at least up
5299       # to version 4, is to share data among multiple programs linked
5300       # with the same dynamic library.  Since this doesn't match the
5301       # behavior of shared libraries on other platforms, we can't use
5302       # them.
5303       _LT_AC_TAGVAR(ld_shlibs, $1)=no
5304       ;;
5305
5306     beos*)
5307       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5308         _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5309         # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
5310         # support --undefined.  This deserves some investigation.  FIXME
5311         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5312       else
5313         _LT_AC_TAGVAR(ld_shlibs, $1)=no
5314       fi
5315       ;;
5316
5317     cygwin* | mingw* | pw32*)
5318       # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
5319       # as there is no search path for DLLs.
5320       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5321       _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5322       _LT_AC_TAGVAR(always_export_symbols, $1)=no
5323       _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5324       _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'
5325
5326       if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
5327         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib'
5328         # If the export-symbols file already is a .def file (1st line
5329         # is EXPORTS), use it as is; otherwise, prepend...
5330         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
5331           cp $export_symbols $output_objdir/$soname.def;
5332         else
5333           echo EXPORTS > $output_objdir/$soname.def;
5334           cat $export_symbols >> $output_objdir/$soname.def;
5335         fi~
5336         $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--image-base=0x10000000  ${wl}--out-implib,$lib'
5337       else
5338         _LT_AC_TAGVAR(ld_shlibs, $1)=no
5339       fi
5340       ;;
5341
5342     linux*)
5343       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5344         tmp_addflag=
5345         case $cc_basename,$host_cpu in
5346         pgcc*)                          # Portland Group C compiler
5347           _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'
5348           tmp_addflag=' $pic_flag'
5349           ;;
5350         pgf77* | pgf90* )                       # Portland Group f77 and f90 compilers
5351           _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'
5352           tmp_addflag=' $pic_flag -Mnomain' ;;
5353         ecc*,ia64* | icc*,ia64*)                # Intel C compiler on ia64
5354           tmp_addflag=' -i_dynamic' ;;
5355         efc*,ia64* | ifort*,ia64*)      # Intel Fortran compiler on ia64
5356           tmp_addflag=' -i_dynamic -nofor_main' ;;
5357         ifc* | ifort*)                  # Intel Fortran compiler
5358           tmp_addflag=' -nofor_main' ;;
5359         esac
5360         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5361
5362         if test $supports_anon_versioning = yes; then
5363           _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~
5364   cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
5365   $echo "local: *; };" >> $output_objdir/$libname.ver~
5366           $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
5367         fi
5368       else
5369         _LT_AC_TAGVAR(ld_shlibs, $1)=no
5370       fi
5371       ;;
5372
5373     netbsd*)
5374       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
5375         _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
5376         wlarc=
5377       else
5378         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5379         _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'
5380       fi
5381       ;;
5382
5383     solaris* | sysv5*)
5384       if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
5385         _LT_AC_TAGVAR(ld_shlibs, $1)=no
5386         cat <<EOF 1>&2
5387
5388 *** Warning: The releases 2.8.* of the GNU linker cannot reliably
5389 *** create shared libraries on Solaris systems.  Therefore, libtool
5390 *** is disabling shared libraries support.  We urge you to upgrade GNU
5391 *** binutils to release 2.9.1 or newer.  Another option is to modify
5392 *** your PATH or compiler configuration so that the native linker is
5393 *** used, and then restart.
5394
5395 EOF
5396       elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5397         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5398         _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'
5399       else
5400         _LT_AC_TAGVAR(ld_shlibs, $1)=no
5401       fi
5402       ;;
5403
5404     sunos4*)
5405       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
5406       wlarc=
5407       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5408       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5409       ;;
5410
5411     *)
5412       if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5413         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5414         _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'
5415       else
5416         _LT_AC_TAGVAR(ld_shlibs, $1)=no
5417       fi
5418       ;;
5419     esac
5420
5421     if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then
5422       runpath_var=
5423       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
5424       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
5425       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
5426     fi
5427   else
5428     # PORTME fill in a description of your system's linker (not GNU ld)
5429     case $host_os in
5430     aix3*)
5431       _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5432       _LT_AC_TAGVAR(always_export_symbols, $1)=yes
5433       _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'
5434       # Note: this linker hardcodes the directories in LIBPATH if there
5435       # are no directories specified by -L.
5436       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5437       if test "$GCC" = yes && test -z "$link_static_flag"; then
5438         # Neither direct hardcoding nor static linking is supported with a
5439         # broken collect2.
5440         _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
5441       fi
5442       ;;
5443
5444     aix4* | aix5*)
5445       if test "$host_cpu" = ia64; then
5446         # On IA64, the linker does run time linking by default, so we don't
5447         # have to do anything special.
5448         aix_use_runtimelinking=no
5449         exp_sym_flag='-Bexport'
5450         no_entry_flag=""
5451       else
5452         # If we're using GNU nm, then we don't want the "-C" option.
5453         # -C means demangle to AIX nm, but means don't demangle with GNU nm
5454         if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
5455           _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'
5456         else
5457           _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'
5458         fi
5459         aix_use_runtimelinking=no
5460
5461         # Test if we are trying to use run time linking or normal
5462         # AIX style linking. If -brtl is somewhere in LDFLAGS, we
5463         # need to do runtime linking.
5464         case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*)
5465           for ld_flag in $LDFLAGS; do
5466           if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
5467             aix_use_runtimelinking=yes
5468             break
5469           fi
5470           done
5471         esac
5472
5473         exp_sym_flag='-bexport'
5474         no_entry_flag='-bnoentry'
5475       fi
5476
5477       # When large executables or shared objects are built, AIX ld can
5478       # have problems creating the table of contents.  If linking a library
5479       # or program results in "error TOC overflow" add -mminimal-toc to
5480       # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
5481       # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
5482
5483       _LT_AC_TAGVAR(archive_cmds, $1)=''
5484       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5485       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
5486       _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5487
5488       if test "$GCC" = yes; then
5489         case $host_os in aix4.[[012]]|aix4.[[012]].*)
5490         # We only want to do this on AIX 4.2 and lower, the check
5491         # below for broken collect2 doesn't work under 4.3+
5492           collect2name=`${CC} -print-prog-name=collect2`
5493           if test -f "$collect2name" && \
5494            strings "$collect2name" | grep resolve_lib_name >/dev/null
5495           then
5496           # We have reworked collect2
5497           _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5498           else
5499           # We have old collect2
5500           _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
5501           # It fails to find uninstalled libraries when the uninstalled
5502           # path is not listed in the libpath.  Setting hardcode_minus_L
5503           # to unsupported forces relinking
5504           _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5505           _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5506           _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
5507           fi
5508         esac
5509         shared_flag='-shared'
5510         if test "$aix_use_runtimelinking" = yes; then
5511           shared_flag="$shared_flag "'${wl}-G'
5512         fi
5513       else
5514         # not using gcc
5515         if test "$host_cpu" = ia64; then
5516         # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
5517         # chokes on -Wl,-G. The following line is correct:
5518           shared_flag='-G'
5519         else
5520         if test "$aix_use_runtimelinking" = yes; then
5521             shared_flag='${wl}-G'
5522           else
5523             shared_flag='${wl}-bM:SRE'
5524         fi
5525         fi
5526       fi
5527
5528       # It seems that -bexpall does not export symbols beginning with
5529       # underscore (_), so it is better to generate a list of symbols to export.
5530       _LT_AC_TAGVAR(always_export_symbols, $1)=yes
5531       if test "$aix_use_runtimelinking" = yes; then
5532         # Warning - without using the other runtime loading flags (-brtl),
5533         # -berok will link without error, but may produce a broken library.
5534         _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
5535        # Determine the default libpath from the value encoded in an empty executable.
5536        _LT_AC_SYS_LIBPATH_AIX
5537        _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
5538         _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"
5539        else
5540         if test "$host_cpu" = ia64; then
5541           _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
5542           _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
5543           _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"
5544         else
5545          # Determine the default libpath from the value encoded in an empty executable.
5546          _LT_AC_SYS_LIBPATH_AIX
5547          _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
5548           # Warning - without using the other run time loading flags,
5549           # -berok will link without error, but may produce a broken library.
5550           _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
5551           _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
5552           # -bexpall does not export symbols beginning with underscore (_)
5553           _LT_AC_TAGVAR(always_export_symbols, $1)=yes
5554           # Exported symbols can be pulled into shared objects from archives
5555           _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' '
5556           _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
5557           # This is similar to how AIX traditionally builds it's shared libraries.
5558           _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'
5559         fi
5560       fi
5561       ;;
5562
5563     amigaos*)
5564       _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)'
5565       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5566       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5567       # see comment about different semantics on the GNU ld section
5568       _LT_AC_TAGVAR(ld_shlibs, $1)=no
5569       ;;
5570
5571     bsdi[[45]]*)
5572       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
5573       ;;
5574
5575     cygwin* | mingw* | pw32*)
5576       # When not using gcc, we currently assume that we are using
5577       # Microsoft Visual C++.
5578       # hardcode_libdir_flag_spec is actually meaningless, as there is
5579       # no search path for DLLs.
5580       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
5581       _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5582       # Tell ltmain to make .lib files, not .a files.
5583       libext=lib
5584       # Tell ltmain to make .dll files, not .so files.
5585       shrext_cmds=".dll"
5586       # FIXME: Setting linknames here is a bad hack.
5587       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
5588       # The linker will automatically build a .lib file if we build a DLL.
5589       _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true'
5590       # FIXME: Should let the user specify the lib program.
5591       _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs'
5592       _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`'
5593       _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5594       ;;
5595
5596     darwin* | rhapsody*)
5597       case "$host_os" in
5598         rhapsody* | darwin1.[[012]])
5599          _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress'
5600          ;;
5601        *) # Darwin 1.3 on
5602          if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
5603            _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
5604          else
5605            case ${MACOSX_DEPLOYMENT_TARGET} in
5606              10.[[012]])
5607                _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
5608                ;;
5609              10.*)
5610                _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup'
5611                ;;
5612            esac
5613          fi
5614          ;;
5615       esac
5616       _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5617       _LT_AC_TAGVAR(hardcode_direct, $1)=no
5618       _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
5619       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
5620       _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
5621       _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5622     if test "$GCC" = yes ; then
5623         output_verbose_link_cmd='echo'
5624         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
5625       _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
5626       # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's
5627       _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}'
5628       _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}'
5629     else
5630       case $cc_basename in
5631         xlc*)
5632          output_verbose_link_cmd='echo'
5633          _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'
5634          _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
5635           # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's
5636          _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}'
5637           _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}'
5638           ;;
5639        *)
5640          _LT_AC_TAGVAR(ld_shlibs, $1)=no
5641           ;;
5642       esac
5643     fi
5644       ;;
5645
5646     dgux*)
5647       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5648       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5649       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5650       ;;
5651
5652     freebsd1*)
5653       _LT_AC_TAGVAR(ld_shlibs, $1)=no
5654       ;;
5655
5656     # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
5657     # support.  Future versions do this automatically, but an explicit c++rt0.o
5658     # does not break anything, and helps significantly (at the cost of a little
5659     # extra space).
5660     freebsd2.2*)
5661       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
5662       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5663       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5664       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5665       ;;
5666
5667     # Unfortunately, older versions of FreeBSD 2 do not have this feature.
5668     freebsd2*)
5669       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
5670       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5671       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5672       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5673       ;;
5674
5675     # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
5676     freebsd* | kfreebsd*-gnu | dragonfly*)
5677       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
5678       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5679       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5680       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5681       ;;
5682
5683     hpux9*)
5684       if test "$GCC" = yes; then
5685         _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'
5686       else
5687         _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'
5688       fi
5689       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
5690       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5691       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5692
5693       # hardcode_minus_L: Not really in the search PATH,
5694       # but as the default location of the library.
5695       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5696       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5697       ;;
5698
5699     hpux10* | hpux11*)
5700       if test "$GCC" = yes -a "$with_gnu_ld" = no; then
5701         case "$host_cpu" in
5702         hppa*64*|ia64*)
5703           _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
5704           ;;
5705         *)
5706           _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
5707           ;;
5708         esac
5709       else
5710         case "$host_cpu" in
5711         hppa*64*|ia64*)
5712           _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags'
5713           ;;
5714         *)
5715           _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
5716           ;;
5717         esac
5718       fi
5719       if test "$with_gnu_ld" = no; then
5720         case "$host_cpu" in
5721         hppa*64*)
5722           _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
5723           _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
5724           _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5725           _LT_AC_TAGVAR(hardcode_direct, $1)=no
5726           _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5727           ;;
5728         ia64*)
5729           _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5730           _LT_AC_TAGVAR(hardcode_direct, $1)=no
5731           _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5732
5733           # hardcode_minus_L: Not really in the search PATH,
5734           # but as the default location of the library.
5735           _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5736           ;;
5737         *)
5738           _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
5739           _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5740           _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5741           _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5742
5743           # hardcode_minus_L: Not really in the search PATH,
5744           # but as the default location of the library.
5745           _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5746           ;;
5747         esac
5748       fi
5749       ;;
5750
5751     irix5* | irix6* | nonstopux*)
5752       if test "$GCC" = yes; then
5753         _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'
5754       else
5755         _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'
5756         _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
5757       fi
5758       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5759       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5760       _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5761       ;;
5762
5763     netbsd*)
5764       if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
5765         _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
5766       else
5767         _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
5768       fi
5769       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5770       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5771       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5772       ;;
5773
5774     newsos6)
5775       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5776       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5777       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5778       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5779       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5780       ;;
5781
5782     openbsd*)
5783       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5784       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5785       if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
5786         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
5787         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
5788         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5789         _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5790       else
5791        case $host_os in
5792          openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
5793            _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
5794            _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5795            ;;
5796          *)
5797            _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
5798            _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5799            ;;
5800        esac
5801       fi
5802       ;;
5803
5804     os2*)
5805       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5806       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5807       _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5808       _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'
5809       _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
5810       ;;
5811
5812     osf3*)
5813       if test "$GCC" = yes; then
5814         _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
5815         _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'
5816       else
5817         _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
5818         _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'
5819       fi
5820       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5821       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5822       ;;
5823
5824     osf4* | osf5*)      # as osf3* with the addition of -msym flag
5825       if test "$GCC" = yes; then
5826         _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
5827         _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'
5828         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5829       else
5830         _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
5831         _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'
5832         _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~
5833         $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'
5834
5835         # Both c and cxx compiler support -rpath directly
5836         _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
5837       fi
5838       _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5839       ;;
5840
5841     sco3.2v5*)
5842       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5843       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5844       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
5845       runpath_var=LD_RUN_PATH
5846       hardcode_runpath_var=yes
5847       ;;
5848
5849     solaris*)
5850       _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text'
5851       if test "$GCC" = yes; then
5852         wlarc='${wl}'
5853         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
5854         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
5855           $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp'
5856       else
5857         wlarc=''
5858         _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
5859         _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
5860         $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
5861       fi
5862       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5863       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5864       case $host_os in
5865       solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
5866       *)
5867         # The compiler driver will combine linker options so we
5868         # cannot just pass the convience library names through
5869         # without $wl, iff we do not link with $LD.
5870         # Luckily, gcc supports the same syntax we need for Sun Studio.
5871         # Supported since Solaris 2.6 (maybe 2.5.1?)
5872         case $wlarc in
5873         '')
5874           _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;;
5875         *)
5876           _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' ;;
5877         esac ;;
5878       esac
5879       _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5880       ;;
5881
5882     sunos4*)
5883       if test "x$host_vendor" = xsequent; then
5884         # Use $CC to link under sequent, because it throws in some extra .o
5885         # files that make .init and .fini sections work.
5886         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
5887       else
5888         _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
5889       fi
5890       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5891       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5892       _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5893       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5894       ;;
5895
5896     sysv4)
5897       case $host_vendor in
5898         sni)
5899           _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5900           _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true???
5901         ;;
5902         siemens)
5903           ## LD is ld it makes a PLAMLIB
5904           ## CC just makes a GrossModule.
5905           _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
5906           _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
5907           _LT_AC_TAGVAR(hardcode_direct, $1)=no
5908         ;;
5909         motorola)
5910           _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5911           _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
5912         ;;
5913       esac
5914       runpath_var='LD_RUN_PATH'
5915       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5916       ;;
5917
5918     sysv4.3*)
5919       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5920       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5921       _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
5922       ;;
5923
5924     sysv4*MP*)
5925       if test -d /usr/nec; then
5926         _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5927         _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5928         runpath_var=LD_RUN_PATH
5929         hardcode_runpath_var=yes
5930         _LT_AC_TAGVAR(ld_shlibs, $1)=yes
5931       fi
5932       ;;
5933
5934     sysv4.2uw2*)
5935       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
5936       _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5937       _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
5938       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5939       hardcode_runpath_var=yes
5940       runpath_var=LD_RUN_PATH
5941       ;;
5942
5943    sysv5OpenUNIX8* | sysv5UnixWare7* |  sysv5uw[[78]]* | unixware7*)
5944       _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z ${wl}text'
5945       if test "$GCC" = yes; then
5946         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
5947       else
5948         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
5949       fi
5950       runpath_var='LD_RUN_PATH'
5951       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5952       ;;
5953
5954     sysv5*)
5955       _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text'
5956       # $CC -shared without GNU ld will not create a library from C++
5957       # object files and a static libstdc++, better avoid it by now
5958       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
5959       _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
5960                 $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
5961       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
5962       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5963       runpath_var='LD_RUN_PATH'
5964       ;;
5965
5966     uts4*)
5967       _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5968       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5969       _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5970       ;;
5971
5972     *)
5973       _LT_AC_TAGVAR(ld_shlibs, $1)=no
5974       ;;
5975     esac
5976   fi
5977 ])
5978 AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)])
5979 test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
5980
5981 variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
5982 if test "$GCC" = yes; then
5983   variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
5984 fi
5985
5986 #
5987 # Do we need to explicitly link libc?
5988 #
5989 case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in
5990 x|xyes)
5991   # Assume -lc should be added
5992   _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
5993
5994   if test "$enable_shared" = yes && test "$GCC" = yes; then
5995     case $_LT_AC_TAGVAR(archive_cmds, $1) in
5996     *'~'*)
5997       # FIXME: we may have to deal with multi-command sequences.
5998       ;;
5999     '$CC '*)
6000       # Test whether the compiler implicitly links with -lc since on some
6001       # systems, -lgcc has to come before -lc. If gcc already passes -lc
6002       # to ld, don't add -lc before -lgcc.
6003       AC_MSG_CHECKING([whether -lc should be explicitly linked in])
6004       $rm conftest*
6005       printf "$lt_simple_compile_test_code" > conftest.$ac_ext
6006
6007       if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
6008         soname=conftest
6009         lib=conftest
6010         libobjs=conftest.$ac_objext
6011         deplibs=
6012         wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
6013         compiler_flags=-v
6014         linker_flags=-v
6015         verstring=
6016         output_objdir=.
6017         libname=conftest
6018         lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1)
6019         _LT_AC_TAGVAR(allow_undefined_flag, $1)=
6020         if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1)
6021         then
6022           _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
6023         else
6024           _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
6025         fi
6026         _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
6027       else
6028         cat conftest.err 1>&5
6029       fi
6030       $rm conftest*
6031       AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)])
6032       ;;
6033     esac
6034   fi
6035   ;;
6036 esac
6037 ])# AC_LIBTOOL_PROG_LD_SHLIBS
6038
6039
6040 # _LT_AC_FILE_LTDLL_C
6041 # -------------------
6042 # Be careful that the start marker always follows a newline.
6043 AC_DEFUN([_LT_AC_FILE_LTDLL_C], [
6044 # /* ltdll.c starts here */
6045 # #define WIN32_LEAN_AND_MEAN
6046 # #include <windows.h>
6047 # #undef WIN32_LEAN_AND_MEAN
6048 # #include <stdio.h>
6049 #
6050 # #ifndef __CYGWIN__
6051 # #  ifdef __CYGWIN32__
6052 # #    define __CYGWIN__ __CYGWIN32__
6053 # #  endif
6054 # #endif
6055 #
6056 # #ifdef __cplusplus
6057 # extern "C" {
6058 # #endif
6059 # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved);
6060 # #ifdef __cplusplus
6061 # }
6062 # #endif
6063 #
6064 # #ifdef __CYGWIN__
6065 # #include <cygwin/cygwin_dll.h>
6066 # DECLARE_CYGWIN_DLL( DllMain );
6067 # #endif
6068 # HINSTANCE __hDllInstance_base;
6069 #
6070 # BOOL APIENTRY
6071 # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved)
6072 # {
6073 #   __hDllInstance_base = hInst;
6074 #   return TRUE;
6075 # }
6076 # /* ltdll.c ends here */
6077 ])# _LT_AC_FILE_LTDLL_C
6078
6079
6080 # _LT_AC_TAGVAR(VARNAME, [TAGNAME])
6081 # ---------------------------------
6082 AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])])
6083
6084
6085 # old names
6086 AC_DEFUN([AM_PROG_LIBTOOL],   [AC_PROG_LIBTOOL])
6087 AC_DEFUN([AM_ENABLE_SHARED],  [AC_ENABLE_SHARED($@)])
6088 AC_DEFUN([AM_ENABLE_STATIC],  [AC_ENABLE_STATIC($@)])
6089 AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
6090 AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
6091 AC_DEFUN([AM_PROG_LD],        [AC_PROG_LD])
6092 AC_DEFUN([AM_PROG_NM],        [AC_PROG_NM])
6093
6094 # This is just to silence aclocal about the macro not being used
6095 ifelse([AC_DISABLE_FAST_INSTALL])
6096
6097 AC_DEFUN([LT_AC_PROG_GCJ],
6098 [AC_CHECK_TOOL(GCJ, gcj, no)
6099   test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
6100   AC_SUBST(GCJFLAGS)
6101 ])
6102
6103 AC_DEFUN([LT_AC_PROG_RC],
6104 [AC_CHECK_TOOL(RC, windres, no)
6105 ])
6106
6107 ############################################################
6108 # NOTE: This macro has been submitted for inclusion into   #
6109 #  GNU Autoconf as AC_PROG_SED.  When it is available in   #
6110 #  a released version of Autoconf we should remove this    #
6111 #  macro and use it instead.                               #
6112 ############################################################
6113 # LT_AC_PROG_SED
6114 # --------------
6115 # Check for a fully-functional sed program, that truncates
6116 # as few characters as possible.  Prefer GNU sed if found.
6117 AC_DEFUN([LT_AC_PROG_SED],
6118 [AC_MSG_CHECKING([for a sed that does not truncate output])
6119 AC_CACHE_VAL(lt_cv_path_SED,
6120 [# Loop through the user's path and test for sed and gsed.
6121 # Then use that list of sed's as ones to test for truncation.
6122 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6123 for as_dir in $PATH
6124 do
6125   IFS=$as_save_IFS
6126   test -z "$as_dir" && as_dir=.
6127   for lt_ac_prog in sed gsed; do
6128     for ac_exec_ext in '' $ac_executable_extensions; do
6129       if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
6130         lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
6131       fi
6132     done
6133   done
6134 done
6135 lt_ac_max=0
6136 lt_ac_count=0
6137 # Add /usr/xpg4/bin/sed as it is typically found on Solaris
6138 # along with /bin/sed that truncates output.
6139 for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
6140   test ! -f $lt_ac_sed && continue
6141   cat /dev/null > conftest.in
6142   lt_ac_count=0
6143   echo $ECHO_N "0123456789$ECHO_C" >conftest.in
6144   # Check for GNU sed and select it if it is found.
6145   if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
6146     lt_cv_path_SED=$lt_ac_sed
6147     break
6148   fi
6149   while true; do
6150     cat conftest.in conftest.in >conftest.tmp
6151     mv conftest.tmp conftest.in
6152     cp conftest.in conftest.nl
6153     echo >>conftest.nl
6154     $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
6155     cmp -s conftest.out conftest.nl || break
6156     # 10000 chars as input seems more than enough
6157     test $lt_ac_count -gt 10 && break
6158     lt_ac_count=`expr $lt_ac_count + 1`
6159     if test $lt_ac_count -gt $lt_ac_max; then
6160       lt_ac_max=$lt_ac_count
6161       lt_cv_path_SED=$lt_ac_sed
6162     fi
6163   done
6164 done
6165 ])
6166 SED=$lt_cv_path_SED
6167 AC_MSG_RESULT([$SED])
6168 ])
6169 ## ltdl.m4 - Configure ltdl for the target system. -*-Autoconf-*-
6170 ## Copyright (C) 1999-2000 Free Software Foundation, Inc.
6171 ##
6172 ## This file is free software; the Free Software Foundation gives
6173 ## unlimited permission to copy and/or distribute it, with or without
6174 ## modifications, as long as this notice is preserved.
6175
6176 # serial 6 AC_LIB_LTDL
6177
6178 # AC_WITH_LTDL
6179 # ------------
6180 # Clients of libltdl can use this macro to allow the installer to
6181 # choose between a shipped copy of the ltdl sources or a preinstalled
6182 # version of the library.
6183 AC_DEFUN([AC_WITH_LTDL],
6184 [AC_REQUIRE([AC_LIB_LTDL])
6185 AC_SUBST([LIBLTDL])
6186 AC_SUBST([INCLTDL])
6187
6188 # Unless the user asks us to check, assume no installed ltdl exists.
6189 use_installed_libltdl=no
6190
6191 AC_ARG_WITH([included_ltdl],
6192     [  --with-included-ltdl    use the GNU ltdl sources included here])
6193
6194 if test "x$with_included_ltdl" != xyes; then
6195   # We are not being forced to use the included libltdl sources, so
6196   # decide whether there is a useful installed version we can use.
6197   AC_CHECK_HEADER([ltdl.h],
6198       [AC_CHECK_LIB([ltdl], [lt_dlcaller_register],
6199           [with_included_ltdl=no],
6200           [with_included_ltdl=yes])
6201   ])
6202 fi
6203
6204 if test "x$enable_ltdl_install" != xyes; then
6205   # If the user did not specify an installable libltdl, then default
6206   # to a convenience lib.
6207   AC_LIBLTDL_CONVENIENCE
6208 fi
6209
6210 if test "x$with_included_ltdl" = xno; then
6211   # If the included ltdl is not to be used. then Use the
6212   # preinstalled libltdl we found.
6213   AC_DEFINE([HAVE_LTDL], [1],
6214     [Define this if a modern libltdl is already installed])
6215   LIBLTDL=-lltdl
6216 fi
6217
6218 # Report our decision...
6219 AC_MSG_CHECKING([whether to use included libltdl])
6220 AC_MSG_RESULT([$with_included_ltdl])
6221
6222 AC_CONFIG_SUBDIRS([libltdl])
6223 ])# AC_WITH_LTDL
6224
6225
6226 # AC_LIB_LTDL
6227 # -----------
6228 # Perform all the checks necessary for compilation of the ltdl objects
6229 #  -- including compiler checks and header checks.
6230 AC_DEFUN([AC_LIB_LTDL],
6231 [AC_PREREQ(2.50)
6232 AC_REQUIRE([AC_PROG_CC])
6233 AC_REQUIRE([AC_C_CONST])
6234 AC_REQUIRE([AC_HEADER_STDC])
6235 AC_REQUIRE([AC_HEADER_DIRENT])
6236 AC_REQUIRE([_LT_AC_CHECK_DLFCN])
6237 AC_REQUIRE([AC_LTDL_ENABLE_INSTALL])
6238 AC_REQUIRE([AC_LTDL_SHLIBEXT])
6239 AC_REQUIRE([AC_LTDL_SHLIBPATH])
6240 AC_REQUIRE([AC_LTDL_SYSSEARCHPATH])
6241 AC_REQUIRE([AC_LTDL_OBJDIR])
6242 AC_REQUIRE([AC_LTDL_DLPREOPEN])
6243 AC_REQUIRE([AC_LTDL_DLLIB])
6244 AC_REQUIRE([AC_LTDL_SYMBOL_USCORE])
6245 AC_REQUIRE([AC_LTDL_DLSYM_USCORE])
6246 AC_REQUIRE([AC_LTDL_SYS_DLOPEN_DEPLIBS])
6247 AC_REQUIRE([AC_LTDL_FUNC_ARGZ])
6248
6249 AC_CHECK_HEADERS([assert.h ctype.h errno.h malloc.h memory.h stdlib.h \
6250                   stdio.h unistd.h])
6251 AC_CHECK_HEADERS([dl.h sys/dl.h dld.h mach-o/dyld.h])
6252 AC_CHECK_HEADERS([string.h strings.h], [break])
6253
6254 AC_CHECK_FUNCS([strchr index], [break])
6255 AC_CHECK_FUNCS([strrchr rindex], [break])
6256 AC_CHECK_FUNCS([memcpy bcopy], [break])
6257 AC_CHECK_FUNCS([memmove strcmp])
6258 AC_CHECK_FUNCS([closedir opendir readdir])
6259 ])# AC_LIB_LTDL
6260
6261
6262 # AC_LTDL_ENABLE_INSTALL
6263 # ----------------------
6264 AC_DEFUN([AC_LTDL_ENABLE_INSTALL],
6265 [AC_ARG_ENABLE([ltdl-install],
6266     [AC_HELP_STRING([--enable-ltdl-install], [install libltdl])])
6267
6268 AM_CONDITIONAL(INSTALL_LTDL, test x"${enable_ltdl_install-no}" != xno)
6269 AM_CONDITIONAL(CONVENIENCE_LTDL, test x"${enable_ltdl_convenience-no}" != xno)
6270 ])])# AC_LTDL_ENABLE_INSTALL
6271
6272
6273 # AC_LTDL_SYS_DLOPEN_DEPLIBS
6274 # --------------------------
6275 AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS],
6276 [AC_REQUIRE([AC_CANONICAL_HOST])
6277 AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
6278   [libltdl_cv_sys_dlopen_deplibs],
6279   [# PORTME does your system automatically load deplibs for dlopen?
6280   # or its logical equivalent (e.g. shl_load for HP-UX < 11)
6281   # For now, we just catch OSes we know something about -- in the
6282   # future, we'll try test this programmatically.
6283   libltdl_cv_sys_dlopen_deplibs=unknown
6284   case "$host_os" in
6285   aix3*|aix4.1.*|aix4.2.*)
6286     # Unknown whether this is true for these versions of AIX, but
6287     # we want this `case' here to explicitly catch those versions.
6288     libltdl_cv_sys_dlopen_deplibs=unknown
6289     ;;
6290   aix[[45]]*)
6291     libltdl_cv_sys_dlopen_deplibs=yes
6292     ;;
6293   darwin*)
6294     # Assuming the user has installed a libdl from somewhere, this is true
6295     # If you are looking for one http://www.opendarwin.org/projects/dlcompat
6296     libltdl_cv_sys_dlopen_deplibs=yes
6297     ;;
6298   gnu* | linux* | kfreebsd*-gnu | knetbsd*-gnu)
6299     # GNU and its variants, using gnu ld.so (Glibc)
6300     libltdl_cv_sys_dlopen_deplibs=yes
6301     ;;
6302   hpux10*|hpux11*)
6303     libltdl_cv_sys_dlopen_deplibs=yes
6304     ;;
6305   irix[[12345]]*|irix6.[[01]]*)
6306     # Catch all versions of IRIX before 6.2, and indicate that we don't
6307     # know how it worked for any of those versions.
6308     libltdl_cv_sys_dlopen_deplibs=unknown
6309     ;;
6310   irix*)
6311     # The case above catches anything before 6.2, and it's known that
6312     # at 6.2 and later dlopen does load deplibs.
6313     libltdl_cv_sys_dlopen_deplibs=yes
6314     ;;
6315   netbsd*)
6316     libltdl_cv_sys_dlopen_deplibs=yes
6317     ;;
6318   openbsd*)
6319     libltdl_cv_sys_dlopen_deplibs=yes
6320     ;;
6321   osf[[1234]]*)
6322     # dlopen did load deplibs (at least at 4.x), but until the 5.x series,
6323     # it did *not* use an RPATH in a shared library to find objects the
6324     # library depends on, so we explictly say `no'.
6325     libltdl_cv_sys_dlopen_deplibs=no
6326     ;;
6327   osf5.0|osf5.0a|osf5.1)
6328     # dlopen *does* load deplibs and with the right loader patch applied
6329     # it even uses RPATH in a shared library to search for shared objects
6330     # that the library depends on, but there's no easy way to know if that
6331     # patch is installed.  Since this is the case, all we can really
6332     # say is unknown -- it depends on the patch being installed.  If
6333     # it is, this changes to `yes'.  Without it, it would be `no'.
6334     libltdl_cv_sys_dlopen_deplibs=unknown
6335     ;;
6336   osf*)
6337     # the two cases above should catch all versions of osf <= 5.1.  Read
6338     # the comments above for what we know about them.
6339     # At > 5.1, deplibs are loaded *and* any RPATH in a shared library
6340     # is used to find them so we can finally say `yes'.
6341     libltdl_cv_sys_dlopen_deplibs=yes
6342     ;;
6343   solaris*)
6344     libltdl_cv_sys_dlopen_deplibs=yes
6345     ;;
6346   esac
6347   ])
6348 if test "$libltdl_cv_sys_dlopen_deplibs" != yes; then
6349  AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
6350     [Define if the OS needs help to load dependent libraries for dlopen().])
6351 fi
6352 ])# AC_LTDL_SYS_DLOPEN_DEPLIBS
6353
6354
6355 # AC_LTDL_SHLIBEXT
6356 # ----------------
6357 AC_DEFUN([AC_LTDL_SHLIBEXT],
6358 [AC_REQUIRE([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
6359 AC_CACHE_CHECK([which extension is used for loadable modules],
6360   [libltdl_cv_shlibext],
6361 [
6362 module=yes
6363 eval libltdl_cv_shlibext=$shrext_cmds
6364   ])
6365 if test -n "$libltdl_cv_shlibext"; then
6366   AC_DEFINE_UNQUOTED([LTDL_SHLIB_EXT], ["$libltdl_cv_shlibext"],
6367     [Define to the extension used for shared libraries, say, ".so".])
6368 fi
6369 ])# AC_LTDL_SHLIBEXT
6370
6371
6372 # AC_LTDL_SHLIBPATH
6373 # -----------------
6374 AC_DEFUN([AC_LTDL_SHLIBPATH],
6375 [AC_REQUIRE([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
6376 AC_CACHE_CHECK([which variable specifies run-time library path],
6377   [libltdl_cv_shlibpath_var], [libltdl_cv_shlibpath_var="$shlibpath_var"])
6378 if test -n "$libltdl_cv_shlibpath_var"; then
6379   AC_DEFINE_UNQUOTED([LTDL_SHLIBPATH_VAR], ["$libltdl_cv_shlibpath_var"],
6380     [Define to the name of the environment variable that determines the dynamic library search path.])
6381 fi
6382 ])# AC_LTDL_SHLIBPATH
6383
6384
6385 # AC_LTDL_SYSSEARCHPATH
6386 # ---------------------
6387 AC_DEFUN([AC_LTDL_SYSSEARCHPATH],
6388 [AC_REQUIRE([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
6389 AC_CACHE_CHECK([for the default library search path],
6390   [libltdl_cv_sys_search_path],
6391   [libltdl_cv_sys_search_path="$sys_lib_dlsearch_path_spec"])
6392 if test -n "$libltdl_cv_sys_search_path"; then
6393   sys_search_path=
6394   for dir in $libltdl_cv_sys_search_path; do
6395     if test -z "$sys_search_path"; then
6396       sys_search_path="$dir"
6397     else
6398       sys_search_path="$sys_search_path$PATH_SEPARATOR$dir"
6399     fi
6400   done
6401   AC_DEFINE_UNQUOTED([LTDL_SYSSEARCHPATH], ["$sys_search_path"],
6402     [Define to the system default library search path.])
6403 fi
6404 ])# AC_LTDL_SYSSEARCHPATH
6405
6406
6407 # AC_LTDL_OBJDIR
6408 # --------------
6409 AC_DEFUN([AC_LTDL_OBJDIR],
6410 [AC_CACHE_CHECK([for objdir],
6411   [libltdl_cv_objdir],
6412   [libltdl_cv_objdir="$objdir"
6413   if test -n "$objdir"; then
6414     :
6415   else
6416     rm -f .libs 2>/dev/null
6417     mkdir .libs 2>/dev/null
6418     if test -d .libs; then
6419       libltdl_cv_objdir=.libs
6420     else
6421       # MS-DOS does not allow filenames that begin with a dot.
6422       libltdl_cv_objdir=_libs
6423     fi
6424   rmdir .libs 2>/dev/null
6425   fi
6426   ])
6427 AC_DEFINE_UNQUOTED([LTDL_OBJDIR], ["$libltdl_cv_objdir/"],
6428   [Define to the sub-directory in which libtool stores uninstalled libraries.])
6429 ])# AC_LTDL_OBJDIR
6430
6431
6432 # AC_LTDL_DLPREOPEN
6433 # -----------------
6434 AC_DEFUN([AC_LTDL_DLPREOPEN],
6435 [AC_REQUIRE([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
6436 AC_CACHE_CHECK([whether libtool supports -dlopen/-dlpreopen],
6437   [libltdl_cv_preloaded_symbols],
6438   [if test -n "$lt_cv_sys_global_symbol_pipe"; then
6439     libltdl_cv_preloaded_symbols=yes
6440   else
6441     libltdl_cv_preloaded_symbols=no
6442   fi
6443   ])
6444 if test x"$libltdl_cv_preloaded_symbols" = xyes; then
6445   AC_DEFINE([HAVE_PRELOADED_SYMBOLS], [1],
6446     [Define if libtool can extract symbol lists from object files.])
6447 fi
6448 ])# AC_LTDL_DLPREOPEN
6449
6450
6451 # AC_LTDL_DLLIB
6452 # -------------
6453 AC_DEFUN([AC_LTDL_DLLIB],
6454 [LIBADD_DL=
6455 AC_SUBST(LIBADD_DL)
6456 AC_LANG_PUSH([C])
6457
6458 AC_CHECK_FUNC([shl_load],
6459       [AC_DEFINE([HAVE_SHL_LOAD], [1],
6460                  [Define if you have the shl_load function.])],
6461   [AC_CHECK_LIB([dld], [shl_load],
6462         [AC_DEFINE([HAVE_SHL_LOAD], [1],
6463                    [Define if you have the shl_load function.])
6464         LIBADD_DL="$LIBADD_DL -ldld"],
6465     [AC_CHECK_LIB([dl], [dlopen],
6466           [AC_DEFINE([HAVE_LIBDL], [1],
6467                      [Define if you have the libdl library or equivalent.])
6468                 LIBADD_DL="-ldl" libltdl_cv_lib_dl_dlopen="yes"],
6469       [AC_TRY_LINK([#if HAVE_DLFCN_H
6470 #  include <dlfcn.h>
6471 #endif
6472       ],
6473         [dlopen(0, 0);],
6474             [AC_DEFINE([HAVE_LIBDL], [1],
6475                              [Define if you have the libdl library or equivalent.]) libltdl_cv_func_dlopen="yes"],
6476         [AC_CHECK_LIB([svld], [dlopen],
6477               [AC_DEFINE([HAVE_LIBDL], [1],
6478                          [Define if you have the libdl library or equivalent.])
6479                     LIBADD_DL="-lsvld" libltdl_cv_func_dlopen="yes"],
6480           [AC_CHECK_LIB([dld], [dld_link],
6481                 [AC_DEFINE([HAVE_DLD], [1],
6482                            [Define if you have the GNU dld library.])
6483                 LIBADD_DL="$LIBADD_DL -ldld"],
6484                 [AC_CHECK_FUNC([_dyld_func_lookup],
6485                        [AC_DEFINE([HAVE_DYLD], [1],
6486                           [Define if you have the _dyld_func_lookup function.])])
6487           ])
6488         ])
6489       ])
6490     ])
6491   ])
6492 ])
6493
6494 if test x"$libltdl_cv_func_dlopen" = xyes || test x"$libltdl_cv_lib_dl_dlopen" = xyes
6495 then
6496   lt_save_LIBS="$LIBS"
6497   LIBS="$LIBS $LIBADD_DL"
6498   AC_CHECK_FUNCS([dlerror])
6499   LIBS="$lt_save_LIBS"
6500 fi
6501 AC_LANG_POP
6502 ])# AC_LTDL_DLLIB
6503
6504
6505 # AC_LTDL_SYMBOL_USCORE
6506 # ---------------------
6507 # does the compiler prefix global symbols with an underscore?
6508 AC_DEFUN([AC_LTDL_SYMBOL_USCORE],
6509 [AC_REQUIRE([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
6510 AC_CACHE_CHECK([for _ prefix in compiled symbols],
6511   [ac_cv_sys_symbol_underscore],
6512   [ac_cv_sys_symbol_underscore=no
6513   cat > conftest.$ac_ext <<EOF
6514 void nm_test_func(){}
6515 int main(){nm_test_func;return 0;}
6516 EOF
6517   if AC_TRY_EVAL(ac_compile); then
6518     # Now try to grab the symbols.
6519     ac_nlist=conftest.nm
6520     if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
6521       # See whether the symbols have a leading underscore.
6522       if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
6523         ac_cv_sys_symbol_underscore=yes
6524       else
6525         if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
6526           :
6527         else
6528           echo "configure: cannot find nm_test_func in $ac_nlist" >&AC_FD_CC
6529         fi
6530       fi
6531     else
6532       echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AC_FD_CC
6533     fi
6534   else
6535     echo "configure: failed program was:" >&AC_FD_CC
6536     cat conftest.c >&AC_FD_CC
6537   fi
6538   rm -rf conftest*
6539   ])
6540 ])# AC_LTDL_SYMBOL_USCORE
6541
6542
6543 # AC_LTDL_DLSYM_USCORE
6544 # --------------------
6545 AC_DEFUN([AC_LTDL_DLSYM_USCORE],
6546 [AC_REQUIRE([AC_LTDL_SYMBOL_USCORE])
6547 if test x"$ac_cv_sys_symbol_underscore" = xyes; then
6548   if test x"$libltdl_cv_func_dlopen" = xyes ||
6549      test x"$libltdl_cv_lib_dl_dlopen" = xyes ; then
6550         AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
6551           [libltdl_cv_need_uscore],
6552           [libltdl_cv_need_uscore=unknown
6553           save_LIBS="$LIBS"
6554           LIBS="$LIBS $LIBADD_DL"
6555           _LT_AC_TRY_DLOPEN_SELF(
6556             [libltdl_cv_need_uscore=no], [libltdl_cv_need_uscore=yes],
6557             [],                          [libltdl_cv_need_uscore=cross])
6558           LIBS="$save_LIBS"
6559         ])
6560   fi
6561 fi
6562
6563 if test x"$libltdl_cv_need_uscore" = xyes; then
6564   AC_DEFINE([NEED_USCORE], [1],
6565     [Define if dlsym() requires a leading underscore in symbol names.])
6566 fi
6567 ])# AC_LTDL_DLSYM_USCORE
6568
6569 # AC_LTDL_FUNC_ARGZ
6570 # -----------------
6571 AC_DEFUN([AC_LTDL_FUNC_ARGZ],
6572 [AC_CHECK_HEADERS([argz.h])
6573
6574 AC_CHECK_TYPES([error_t],
6575   [],
6576   [AC_DEFINE([error_t], [int],
6577     [Define to a type to use for `error_t' if it is not otherwise available.])],
6578   [#if HAVE_ARGZ_H
6579 #  include <argz.h>
6580 #endif])
6581
6582 AC_CHECK_FUNCS([argz_append argz_create_sep argz_insert argz_next argz_stringify])
6583 ])# AC_LTDL_FUNC_ARGZ