]> git.sur5r.net Git - openldap/blob - build/ltconfig
Add DNS SRV to error text
[openldap] / build / ltconfig
1 #! /bin/sh
2 # $OpenLDAP$
3
4 # ltconfig - Create a system-specific libtool.
5 # Copyright (C) 1996-1999 Free Software Foundation, Inc.
6 # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
7 #
8 # This file is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #
22 # As a special exception to the GNU General Public License, if you
23 # distribute this file as part of a program that contains a
24 # configuration script generated by Autoconf, you may include it under
25 # the same distribution terms that you use for the rest of that program.
26
27 # A lot of this script is taken from autoconf-2.10.
28
29 # Check that we are running under the correct shell.
30 SHELL=${CONFIG_SHELL-/bin/sh}
31 echo=echo
32 if test "X$1" = X--no-reexec; then
33   # Discard the --no-reexec flag, and continue.
34   shift
35 elif test "X$1" = X--fallback-echo; then
36   # Avoid inline document here, it may be left over
37   :
38 elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
39   # Yippee, $echo works!
40   :
41 else
42   # Restart under the correct shell.
43   exec "$SHELL" "$0" --no-reexec ${1+"$@"}
44 fi
45
46 if test "X$1" = X--fallback-echo; then
47   # used as fallback echo
48   shift
49   cat <<EOF
50 $*
51 EOF
52   exit 0
53 fi
54
55 # Find the correct PATH separator.  Usually this is `:', but
56 # DJGPP uses `;' like DOS.
57 if test "X${PATH_SEPARATOR+set}" != Xset; then
58   UNAME=${UNAME-`uname 2>/dev/null`}
59   case X$UNAME in
60     *-DOS) PATH_SEPARATOR=';' ;;
61     *)     PATH_SEPARATOR=':' ;;
62   esac
63 fi
64
65 # The HP-UX ksh and POSIX shell print the target directory to stdout
66 # if CDPATH is set.
67 if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
68
69 if test "X${echo_test_string+set}" != Xset; then
70   # find a string as large as possible, as long as the shell can cope with it
71   for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do
72     # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
73     if (echo_test_string="`eval $cmd`") 2>/dev/null &&
74        echo_test_string="`eval $cmd`" &&
75        (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null; then
76       break
77     fi
78   done
79 fi
80
81 if test "X`($echo '\t') 2>/dev/null`" != 'X\t' ||
82    test "X`($echo "$echo_test_string") 2>/dev/null`" != X"$echo_test_string"; then
83   # The Solaris, AIX, and Digital Unix default echo programs unquote
84   # backslashes.  This makes it impossible to quote backslashes using
85   #   echo "$something" | sed 's/\\/\\\\/g'
86   #
87   # So, first we look for a working echo in the user's PATH.
88
89   IFS="${IFS=   }"; save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR}"
90   for dir in $PATH /usr/ucb; do
91     if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
92        test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
93        test "X`($dir/echo "$echo_test_string") 2>/dev/null`" = X"$echo_test_string"; then
94       echo="$dir/echo"
95       break
96     fi
97   done
98   IFS="$save_ifs"
99
100   if test "X$echo" = Xecho; then
101     # We didn't find a better echo, so look for alternatives.
102     if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
103        test "X`(print -r "$echo_test_string") 2>/dev/null`" = X"$echo_test_string"; then
104       # This shell has a builtin print -r that does the trick.
105       echo='print -r'
106     elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
107          test "X$CONFIG_SHELL" != X/bin/ksh; then
108       # If we have ksh, try running ltconfig again with it.
109       ORIGINAL_CONFIG_SHELL="${CONFIG_SHELL-/bin/sh}"
110       export ORIGINAL_CONFIG_SHELL
111       CONFIG_SHELL=/bin/ksh
112       export CONFIG_SHELL
113       exec "$CONFIG_SHELL" "$0" --no-reexec ${1+"$@"}
114     else
115       # Try using printf.
116       echo='printf "%s\n"'
117       if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
118          test "X`($echo "$echo_test_string") 2>/dev/null`" = X"$echo_test_string"; then
119         # Cool, printf works
120         :
121       elif test "X`("$ORIGINAL_CONFIG_SHELL" "$0" --fallback-echo '\t') 2>/dev/null`" = 'X\t' &&
122            test "X`("$ORIGINAL_CONFIG_SHELL" "$0" --fallback-echo "$echo_test_string") 2>/dev/null`" = X"$echo_test_string"; then
123         CONFIG_SHELL="$ORIGINAL_CONFIG_SHELL"
124         export CONFIG_SHELL
125         SHELL="$CONFIG_SHELL"
126         export SHELL
127         echo="$CONFIG_SHELL $0 --fallback-echo"
128       elif test "X`("$CONFIG_SHELL" "$0" --fallback-echo '\t') 2>/dev/null`" = 'X\t' &&
129            test "X`("$CONFIG_SHELL" "$0" --fallback-echo "$echo_test_string") 2>/dev/null`" = X"$echo_test_string"; then
130         echo="$CONFIG_SHELL $0 --fallback-echo"
131       else
132         # maybe with a smaller string...
133         prev=:
134
135         for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do
136           if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null; then
137             break
138           fi
139           prev="$cmd"
140         done
141
142         if test "$prev" != 'sed 50q "$0"'; then
143           echo_test_string=`eval $prev`
144           export echo_test_string
145           exec "${ORIGINAL_CONFIG_SHELL}" "$0" ${1+"$@"}
146         else
147           # Oops.  We lost completely, so just stick with echo.
148           echo=echo
149         fi
150       fi
151     fi
152   fi
153 fi
154
155 # Sed substitution that helps us do robust quoting.  It backslashifies
156 # metacharacters that are still active within double-quoted strings.
157 Xsed='sed -e s/^X//'
158 sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'
159
160 # Same as above, but do not quote variable references.
161 double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'
162
163 # Sed substitution to delay expansion of an escaped shell variable in a
164 # double_quote_subst'ed string.
165 delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
166
167 # The name of this program.
168 progname=`$echo "X$0" | $Xsed -e 's%^.*/%%'`
169
170 # Constants:
171 PROGRAM=ltconfig
172 PACKAGE=libtool
173 VERSION=1.3.5+OpenLDAP
174 TIMESTAMP=" (1.385.2.206 2000/10/02 14:18:00)"
175 ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
176 ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
177 rm="rm -f"
178
179 help="Try \`$progname --help' for more information."
180
181 # Global variables:
182 default_ofile=libtool
183 can_build_shared=yes
184 enable_shared=yes
185 # All known linkers require a `.a' archive for static linking (except M$VC,
186 # which needs '.lib').
187 enable_static=yes
188 enable_fast_install=yes
189 enable_dlopen=unknown
190 enable_win32_dll=no
191 ltmain=
192 silent=
193 srcdir=
194 ac_config_guess=
195 ac_config_sub=
196 host=
197 nonopt=
198 ofile="$default_ofile"
199 verify_host=yes
200 with_gcc=no
201 with_gnu_ld=no
202 need_locks=yes
203 ac_ext=c
204 objext=o
205 libext=a
206 exeext=
207 cache_file=
208
209 old_AR="$AR"
210 old_CC="$CC"
211 old_CFLAGS="$CFLAGS"
212 old_CPPFLAGS="$CPPFLAGS"
213 old_LDFLAGS="$LDFLAGS"
214 old_LD="$LD"
215 old_LN_S="$LN_S"
216 old_LIBS="$LIBS"
217 old_NM="$NM"
218 old_RANLIB="$RANLIB"
219 old_DLLTOOL="$DLLTOOL"
220 old_OBJDUMP="$OBJDUMP"
221 old_AS="$AS"
222
223 # Parse the command line options.
224 args=
225 prev=
226 for option
227 do
228   case "$option" in
229   -*=*) optarg=`echo "$option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
230   *) optarg= ;;
231   esac
232
233   # If the previous option needs an argument, assign it.
234   if test -n "$prev"; then
235     eval "$prev=\$option"
236     prev=
237     continue
238   fi
239
240   case "$option" in
241   --help) cat <<EOM
242 Usage: $progname [OPTION]... [HOST [LTMAIN]]
243
244 Generate a system-specific libtool script.
245
246     --debug                enable verbose shell tracing
247     --disable-shared       do not build shared libraries
248     --disable-static       do not build static libraries
249     --disable-fast-install do not optimize for fast installation
250     --enable-dlopen        enable dlopen support
251     --enable-win32-dll     enable building dlls on win32 hosts
252     --help                 display this help and exit
253     --no-verify            do not verify that HOST is a valid host type
254 -o, --output=FILE          specify the output file [default=$default_ofile]
255     --quiet                same as \`--silent'
256     --silent               do not print informational messages
257     --srcdir=DIR           find \`config.guess' in DIR
258     --version              output version information and exit
259     --with-gcc             assume that the GNU C compiler will be used
260     --with-gnu-ld          assume that the C compiler uses the GNU linker
261     --disable-lock         disable file locking
262     --cache-file=FILE      configure cache file
263
264 LTMAIN is the \`ltmain.sh' shell script fragment or \`ltmain.c' program
265 that provides basic libtool functionality.
266
267 HOST is the canonical host system name [default=guessed].
268 EOM
269   exit 0
270   ;;
271
272   --debug)
273     echo "$progname: enabling shell trace mode"
274     set -x
275     ;;
276
277   --disable-shared) enable_shared=no ;;
278
279   --disable-static) enable_static=no ;;
280
281   --disable-fast-install) enable_fast_install=no ;;
282
283   --enable-dlopen) enable_dlopen=yes ;;
284
285   --enable-win32-dll) enable_win32_dll=yes ;;
286
287   --quiet | --silent) silent=yes ;;
288
289   --srcdir) prev=srcdir ;;
290   --srcdir=*) srcdir="$optarg" ;;
291
292   --no-verify) verify_host=no ;;
293
294   --output | -o) prev=ofile ;;
295   --output=*) ofile="$optarg" ;;
296
297   --version) echo "$PROGRAM (GNU $PACKAGE) $VERSION$TIMESTAMP"; exit 0 ;;
298
299   --with-gcc) with_gcc=yes ;;
300   --with-gnu-ld) with_gnu_ld=yes ;;
301
302   --disable-lock) need_locks=no ;;
303
304   --cache-file=*) cache_file="$optarg" ;;
305
306   -*)
307     echo "$progname: unrecognized option \`$option'" 1>&2
308     echo "$help" 1>&2
309     exit 1
310     ;;
311
312   *)
313     if test -z "$ltmain"; then
314       ltmain="$option"
315     elif test -z "$host"; then
316 # This generates an unnecessary warning for sparc-sun-solaris4.1.3_U1
317 #      if test -n "`echo $option| sed 's/[-a-z0-9.]//g'`"; then
318 #        echo "$progname: warning \`$option' is not a valid host type" 1>&2
319 #      fi
320       host="$option"
321     else
322       echo "$progname: too many arguments" 1>&2
323       echo "$help" 1>&2
324       exit 1
325     fi ;;
326   esac
327 done
328
329 if test -z "$ltmain"; then
330   echo "$progname: you must specify a LTMAIN file" 1>&2
331   echo "$help" 1>&2
332   exit 1
333 fi
334
335 if test ! -f "$ltmain"; then
336   echo "$progname: \`$ltmain' does not exist" 1>&2
337   echo "$help" 1>&2
338   exit 1
339 fi
340
341 # Quote any args containing shell metacharacters.
342 ltconfig_args=
343 for arg
344 do
345   case "$arg" in
346   *" "*|*"      "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
347   ltconfig_args="$ltconfig_args '$arg'" ;;
348   *) ltconfig_args="$ltconfig_args $arg" ;;
349   esac
350 done
351
352 # A relevant subset of AC_INIT.
353
354 # File descriptor usage:
355 # 0 standard input
356 # 1 file creation
357 # 2 errors and warnings
358 # 3 some systems may open it to /dev/tty
359 # 4 used on the Kubota Titan
360 # 5 compiler messages saved in config.log
361 # 6 checking for... messages and results
362 if test "$silent" = yes; then
363   exec 6>/dev/null
364 else
365   exec 6>&1
366 fi
367 exec 5>>./config.log
368
369 # NLS nuisances.
370 # Only set LANG and LC_ALL to C if already set.
371 # These must not be set unconditionally because not all systems understand
372 # e.g. LANG=C (notably SCO).
373 if test "X${LC_ALL+set}" = Xset; then LC_ALL=C; export LC_ALL; fi
374 if test "X${LANG+set}"   = Xset; then LANG=C;   export LANG;   fi
375
376 if test -n "$cache_file" && test -r "$cache_file"; then
377   echo "loading cache $cache_file within ltconfig"
378   . $cache_file
379 fi
380
381 if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
382   # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
383   if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
384     ac_n= ac_c='
385 ' ac_t='        '
386   else
387     ac_n=-n ac_c= ac_t=
388   fi
389 else
390   ac_n= ac_c='\c' ac_t=
391 fi
392
393 if test -z "$srcdir"; then
394   # Assume the source directory is the same one as the path to LTMAIN.
395   srcdir=`$echo "X$ltmain" | $Xsed -e 's%/[^/]*$%%'`
396   test "$srcdir" = "$ltmain" && srcdir=.
397 fi
398
399 trap "$rm conftest*; exit 1" 1 2 15
400 if test "$verify_host" = yes; then
401   # Check for config.guess and config.sub.
402   ac_aux_dir=
403   for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
404     if test -f $ac_dir/config.guess; then
405       ac_aux_dir=$ac_dir
406       break
407     fi
408   done
409   if test -z "$ac_aux_dir"; then
410     echo "$progname: cannot find config.guess in $srcdir $srcdir/.. $srcdir/../.." 1>&2
411     echo "$help" 1>&2
412     exit 1
413   fi
414   ac_config_guess=$ac_aux_dir/config.guess
415   ac_config_sub=$ac_aux_dir/config.sub
416
417   # Make sure we can run config.sub.
418   if $SHELL $ac_config_sub sun4 >/dev/null 2>&1; then :
419   else
420     echo "$progname: cannot run $ac_config_sub" 1>&2
421     echo "$help" 1>&2
422     exit 1
423   fi
424
425   echo $ac_n "checking host system type""... $ac_c" 1>&6
426
427   host_alias=$host
428   case "$host_alias" in
429   "")
430     if host_alias=`$SHELL $ac_config_guess`; then :
431     else
432       echo "$progname: cannot guess host type; you must specify one" 1>&2
433       echo "$help" 1>&2
434       exit 1
435     fi ;;
436   esac
437   host=`$SHELL $ac_config_sub $host_alias`
438   echo "$ac_t$host" 1>&6
439
440   # Make sure the host verified.
441   test -z "$host" && exit 1
442
443 elif test -z "$host"; then
444   echo "$progname: you must specify a host type if you use \`--no-verify'" 1>&2
445   echo "$help" 1>&2
446   exit 1
447 else
448   host_alias=$host
449 fi
450
451 # Transform linux* to *-*-linux-gnu*, to support old configure scripts.
452 case "$host_os" in
453 linux-gnu*) ;;
454 linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'`
455 esac
456
457 host_cpu=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
458 host_vendor=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
459 host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
460
461 case "$host_os" in
462 aix3*)
463   # AIX sometimes has problems with the GCC collect2 program.  For some
464   # reason, if we set the COLLECT_NAMES environment variable, the problems
465   # vanish in a puff of smoke.
466   if test "X${COLLECT_NAMES+set}" != Xset; then
467     COLLECT_NAMES=
468     export COLLECT_NAMES
469   fi
470   ;;
471 esac
472
473 # Determine commands to create old-style static archives.
474 old_archive_cmds='$AR cru $oldlib$oldobjs'
475 old_postinstall_cmds='chmod 644 $oldlib'
476 old_postuninstall_cmds=
477
478 # Set a sane default for `AR'.
479 test -z "$AR" && AR=ar
480
481 # Set a sane default for `OBJDUMP'.
482 test -z "$OBJDUMP" && OBJDUMP=objdump
483
484 # If RANLIB is not set, then run the test.
485 if test "${RANLIB+set}" != "set"; then
486   result=no
487
488   echo $ac_n "checking for ranlib... $ac_c" 1>&6
489   IFS="${IFS=   }"; save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR}"
490   for dir in $PATH; do
491     test -z "$dir" && dir=.
492     if test -f $dir/ranlib || test -f $dir/ranlib$ac_exeext; then
493       RANLIB="ranlib"
494       result="ranlib"
495       break
496     fi
497   done
498   IFS="$save_ifs"
499
500   echo "$ac_t$result" 1>&6
501 fi
502
503 if test -n "$RANLIB"; then
504   old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
505   old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds"
506 fi
507
508 # Set sane defaults for `DLLTOOL', `OBJDUMP', and `AS', used on cygwin.
509 test -z "$DLLTOOL" && DLLTOOL=dlltool
510 test -z "$OBJDUMP" && OBJDUMP=objdump
511 test -z "$AS" && AS=as
512
513 # Check to see if we are using GCC.
514 if test "$with_gcc" != yes || test -z "$CC"; then
515   # If CC is not set, then try to find GCC or a usable CC.
516   if test -z "$CC"; then
517     echo $ac_n "checking for gcc... $ac_c" 1>&6
518     IFS="${IFS=         }"; save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR}"
519     for dir in $PATH; do
520       test -z "$dir" && dir=.
521       if test -f $dir/gcc || test -f $dir/gcc$ac_exeext; then
522         CC="gcc"
523         break
524       fi
525     done
526     IFS="$save_ifs"
527
528     if test -n "$CC"; then
529       echo "$ac_t$CC" 1>&6
530     else
531       echo "$ac_t"no 1>&6
532     fi
533   fi
534
535   # Not "gcc", so try "cc", rejecting "/usr/ucb/cc".
536   if test -z "$CC"; then
537     echo $ac_n "checking for cc... $ac_c" 1>&6
538     IFS="${IFS=         }"; save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR}"
539     cc_rejected=no
540     for dir in $PATH; do
541       test -z "$dir" && dir=.
542       if test -f $dir/cc || test -f $dir/cc$ac_exeext; then
543         if test "$dir/cc" = "/usr/ucb/cc"; then
544           cc_rejected=yes
545           continue
546         fi
547         CC="cc"
548         break
549       fi
550     done
551     IFS="$save_ifs"
552     if test $cc_rejected = yes; then
553       # We found a bogon in the path, so make sure we never use it.
554       set dummy $CC
555       shift
556       if test $# -gt 0; then
557         # We chose a different compiler from the bogus one.
558         # However, it has the same name, so the bogon will be chosen
559         # first if we set CC to just the name; use the full file name.
560         shift
561         set dummy "$dir/cc" "$@"
562         shift
563         CC="$@"
564       fi
565     fi
566
567     if test -n "$CC"; then
568       echo "$ac_t$CC" 1>&6
569     else
570       echo "$ac_t"no 1>&6
571     fi
572
573     if test -z "$CC"; then
574       echo "$progname: error: no acceptable cc found in \$PATH" 1>&2
575       exit 1
576     fi
577   fi
578
579   # Now see if the compiler is really GCC.
580   with_gcc=no
581   echo $ac_n "checking whether we are using GNU C... $ac_c" 1>&6
582   echo "$progname:581: checking whether we are using GNU C" >&5
583
584   $rm conftest.c
585   cat > conftest.c <<EOF
586 #ifdef __GNUC__
587   yes;
588 #endif
589 EOF
590   if { ac_try='${CC-cc} -E conftest.c'; { (eval echo $progname:589: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
591     with_gcc=yes
592   fi
593   $rm conftest.c
594   echo "$ac_t$with_gcc" 1>&6
595 fi
596
597 # Allow CC to be a program name with arguments.
598 set dummy $CC
599 compiler="$2"
600
601 echo $ac_n "checking for object suffix... $ac_c" 1>&6
602 $rm conftest*
603 echo 'int i = 1;' > conftest.c
604 echo "$progname:603: checking for object suffix" >& 5
605 if { (eval echo $progname:604: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; }; then
606   # Append any warnings to the config.log.
607   cat conftest.err 1>&5
608
609   for ac_file in conftest.*; do
610     case $ac_file in
611     *.c) ;;
612     *) objext=`echo $ac_file | sed -e s/conftest.//` ;;
613     esac
614   done
615 else
616   cat conftest.err 1>&5
617   echo "$progname: failed program was:" >&5
618   cat conftest.c >&5
619 fi
620 $rm conftest*
621 echo "$ac_t$objext" 1>&6
622
623 echo $ac_n "checking for executable suffix... $ac_c" 1>&6
624 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then
625   echo $ac_n "(cached) $ac_c" 1>&6
626 else
627   ac_cv_exeext="no"
628   $rm conftest*
629   echo 'main () { return 0; }' > conftest.c
630   echo "$progname:629: checking for executable suffix" >& 5
631   if { (eval echo $progname:630: \"$ac_link\") 1>&5; (eval $ac_link) 2>conftest.err; }; then
632     # Append any warnings to the config.log.
633     cat conftest.err 1>&5
634
635     for ac_file in conftest.*; do
636       case $ac_file in
637       *.c | *.err | *.$objext ) ;;
638       *) ac_cv_exeext=.`echo $ac_file | sed -e s/conftest.//` ;;
639       esac
640     done
641   else
642     cat conftest.err 1>&5
643     echo "$progname: failed program was:" >&5
644     cat conftest.c >&5
645   fi
646   $rm conftest*
647 fi
648 if test "X$ac_cv_exeext" = Xno; then
649   exeext=""
650 else
651   exeext="$ac_cv_exeext"
652 fi
653 echo "$ac_t$ac_cv_exeext" 1>&6
654
655 echo $ac_n "checking for $compiler option to produce PIC... $ac_c" 1>&6
656 pic_flag=
657 special_shlib_compile_flags=
658 wl=
659 link_static_flag=
660 no_builtin_flag=
661
662 if test "$with_gcc" = yes; then
663   wl='-Wl,'
664   link_static_flag='-static'
665
666   case "$host_os" in
667   beos* | irix5* | irix6* | osf3* | osf4* | osf5*)
668     # PIC is the default for these OSes.
669     ;;
670   aix*)
671     # Below there is a dirty hack to force normal static linking with -ldl
672     # The problem is because libdl dynamically linked with both libc and
673     # libC (AIX C++ library), which obviously doesn't included in libraries
674     # list by gcc. This cause undefined symbols with -static flags.
675     # This hack allows C programs to be linked with "-static -ldl", but
676     # we not sure about C++ programs.
677     link_static_flag="$link_static_flag ${wl}-lC"
678     ;;
679   cygwin* | mingw* | os2*)
680     # We can build DLLs from non-PIC.
681     ;;
682   amigaos*)
683     # FIXME: we need at least 68020 code to build shared libraries, but
684     # adding the `-m68020' flag to GCC prevents building anything better,
685     # like `-m68040'.
686     pic_flag='-m68020 -resident32 -malways-restore-a4'
687     ;;
688   sysv4*MP*)
689     if test -d /usr/nec; then
690        pic_flag=-Kconform_pic
691     fi
692     ;;
693   *)
694     pic_flag='-fPIC'
695     ;;
696   esac
697 else
698   # PORTME Check for PIC flags for the system compiler.
699   case "$host_os" in
700   aix3* | aix4*)
701     # All AIX code is PIC.
702     link_static_flag='-bnso -bI:/lib/syscalls.exp'
703     ;;
704
705   hpux9* | hpux10* | hpux11*)
706     # Is there a better link_static_flag that works with the bundled CC?
707     wl='-Wl,'
708     link_static_flag="${wl}-a ${wl}archive"
709     pic_flag='+Z'
710     ;;
711
712   irix5* | irix6*)
713     wl='-Wl,'
714     link_static_flag='-non_shared'
715     # PIC (with -KPIC) is the default.
716     ;;
717
718   cygwin* | mingw* | os2*)
719     # We can build DLLs from non-PIC.
720     ;;
721
722   osf3* | osf4* | osf5*)
723     # All OSF/1 code is PIC.
724     wl='-Wl,'
725     link_static_flag='-non_shared'
726     ;;
727
728   sco3.2v5*)
729     pic_flag='-Kpic'
730     link_static_flag='-dn'
731     special_shlib_compile_flags='-belf'
732     ;;
733
734   solaris*)
735     pic_flag='-KPIC'
736     link_static_flag='-Bstatic'
737     wl='-Wl,'
738     ;;
739
740   sunos4*)
741     pic_flag='-PIC'
742     link_static_flag='-Bstatic'
743     wl='-Qoption ld '
744     ;;
745
746   sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
747     pic_flag='-KPIC'
748     link_static_flag='-Bstatic'
749     wl='-Wl,'
750     ;;
751
752   uts4*)
753     pic_flag='-pic'
754     link_static_flag='-Bstatic'
755     ;;
756   sysv4*MP*)
757     if test -d /usr/nec ;then
758       pic_flag='-Kconform_pic'
759       link_static_flag='-Bstatic'
760     fi
761     ;;
762   *)
763     can_build_shared=no
764     ;;
765   esac
766 fi
767
768 if test -n "$pic_flag"; then
769   echo "$ac_t$pic_flag" 1>&6
770
771   # Check to make sure the pic_flag actually works.
772   echo $ac_n "checking if $compiler PIC flag $pic_flag works... $ac_c" 1>&6
773   $rm conftest*
774   echo "int some_variable = 0;" > conftest.c
775   save_CFLAGS="$CFLAGS"
776   CFLAGS="$CFLAGS $pic_flag -DPIC"
777   echo "$progname:776: checking if $compiler PIC flag $pic_flag works" >&5
778   if { (eval echo $progname:777: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; } && test -s conftest.$objext; then
779     # Append any warnings to the config.log.
780     cat conftest.err 1>&5
781     
782     case "$host_os" in
783     hpux9* | hpux10* | hpux11*)
784       # On HP-UX, both CC and GCC only warn that PIC is supported... then they
785       # create non-PIC objects.  So, if there were any warnings, we assume that
786       # PIC is not supported.
787       if test -s conftest.err; then
788         echo "$ac_t"no 1>&6
789         can_build_shared=no
790         pic_flag=
791       else
792         echo "$ac_t"yes 1>&6
793         pic_flag=" $pic_flag"
794       fi
795       ;;
796     *)
797       echo "$ac_t"yes 1>&6
798       pic_flag=" $pic_flag"
799       ;;
800     esac
801   else
802     # Append any errors to the config.log.
803     cat conftest.err 1>&5
804     can_build_shared=no
805     pic_flag=
806     echo "$ac_t"no 1>&6
807   fi
808   CFLAGS="$save_CFLAGS"
809   $rm conftest*
810 else
811   echo "$ac_t"none 1>&6
812 fi
813
814 # Check to see if options -o and -c are simultaneously supported by compiler
815 echo $ac_n "checking if $compiler supports -c -o file.o... $ac_c" 1>&6
816 $rm -r conftest 2>/dev/null
817 mkdir conftest
818 cd conftest
819 $rm conftest*
820 echo "int some_variable = 0;" > conftest.c
821 mkdir out
822 # According to Tom Tromey, Ian Lance Taylor reported there are C compilers
823 # that will create temporary files in the current directory regardless of
824 # the output directory.  Thus, making CWD read-only will cause this test
825 # to fail, enabling locking or at least warning the user not to do parallel
826 # builds.
827 chmod -w .
828 save_CFLAGS="$CFLAGS"
829 CFLAGS="$CFLAGS -o out/conftest2.o"
830 echo "$progname:829: checking if $compiler supports -c -o file.o" >&5
831 if { (eval echo $progname:830: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.o; then
832
833   # The compiler can only warn and ignore the option if not recognized
834   # So say no if there are warnings
835     if test -s out/conftest.err; then
836       echo "$ac_t"no 1>&6
837       compiler_c_o=no
838     else
839       echo "$ac_t"yes 1>&6
840       compiler_c_o=yes
841     fi
842 else
843   # Append any errors to the config.log.
844   cat out/conftest.err 1>&5
845   compiler_c_o=no
846   echo "$ac_t"no 1>&6
847 fi
848 CFLAGS="$save_CFLAGS"
849 chmod u+w .
850 $rm conftest* out/*
851 rmdir out
852 cd ..
853 rmdir conftest
854 $rm -r conftest 2>/dev/null
855
856 if test x"$compiler_c_o" = x"yes"; then
857   # Check to see if we can write to a .lo
858   echo $ac_n "checking if $compiler supports -c -o file.lo... $ac_c" 1>&6
859   $rm conftest*
860   echo "int some_variable = 0;" > conftest.c
861   save_CFLAGS="$CFLAGS"
862   CFLAGS="$CFLAGS -c -o conftest.lo"
863   echo "$progname:862: checking if $compiler supports -c -o file.lo" >&5
864 if { (eval echo $progname:863: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; } && test -s conftest.lo; then
865
866     # The compiler can only warn and ignore the option if not recognized
867     # So say no if there are warnings
868       if test -s conftest.err; then
869         echo "$ac_t"no 1>&6
870         compiler_o_lo=no
871       else
872         echo "$ac_t"yes 1>&6
873         compiler_o_lo=yes
874       fi
875   else
876     # Append any errors to the config.log.
877     cat conftest.err 1>&5
878     compiler_o_lo=no
879     echo "$ac_t"no 1>&6
880   fi
881   CFLAGS="$save_CFLAGS"
882   $rm conftest*
883 else
884   compiler_o_lo=no
885 fi
886
887 # Check to see if we can do hard links to lock some files if needed
888 hard_links="nottested"
889 if test "$compiler_c_o" = no && test "$need_locks" != no; then
890   # do not overwrite the value of need_locks provided by the user
891   echo $ac_n "checking if we can lock with hard links... $ac_c" 1>&6
892   hard_links=yes
893   $rm conftest*
894   ln conftest.a conftest.b 2>/dev/null && hard_links=no
895   touch conftest.a
896   ln conftest.a conftest.b 2>&5 || hard_links=no
897   ln conftest.a conftest.b 2>/dev/null && hard_links=no
898   echo "$ac_t$hard_links" 1>&6
899   $rm conftest*
900   if test "$hard_links" = no; then
901     echo "*** WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2
902     need_locks=warn
903   fi
904 else
905   need_locks=no
906 fi
907
908 if test "$with_gcc" = yes; then
909   # Check to see if options -fno-rtti -fno-exceptions are supported by compiler
910   echo $ac_n "checking if $compiler supports -fno-rtti -fno-exceptions ... $ac_c" 1>&6
911   $rm conftest*
912   echo "int some_variable = 0;" > conftest.c
913   save_CFLAGS="$CFLAGS"
914   CFLAGS="$CFLAGS -fno-rtti -fno-exceptions -c conftest.c"
915   echo "$progname:914: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
916   if { (eval echo $progname:915: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>conftest.err; } && test -s conftest.o; then
917
918     # The compiler can only warn and ignore the option if not recognized
919     # So say no if there are warnings
920       if test -s conftest.err; then
921         echo "$ac_t"no 1>&6
922         compiler_rtti_exceptions=no
923       else
924         echo "$ac_t"yes 1>&6
925         compiler_rtti_exceptions=yes
926       fi
927   else
928     # Append any errors to the config.log.
929     cat conftest.err 1>&5
930     compiler_rtti_exceptions=no
931     echo "$ac_t"no 1>&6
932   fi
933   CFLAGS="$save_CFLAGS"
934   $rm conftest*
935
936   if test "$compiler_rtti_exceptions" = "yes"; then
937     no_builtin_flag=' -fno-builtin -fno-rtti -fno-exceptions'
938   else
939     no_builtin_flag=' -fno-builtin'
940   fi
941   
942 fi
943
944 # Check for any special shared library compilation flags.
945 if test -n "$special_shlib_compile_flags"; then
946   echo "$progname: warning: \`$CC' requires \`$special_shlib_compile_flags' to build shared libraries" 1>&2
947   if echo "$old_CC $old_CFLAGS " | egrep -e "[  ]$special_shlib_compile_flags[  ]" >/dev/null; then :
948   else
949     echo "$progname: add \`$special_shlib_compile_flags' to the CC or CFLAGS env variable and reconfigure" 1>&2
950     can_build_shared=no
951   fi
952 fi
953
954 echo $ac_n "checking if $compiler static flag $link_static_flag works... $ac_c" 1>&6
955 $rm conftest*
956 echo 'main(){return(0);}' > conftest.c
957 save_LDFLAGS="$LDFLAGS"
958 LDFLAGS="$LDFLAGS $link_static_flag"
959 echo "$progname:958: checking if $compiler static flag $link_static_flag works" >&5
960 if { (eval echo $progname:959: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
961   echo "$ac_t$link_static_flag" 1>&6
962 else
963   echo "$ac_t"none 1>&6
964   link_static_flag=
965 fi
966 LDFLAGS="$save_LDFLAGS"
967 $rm conftest*
968
969 if test -z "$LN_S"; then
970   # Check to see if we can use ln -s, or we need hard links.
971   echo $ac_n "checking whether ln -s works... $ac_c" 1>&6
972   $rm conftest.dat
973   if ln -s X conftest.dat 2>/dev/null; then
974     $rm conftest.dat
975     LN_S="ln -s"
976   else
977     LN_S=ln
978   fi
979   if test "$LN_S" = "ln -s"; then
980     echo "$ac_t"yes 1>&6
981   else
982     echo "$ac_t"no 1>&6
983   fi
984 fi
985
986 # Make sure LD is an absolute path.
987 if test -z "$LD"; then
988   ac_prog=ld
989   if test "$with_gcc" = yes; then
990     # Check if gcc -print-prog-name=ld gives a path.
991     echo $ac_n "checking for ld used by GCC... $ac_c" 1>&6
992     echo "$progname:991: checking for ld used by GCC" >&5
993     ac_prog=`($CC -print-prog-name=ld) 2>&5`
994     case "$ac_prog" in
995     # Accept absolute paths.
996     [\\/]* | [A-Za-z]:[\\/]*)
997       re_direlt='/[^/][^/]*/\.\./'
998       # Canonicalize the path of ld
999       ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
1000       while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
1001         ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
1002       done
1003       test -z "$LD" && LD="$ac_prog"
1004       ;;
1005     "")
1006       # If it fails, then pretend we are not using GCC.
1007       ac_prog=ld
1008       ;;
1009     *)
1010       # If it is relative, then search for the first ld in PATH.
1011       with_gnu_ld=unknown
1012       ;;
1013     esac
1014   elif test "$with_gnu_ld" = yes; then
1015     echo $ac_n "checking for GNU ld... $ac_c" 1>&6
1016     echo "$progname:1015: checking for GNU ld" >&5
1017   else
1018     echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6
1019     echo "$progname:1018: checking for non-GNU ld" >&5
1020   fi
1021
1022   if test -z "$LD"; then
1023     IFS="${IFS=         }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR}"
1024     for ac_dir in $PATH; do
1025       test -z "$ac_dir" && ac_dir=.
1026       if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
1027         LD="$ac_dir/$ac_prog"
1028         # Check to see if the program is GNU ld.  I'd rather use --version,
1029         # but apparently some GNU ld's only accept -v.
1030         # Break only if it was the GNU/non-GNU ld that we prefer.
1031         if "$LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
1032           test "$with_gnu_ld" != no && break
1033         else
1034           test "$with_gnu_ld" != yes && break
1035         fi
1036       fi
1037     done
1038     IFS="$ac_save_ifs"
1039   fi
1040
1041   if test -n "$LD"; then
1042     echo "$ac_t$LD" 1>&6
1043   else
1044     echo "$ac_t"no 1>&6
1045   fi
1046
1047   if test -z "$LD"; then
1048     echo "$progname: error: no acceptable ld found in \$PATH" 1>&2
1049     exit 1
1050   fi
1051 fi
1052
1053 # Check to see if it really is or is not GNU ld.
1054 echo $ac_n "checking if the linker ($LD) is GNU ld... $ac_c" 1>&6
1055 # I'd rather use --version here, but apparently some GNU ld's only accept -v.
1056 if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
1057   with_gnu_ld=yes
1058 else
1059   with_gnu_ld=no
1060 fi
1061 echo "$ac_t$with_gnu_ld" 1>&6
1062
1063 # See if the linker supports building shared libraries.
1064 echo $ac_n "checking whether the linker ($LD) supports shared libraries... $ac_c" 1>&6
1065
1066 allow_undefined_flag=
1067 no_undefined_flag=
1068 need_lib_prefix=unknown
1069 need_version=unknown
1070 # when you set need_version to no, make sure it does not cause -set_version
1071 # flags to be left without arguments
1072 archive_cmds=
1073 archive_expsym_cmds=
1074 old_archive_from_new_cmds=
1075 export_dynamic_flag_spec=
1076 whole_archive_flag_spec=
1077 thread_safe_flag_spec=
1078 hardcode_libdir_flag_spec=
1079 hardcode_libdir_separator=
1080 hardcode_direct=no
1081 hardcode_minus_L=no
1082 hardcode_default_flag=
1083 hardcode_shlibpath_var=unsupported
1084 runpath_var=
1085 link_export=
1086 link_export_all=
1087 always_export_symbols=no
1088 export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | sed '\''s/.* //'\'' | sort | uniq > $export_symbols'
1089 # include_expsyms should be a list of space-separated symbols to be *always*
1090 # included in the symbol list
1091 include_expsyms=
1092 # exclude_expsyms can be an egrep regular expression of symbols to exclude
1093 # it will be wrapped by ` (' and `)$', so one must not match beginning or
1094 # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
1095 # as well as any symbol that contains `d'.
1096 exclude_expsyms="_GLOBAL_OFFSET_TABLE_"
1097 # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
1098 # platforms (ab)use it in PIC code, but their linkers get confused if
1099 # the symbol is explicitly referenced.  Since portable code cannot
1100 # rely on this symbol name, it's probably fine to never include it in
1101 # preloaded symbol tables.
1102
1103 case "$host_os" in
1104 cygwin* | mingw*)
1105   # FIXME: the MSVC++ port hasn't been tested in a loooong time
1106   # When not using gcc, we currently assume that we are using
1107   # Microsoft Visual C++.
1108   if test "$with_gcc" != yes; then
1109     with_gnu_ld=no
1110   fi
1111   ;;
1112
1113 esac
1114
1115 ld_shlibs=yes
1116 if test "$with_gnu_ld" = yes; then
1117   # If archive_cmds runs LD, not CC, wlarc should be empty
1118   wlarc='${wl}'
1119
1120   # See if GNU ld supports shared libraries.
1121   case "$host_os" in
1122   aix3* | aix4*)
1123     # On AIX, the GNU linker is very broken
1124     ld_shlibs=no
1125     cat <<EOF 1>&2
1126
1127 *** Warning: the GNU linker, at least up to release 2.9.1, is reported
1128 *** to be unable to reliably create shared libraries on AIX.
1129 *** Therefore, libtool is disabling shared libraries support.  If you
1130 *** really care for shared libraries, you may want to modify your PATH
1131 *** so that a non-GNU linker is found, and then restart.
1132
1133 EOF
1134     ;;
1135
1136   amigaos*)
1137     archive_cmds='$rm $objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $objdir/a2ixlibrary.data~$AR cru $lib $libobjs~$RANLIB $lib~(cd $objdir && a2ixlibrary -32)'
1138     hardcode_libdir_flag_spec='-L$libdir'
1139     hardcode_minus_L=yes
1140
1141     # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
1142     # that the semantics of dynamic libraries on AmigaOS, at least up
1143     # to version 4, is to share data among multiple programs linked
1144     # with the same dynamic library.  Since this doesn't match the
1145     # behavior of shared libraries on other platforms, we can use
1146     # them.
1147     ld_shlibs=no
1148     ;;
1149
1150   beos*)
1151     if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
1152       allow_undefined_flag=unsupported
1153       # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
1154       # support --undefined.  This deserves some investigation.  FIXME
1155       archive_cmds='$CC -nostart $libobjs $deplibs $linkopts ${wl}-soname $wl$soname -o $lib'
1156     else
1157       ld_shlibs=no
1158     fi
1159     ;;
1160
1161   cygwin* | mingw*)
1162     # hardcode_libdir_flag_spec is actually meaningless, as there is
1163     # no search path for DLLs.
1164     hardcode_libdir_flag_spec='-L$libdir'
1165     allow_undefined_flag=unsupported
1166     always_export_symbols=yes
1167
1168     # Extract the symbol export list from an `--export-all' def file,
1169     # then regenerate the def file from the symbol export list, so that
1170     # the compiled dll only exports the symbol export list.
1171     # Be careful not to strip the DATA tag left by newer dlltools.
1172     export_symbols_cmds='test -f $objdir/$soname-ltdll.c || sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $0 > $objdir/$soname-ltdll.c~
1173       test -f $objdir/$soname-ltdll.$objext || (cd $objdir && $CC -c $soname-ltdll.c)~
1174       $DLLTOOL --export-all --exclude-symbols DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12 --output-def $objdir/$soname-def  $objdir/$soname-ltdll.$objext $libobjs $convenience~
1175       sed -e "1,/EXPORTS/d" -e "s/ @ [0-9]*//" -e "s/ *;.*$//" < $objdir/$soname-def > $export_symbols'
1176
1177     # If DATA tags from a recent dlltool are present, honour them!
1178     archive_expsym_cmds='echo EXPORTS > $objdir/$soname-def~
1179       _lt_hint=1;
1180       cat $export_symbols | while read symbol; do
1181         set dummy \$symbol;
1182         case \$# in
1183           2) echo "     \$2 @ \$_lt_hint ; " >> $objdir/$soname-def;;
1184           *) echo "     \$2 @ \$_lt_hint \$3 ; " >> $objdir/$soname-def;;
1185         esac;
1186         _lt_hint=`expr 1 + \$_lt_hint`;
1187       done~
1188       test -f $objdir/$soname-ltdll.c || sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $0 > $objdir/$soname-ltdll.c~
1189       test -f $objdir/$soname-ltdll.$objext || (cd $objdir && $CC -c $soname-ltdll.c)~
1190       $CC -Wl,--base-file,$objdir/$soname-base -Wl,--dll -nostartfiles -Wl,-e,__cygwin_dll_entry@12 -o $lib $objdir/$soname-ltdll.$objext $libobjs $deplibs $linkopts~
1191       $DLLTOOL --as=$AS --dllname $soname --exclude-symbols DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12 --def $objdir/$soname-def --base-file $objdir/$soname-base --output-exp $objdir/$soname-exp~
1192       $CC -Wl,--base-file,$objdir/$soname-base $objdir/$soname-exp -Wl,--dll -nostartfiles -Wl,-e,__cygwin_dll_entry@12 -o $lib $objdir/$soname-ltdll.$objext $libobjs $deplibs $linkopts~
1193       $DLLTOOL --as=$AS --dllname $soname --exclude-symbols DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12 --def $objdir/$soname-def --base-file $objdir/$soname-base --output-exp $objdir/$soname-exp~
1194       $CC $objdir/$soname-exp -Wl,--dll -nostartfiles -Wl,-e,__cygwin_dll_entry@12 -o $lib $objdir/$soname-ltdll.$objext $libobjs $deplibs $linkopts'
1195
1196       old_archive_from_new_cmds='$DLLTOOL --as=$AS --dllname $soname --def $objdir/$soname-def --output-lib $objdir/$libname.a' 
1197     ;;
1198
1199   netbsd*)
1200     if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
1201       archive_cmds='$CC -shared $libobjs $deplibs $linkopts ${wl}-soname $wl$soname -o $lib'
1202       archive_expsym_cmds='$CC -shared $libobjs $deplibs $linkopts ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
1203     else
1204       archive_cmds='$LD -Bshareable $libobjs $deplibs $linkopts -o $lib'
1205       # can we support soname and/or expsyms with a.out? -oliva
1206     fi
1207     ;;
1208
1209   solaris* | sysv5*)
1210     if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then
1211       ld_shlibs=no
1212       cat <<EOF 1>&2
1213
1214 *** Warning: The releases 2.8.* of the GNU linker cannot reliably
1215 *** create shared libraries on Solaris systems.  Therefore, libtool
1216 *** is disabling shared libraries support.  We urge you to upgrade GNU
1217 *** binutils to release 2.9.1 or newer.  Another option is to modify
1218 *** your PATH or compiler configuration so that the native linker is
1219 *** used, and then restart.
1220
1221 EOF
1222     elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
1223       archive_cmds='$CC -shared $libobjs $deplibs $linkopts ${wl}-soname $wl$soname -o $lib'
1224       archive_expsym_cmds='$CC -shared $libobjs $deplibs $linkopts ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
1225     else
1226       ld_shlibs=no
1227     fi
1228     ;;      
1229
1230   sunos4*)
1231     archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linkopts'
1232     wlarc=
1233     hardcode_direct=yes
1234     hardcode_shlibpath_var=no
1235     ;;
1236
1237   *)
1238     if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
1239       archive_cmds='$CC -shared $libobjs $deplibs $linkopts ${wl}-soname $wl$soname -o $lib'
1240       archive_expsym_cmds='$CC -shared $libobjs $deplibs $linkopts ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
1241     else
1242       ld_shlibs=no
1243     fi
1244     ;;
1245   esac
1246
1247   if test "$ld_shlibs" = yes; then
1248     runpath_var=LD_RUN_PATH
1249     hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir'
1250     export_dynamic_flag_spec='${wl}--export-dynamic'
1251     case $host_os in
1252     cygwin* | mingw*)
1253       # dlltool doesn't understand --whole-archive et. al.
1254       whole_archive_flag_spec=
1255       ;;
1256     *)
1257       # ancient GNU ld didn't support --whole-archive et. al.
1258       if $LD --help 2>&1 | egrep 'no-whole-archive' > /dev/null; then
1259         whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
1260       else
1261         whole_archive_flag_spec=
1262       fi
1263       ;;
1264     esac
1265   fi
1266 else
1267   # PORTME fill in a description of your system's linker (not GNU ld)
1268   case "$host_os" in
1269   aix3*)
1270     allow_undefined_flag=unsupported
1271     always_export_symbols=yes
1272     link_export=' -bE:$export_symbols'
1273     archive_expsym_cmds='$LD -o $objdir/$soname $libobjs $deplibs $linkopts -bE:$export_symbols -T512 -H512 -bM:SRE~$AR cru $lib $objdir/$soname'
1274     # Note: this linker hardcodes the directories in LIBPATH if there
1275     # are no directories specified by -L.
1276     hardcode_minus_L=yes
1277     if test "$with_gcc" = yes && test -z "$link_static_flag"; then
1278       # Neither direct hardcoding nor static linking is supported with a
1279       # broken collect2.
1280       hardcode_direct=unsupported
1281     fi
1282     ;;
1283
1284   aix4*)
1285     hardcode_libdir_flag_spec='${wl}-b ${wl}libpath:$libdir:/usr/lib:/lib'
1286     hardcode_libdir_separator=':'
1287     if test "$with_gcc" = yes; then
1288       collect2name=`${CC} -print-prog-name=collect2`
1289       if test -f "$collect2name" && \
1290          strings "$collect2name" | grep resolve_lib_name >/dev/null
1291       then
1292         # We have reworked collect2
1293         hardcode_direct=yes
1294       else
1295         # We have old collect2
1296         hardcode_direct=unsupported
1297         # It fails to find uninstalled libraries when the uninstalled
1298         # path is not listed in the libpath.  Setting hardcode_minus_L
1299         # to unsupported forces relinking
1300         hardcode_minus_L=yes
1301         hardcode_libdir_flag_spec='-L$libdir'
1302         hardcode_libdir_separator=
1303       fi
1304       shared_flag='-shared'
1305     else
1306       shared_flag='${wl}-bM:SRE'
1307       hardcode_direct=yes
1308       hardcode_minus_L=yes
1309       hardcode_default_flag='${wl}-b nolibpath'
1310     fi
1311     allow_undefined_flag=' ${wl}-berok'
1312     archive_cmds="\$CC $shared_flag"' -o $objdir/$soname $libobjs $deplibs $linkopts ${wl}-bexpall ${wl}-bnoentry${allow_undefined_flag}'
1313     archive_expsym_cmds="\$CC $shared_flag"' -o $objdir/$soname $libobjs $deplibs $linkopts ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}'
1314     link_export=' ${wl}-bE:$export_symbols'
1315     link_export_all=' ${wl}-bexpall'
1316     always_export_symbols=yes
1317    ;;
1318
1319   amigaos*)
1320     archive_cmds='$rm $objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $objdir/a2ixlibrary.data~$AR cru $lib $libobjs~$RANLIB $lib~(cd $objdir && a2ixlibrary -32)'
1321     hardcode_libdir_flag_spec='-L$libdir'
1322     hardcode_minus_L=yes
1323     # see comment about different semantics on the GNU ld section
1324     ld_shlibs=no
1325     ;;
1326
1327   cygwin* | mingw*)
1328     # When not using gcc, we currently assume that we are using
1329     # Microsoft Visual C++.
1330     # hardcode_libdir_flag_spec is actually meaningless, as there is
1331     # no search path for DLLs.
1332     hardcode_libdir_flag_spec=' '
1333     allow_undefined_flag=unsupported
1334     # Tell ltmain to make .lib files, not .a files.
1335     libext=lib
1336     # FIXME: Setting linknames here is a bad hack.
1337     archive_cmds='$CC -o $lib $libobjs $linkopts `echo "$deplibs" | sed -e '\''s/ -lc$//'\''` -link -dll~linknames='
1338     # The linker will automatically build a .lib file if we build a DLL.
1339     old_archive_from_new_cmds='true'
1340     # FIXME: Should let the user specify the lib program.
1341     old_archive_cmds='lib /OUT:$oldlib$oldobjs'
1342     fix_srcfile_path='`cygpath -w $srcfile`'
1343     ;;
1344
1345   freebsd1*)
1346     ld_shlibs=no
1347     ;;
1348
1349   # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
1350   # support.  Future versions do this automatically, but an explicit c++rt0.o
1351   # does not break anything, and helps significantly (at the cost of a little
1352   # extra space).
1353   freebsd2.2*)
1354     archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linkopts /usr/lib/c++rt0.o'
1355     hardcode_libdir_flag_spec='-R$libdir'
1356     hardcode_direct=yes
1357     hardcode_shlibpath_var=no
1358     ;;
1359
1360   # Unfortunately, older versions of FreeBSD 2 do not have this feature.
1361   freebsd2*)
1362     archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linkopts'
1363     hardcode_direct=yes
1364     hardcode_minus_L=yes
1365     hardcode_shlibpath_var=no
1366     ;;
1367
1368   # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
1369   freebsd*)
1370     archive_cmds='$CC -shared -o $lib $libobjs $deplibs $linkopts'
1371     hardcode_libdir_flag_spec='-R$libdir'
1372     hardcode_direct=yes
1373     hardcode_shlibpath_var=no
1374     ;;
1375
1376   darwin* | rhapsody*)
1377     allow_undefined_flag='-undefined warning'
1378     archive_cmds='$CC $(if [ "$module" = "yes" ]; then echo -bundle; else echo -dynamiclib -undefined suppress; fi) -o $lib $libobjs $deplibs $linkopts'
1379     archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
1380     ## What we need is to hardcode the path to the library, not the search path
1381     #hardcode_direct=yes
1382     #hardcode_libdir_flag_spec='-install_name $libdir/$lib'
1383     hardcode_shlibpath_var=no
1384     whole_archive_flag_spec='-all_load'
1385     ;;
1386
1387   hpux9* | hpux10* | hpux11*)
1388     case "$host_os" in
1389     hpux9*) archive_cmds='$rm $objdir/$soname~$LD -b +b $install_libdir -o $objdir/$soname $libobjs $deplibs $linkopts~test $objdir/$soname = $lib || mv $objdir/$soname $lib' ;;
1390     *) archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linkopts' ;;
1391     esac
1392     hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
1393     hardcode_libdir_separator=:
1394     hardcode_direct=yes
1395     hardcode_minus_L=yes # Not in the search PATH, but as the default
1396                          # location of the library.
1397     export_dynamic_flag_spec='${wl}-E'
1398     ;;
1399
1400   irix5* | irix6*)
1401     if test "$with_gcc" = yes; then
1402       archive_cmds='$CC -shared $libobjs $deplibs $linkopts ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib'
1403     else
1404       archive_cmds='$LD -shared $libobjs $deplibs $linkopts -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib'
1405     fi
1406     hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
1407     hardcode_libdir_separator=:
1408     ;;
1409
1410   netbsd*)
1411     if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
1412       archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linkopts'  # a.out
1413     else
1414       archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linkopts'      # ELF
1415     fi
1416     hardcode_libdir_flag_spec='${wl}-R$libdir'
1417     hardcode_direct=yes
1418     hardcode_shlibpath_var=no
1419     ;;
1420
1421   openbsd*)
1422     archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linkopts'
1423     hardcode_libdir_flag_spec='-R$libdir'
1424     hardcode_direct=yes
1425     hardcode_shlibpath_var=no
1426     ;;
1427
1428   os2*)
1429     hardcode_libdir_flag_spec='-L$libdir'
1430     hardcode_minus_L=yes
1431     allow_undefined_flag=unsupported
1432     archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $objdir/$libname.def~$echo DATA >> $objdir/$libname.def~$echo " SINGLE NONSHARED" >> $objdir/$libname.def~$echo EXPORTS >> $objdir/$libname.def~emxexp $libobjs >> $objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $linkopts $objdir/$libname.def'
1433     old_archive_from_new_cmds='emximp -o $objdir/$libname.a $objdir/$libname.def'
1434     ;;
1435
1436   osf3*)
1437     if test "$with_gcc" = yes; then
1438       allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
1439       archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $linkopts ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib'
1440     else
1441       allow_undefined_flag=' -expect_unresolved \*'
1442       archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linkopts -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib'
1443     fi
1444     hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
1445     hardcode_libdir_separator=:
1446     ;;
1447
1448   osf4* | osf5*)  # As osf3* with the addition of the -msym flag
1449     if test "$with_gcc" = yes; then
1450       allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
1451       archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $linkopts ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib'
1452     else
1453       allow_undefined_flag=' -expect_unresolved \*'
1454       archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linkopts -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib'
1455     fi
1456     hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
1457     hardcode_libdir_separator=:
1458     ;;
1459   rhapsody*)
1460     archive_cmds='$CC -bundle -undefined suppress -o $lib $libobjs $deplibs $linkopts'
1461     hardcode_libdir_flags_spec='-L$libdir'
1462     hardcode_direct=yes
1463     hardcode_shlibpath_var=no
1464     ;;
1465                                        
1466   sco3.2v5*)
1467     archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linkopts'
1468     hardcode_shlibpath_var=no
1469     runpath_var=LD_RUN_PATH
1470     hardcode_runpath_var=yes
1471     ;;
1472
1473   solaris*)
1474     no_undefined_flag=' -z text'
1475     # $CC -shared without GNU ld will not create a library from C++
1476     # object files and a static libstdc++, better avoid it by now
1477     archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linkopts'
1478     archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
1479                 $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linkopts~$rm $lib.exp'
1480     hardcode_libdir_flag_spec='-R$libdir'
1481     hardcode_shlibpath_var=no
1482     case "$host_os" in
1483     solaris2.[0-5] | solaris2.[0-5].*) ;;
1484     *) # Supported since Solaris 2.6 (maybe 2.5.1?)
1485       whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;;
1486     esac
1487     ;;
1488
1489   sunos4*)
1490     archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linkopts'
1491     hardcode_libdir_flag_spec='-L$libdir'
1492     hardcode_direct=yes
1493     hardcode_minus_L=yes
1494     hardcode_shlibpath_var=no
1495     ;;
1496
1497   sysv4)
1498     if test "x$host_vendor" = xsequent; then
1499       # Use $CC to link under sequent, because it throws in some extra .o 
1500       # files that make .init and .fini sections work.
1501       archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $linkopts'
1502     else
1503       archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linkopts'
1504     fi
1505     runpath_var='LD_RUN_PATH'
1506     hardcode_shlibpath_var=no
1507     hardcode_direct=no #Motorola manual says yes, but my tests say they lie 
1508     ;;  
1509
1510   sysv4.3*)
1511     archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linkopts'
1512     hardcode_shlibpath_var=no
1513     export_dynamic_flag_spec='-Bexport'
1514     ;;
1515
1516   sysv5*)
1517     no_undefined_flag=' -z text'
1518     # $CC -shared without GNU ld will not create a library from C++
1519     # object files and a static libstdc++, better avoid it by now
1520     archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linkopts'
1521     archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
1522                 $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linkopts~$rm $lib.exp'
1523     hardcode_libdir_flag_spec=
1524     hardcode_shlibpath_var=no
1525     runpath_var='LD_RUN_PATH'
1526     ;;
1527
1528   uts4*)
1529     archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linkopts'
1530     hardcode_libdir_flag_spec='-L$libdir'
1531     hardcode_shlibpath_var=no
1532     ;;
1533
1534   dgux*)
1535     archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linkopts'
1536     hardcode_libdir_flag_spec='-L$libdir'
1537     hardcode_shlibpath_var=no
1538     ;;
1539
1540   sysv4*MP*)
1541     if test -d /usr/nec; then
1542       archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linkopts'
1543       hardcode_shlibpath_var=no
1544       runpath_var=LD_RUN_PATH
1545       hardcode_runpath_var=yes
1546       ld_shlibs=yes
1547     fi
1548     ;;
1549
1550   sysv4.2uw2*)
1551     archive_cmds='$LD -G -o $lib $libobjs $deplibs $linkopts'
1552     hardcode_direct=yes
1553     hardcode_minus_L=no
1554     hardcode_shlibpath_var=no
1555     hardcode_runpath_var=yes
1556     runpath_var=LD_RUN_PATH
1557     ;;
1558
1559   unixware7*)
1560     archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linkopts'
1561     runpath_var='LD_RUN_PATH'
1562     hardcode_shlibpath_var=no
1563     ;;
1564
1565   *)
1566     ld_shlibs=no
1567     ;;
1568   esac
1569 fi
1570 echo "$ac_t$ld_shlibs" 1>&6
1571 test "$ld_shlibs" = no && can_build_shared=no
1572
1573 if test -z "$NM"; then
1574   echo $ac_n "checking for BSD-compatible nm... $ac_c" 1>&6
1575   case "$NM" in
1576   [\\/]* | [A-Za-z]:[\\/]*) ;; # Let the user override the test with a path.
1577   *)
1578     IFS="${IFS=         }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR}"
1579     for ac_dir in $PATH /usr/ucb /usr/ccs/bin /bin; do
1580       test -z "$ac_dir" && ac_dir=.
1581       if test -f $ac_dir/nm || test -f $ac_dir/nm$ac_exeext; then
1582         # Check to see if the nm accepts a BSD-compat flag.
1583         # Adding the `sed 1q' prevents false positives on HP-UX, which says:
1584         #   nm: unknown option "B" ignored
1585         if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
1586           NM="$ac_dir/nm -B"
1587           break
1588         elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
1589           NM="$ac_dir/nm -p"
1590           break
1591         else
1592           NM=${NM="$ac_dir/nm"} # keep the first match, but
1593           continue # so that we can try to find one that supports BSD flags
1594         fi
1595       fi
1596     done
1597     IFS="$ac_save_ifs"
1598     test -z "$NM" && NM=nm
1599     ;;
1600   esac
1601   echo "$ac_t$NM" 1>&6
1602 fi
1603
1604 # Check for command to grab the raw symbol name followed by C symbol from nm.
1605 echo $ac_n "checking command to parse $NM output... $ac_c" 1>&6
1606
1607 # These are sane defaults that work on at least a few old systems.
1608 # [They come from Ultrix.  What could be older than Ultrix?!! ;)]
1609
1610 # Character class describing NM global symbol codes.
1611 symcode='[BCDEGRST]'
1612
1613 # Regexp to match symbols that can be accessed directly from C.
1614 sympat='\([_A-Za-z][_A-Za-z0-9]*\)'
1615
1616 # Transform the above into a raw symbol and a C symbol.
1617 symxfrm='\1 \2\3 \3'
1618
1619 # Transform an extracted symbol line into a proper C declaration
1620 global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern char \1;/p'"
1621
1622 # Define system-specific variables.
1623 case "$host_os" in
1624 aix*)
1625   symcode='[BCDT]'
1626   ;;
1627 cygwin* | mingw*)
1628   symcode='[ABCDGISTW]'
1629   ;;
1630 hpux*) # Its linker distinguishes data from code symbols
1631   global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern char \1();/p' -e 's/^. .* \(.*\)$/extern char \1;/p'"
1632   ;;
1633 irix*)
1634   symcode='[BCDEGRST]'
1635   ;;
1636 solaris*)
1637   symcode='[BDT]'
1638   ;;
1639 sysv4)
1640   symcode='[DFNSTU]'
1641   ;;
1642 esac
1643
1644 # If we're using GNU nm, then use its standard symbol codes.
1645 if $NM -V 2>&1 | egrep '(GNU|with BFD)' > /dev/null; then
1646   symcode='[ABCDGISTW]'
1647 fi
1648
1649 # Try without a prefix undercore, then with it.
1650 for ac_symprfx in "" "_"; do
1651
1652   # Write the raw and C identifiers.
1653   global_symbol_pipe="sed -n -e 's/^.*[         ]\($symcode\)[  ][      ]*\($ac_symprfx\)$sympat$/$symxfrm/p'"
1654
1655   # Check to see that the pipe works correctly.
1656   pipe_works=no
1657   $rm conftest*
1658   cat > conftest.c <<EOF
1659 #ifdef __cplusplus
1660 extern "C" {
1661 #endif
1662 char nm_test_var;
1663 void nm_test_func(){}
1664 #ifdef __cplusplus
1665 }
1666 #endif
1667 main(){nm_test_var='a';nm_test_func();return(0);}
1668 EOF
1669
1670   echo "$progname:1653: checking if global_symbol_pipe works" >&5
1671   if { (eval echo $progname:1654: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; } && test -s conftest.$objext; then
1672     # Now try to grab the symbols.
1673     nlist=conftest.nm
1674     if { echo "$progname:1657: eval \"$NM conftest.$objext | $global_symbol_pipe > $nlist\"" >&5; eval "$NM conftest.$objext | $global_symbol_pipe > $nlist 2>&5"; } && test -s "$nlist"; then
1675
1676       # Try sorting and uniquifying the output.
1677       if sort "$nlist" | uniq > "$nlist"T; then
1678         mv -f "$nlist"T "$nlist"
1679       else
1680         rm -f "$nlist"T
1681       fi
1682
1683       # Make sure that we snagged all the symbols we need.
1684       if egrep ' nm_test_var$' "$nlist" >/dev/null; then
1685         if egrep ' nm_test_func$' "$nlist" >/dev/null; then
1686           cat <<EOF > conftest.c
1687 #ifdef __cplusplus
1688 extern "C" {
1689 #endif
1690
1691 EOF
1692           # Now generate the symbol file.
1693           eval "$global_symbol_to_cdecl"' < "$nlist" >> conftest.c'
1694
1695           cat <<EOF >> conftest.c
1696 #if defined (__STDC__) && __STDC__
1697 # define lt_ptr_t void *
1698 #else
1699 # define lt_ptr_t char *
1700 # define const
1701 #endif
1702
1703 /* The mapping between symbol names and symbols. */
1704 const struct {
1705   const char *name;
1706   lt_ptr_t address;
1707 }
1708 lt_preloaded_symbols[] =
1709 {
1710 EOF
1711           sed 's/^. \(.*\) \(.*\)$/  {"\2", (lt_ptr_t) \&\2},/' < "$nlist" >> conftest.c
1712           cat <<\EOF >> conftest.c
1713   {0, (lt_ptr_t) 0}
1714 };
1715
1716 #ifdef __cplusplus
1717 }
1718 #endif
1719 EOF
1720           # Now try linking the two files.
1721           mv conftest.$objext conftstm.$objext
1722           save_LIBS="$LIBS"
1723           save_CFLAGS="$CFLAGS"
1724           LIBS="conftstm.$objext"
1725           CFLAGS="$CFLAGS$no_builtin_flag"
1726           if { (eval echo $progname:1709: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
1727             pipe_works=yes
1728           else
1729             echo "$progname: failed program was:" >&5
1730             cat conftest.c >&5
1731           fi
1732           LIBS="$save_LIBS"
1733         else
1734           echo "cannot find nm_test_func in $nlist" >&5
1735         fi
1736       else
1737         echo "cannot find nm_test_var in $nlist" >&5
1738       fi
1739     else
1740       echo "cannot run $global_symbol_pipe" >&5
1741     fi
1742   else
1743     echo "$progname: failed program was:" >&5
1744     cat conftest.c >&5
1745   fi
1746   $rm conftest* conftst*
1747
1748   # Do not use the global_symbol_pipe unless it works.
1749   if test "$pipe_works" = yes; then
1750     break
1751   else
1752     global_symbol_pipe=
1753   fi
1754 done
1755 if test "$pipe_works" = yes; then
1756   echo "${ac_t}ok" 1>&6
1757 else
1758   echo "${ac_t}failed" 1>&6
1759 fi
1760
1761 if test -z "$global_symbol_pipe"; then
1762   global_symbol_to_cdecl=
1763 fi
1764
1765 # Check hardcoding attributes.
1766 echo $ac_n "checking how to hardcode library paths into programs... $ac_c" 1>&6
1767 hardcode_action=
1768 if test -n "$hardcode_libdir_flag_spec" || \
1769    test -n "$runpath_var"; then
1770
1771   # We can hardcode non-existant directories.
1772   if test "$hardcode_direct" != no &&
1773      # If the only mechanism to avoid hardcoding is shlibpath_var, we
1774      # have to relink, otherwise we might link with an installed library
1775      # when we should be linking with a yet-to-be-installed one
1776      ## test "$hardcode_shlibpath_var" != no &&
1777      test "$hardcode_minus_L" != no; then
1778     # Linking always hardcodes the temporary library directory.
1779     hardcode_action=relink
1780   else
1781     # We can link without hardcoding, and we can hardcode nonexisting dirs.
1782     hardcode_action=immediate
1783   fi
1784 else
1785   # We cannot hardcode anything, or else we can only hardcode existing
1786   # directories.
1787   hardcode_action=unsupported
1788 fi
1789 echo "$ac_t$hardcode_action" 1>&6
1790
1791
1792 reload_flag=
1793 reload_cmds='$LD$reload_flag -o $output$reload_objs'
1794 echo $ac_n "checking for $LD option to reload object files... $ac_c" 1>&6
1795 # PORTME Some linkers may need a different reload flag.
1796 reload_flag='-r'
1797 echo "$ac_t$reload_flag" 1>&6
1798 test -n "$reload_flag" && reload_flag=" $reload_flag"
1799
1800 # PORTME Fill in your ld.so characteristics
1801 library_names_spec=
1802 libname_spec='lib$name'
1803 soname_spec=
1804 postinstall_cmds=
1805 postuninstall_cmds=
1806 finish_cmds=
1807 finish_eval=
1808 shlibpath_var=
1809 shlibpath_overrides_runpath=unknown
1810 version_type=none
1811 dynamic_linker="$host_os ld.so"
1812 sys_lib_dlsearch_path_spec="/lib /usr/lib"
1813 sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
1814 file_magic_cmd=
1815 file_magic_test_file=
1816 deplibs_check_method='unknown'
1817 # Need to set the preceding variable on all platforms that support
1818 # interlibrary dependencies.
1819 # 'none' -- dependencies not supported.
1820 # `unknown' -- same as none, but documents that we really don't know.
1821 # 'pass_all' -- all dependencies passed with no checks.
1822 # 'test_compile' -- check by making test program.
1823 # 'file_magic [regex]' -- check by looking for files in library path
1824 # which responds to the $file_magic_cmd with a given egrep regex.
1825 # If you have `file' or equivalent on your system and you're not sure
1826 # whether `pass_all' will *always* work, you probably want this one.
1827 echo $ac_n "checking dynamic linker characteristics... $ac_c" 1>&6
1828 case "$host_os" in
1829 aix3*)
1830   version_type=linux
1831   library_names_spec='${libname}${release}.so$versuffix $libname.a'
1832   shlibpath_var=LIBPATH
1833
1834   # AIX has no versioning support, so we append a major version to the name.
1835   soname_spec='${libname}${release}.so$major'
1836   lt_cv_dlopen_self=yes
1837   need_lib_prefix=no
1838   ;;
1839
1840 aix4*)
1841   version_type=linux
1842   # AIX has no versioning support, so currently we can not hardcode correct
1843   # soname into executable. Probably we can add versioning support to
1844   # collect2, so additional links can be useful in future.
1845   # We preserve .a as extension for shared libraries though AIX4.2
1846   # and later linker supports .so
1847   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.a'
1848   shlibpath_var=LIBPATH
1849   deplibs_check_method=pass_all
1850   lt_cv_dlopen_self=yes
1851   need_lib_prefix=no
1852   ;;
1853
1854 amigaos*)
1855   library_names_spec='$libname.ixlibrary $libname.a'
1856   # Create ${libname}_ixlibrary.a entries in /sys/libs.
1857   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'
1858   ;;
1859
1860 beos*)
1861   library_names_spec='${libname}.so'
1862   dynamic_linker="$host_os ld.so"
1863   shlibpath_var=LIBRARY_PATH
1864   deplibs_check_method=pass_all
1865   lt_cv_dlopen="load_add_on"
1866   lt_cv_dlopen_libs=
1867   lt_cv_dlopen_self=yes
1868   ;;
1869
1870 bsdi4*)
1871   version_type=linux
1872   need_version=no
1873   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
1874   soname_spec='${libname}${release}.so$major'
1875   finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
1876   shlibpath_var=LD_LIBRARY_PATH
1877   deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'
1878   file_magic_cmd=/usr/bin/file
1879   file_magic_test_file=/shlib/libc.so
1880   sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
1881   sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
1882   export_dynamic_flag_spec=-rdynamic
1883   # the default ld.so.conf also contains /usr/contrib/lib and
1884   # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
1885   # libtool to hard-code these into programs
1886   ;;
1887
1888 cygwin* | mingw*)
1889   version_type=windows
1890   need_version=no
1891   need_lib_prefix=no
1892   if test "$with_gcc" = yes; then
1893     library_names_spec='${libname}`echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll $libname.a'
1894   else
1895     library_names_spec='${libname}`echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll $libname.lib'
1896   fi
1897   dynamic_linker='Win32 ld.exe'
1898   deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
1899   file_magic_cmd='${OBJDUMP} -f'
1900   # FIXME: first we should search . and the directory the executable is in
1901   shlibpath_var=PATH
1902   lt_cv_dlopen="LoadLibrary"
1903   lt_cv_dlopen_libs=
1904   ;;
1905
1906 freebsd1*)
1907   dynamic_linker=no
1908   ;;
1909   
1910 freebsd*)
1911   objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout`
1912   version_type=freebsd-$objformat
1913   case "$version_type" in
1914     freebsd-elf*)
1915       deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB shared object'
1916       file_magic_cmd=/usr/bin/file
1917       file_magic_test_file=`echo /usr/lib/libc.so*`
1918       library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so'
1919       need_version=no
1920       need_lib_prefix=no
1921       ;;
1922     freebsd-*)
1923       deplibs_check_method=unknown
1924       library_names_spec='${libname}${release}.so$versuffix $libname.so$versuffix'
1925       need_version=yes
1926       ;;
1927   esac
1928   shlibpath_var=LD_LIBRARY_PATH
1929   case "$host_os" in
1930   freebsd2* | freebsd3.[01]* | freebsdelf3.[01]*)
1931     shlibpath_overrides_runpath=yes
1932     ;;
1933   *) # from 3.2 on
1934     shlibpath_overrides_runpath=no
1935     ;;
1936   esac
1937   ;;
1938
1939 darwin* | rhapsody*)
1940   deplibs_check_method='file_magic Mach-O dynamically linked shared library'
1941   file_magic_cmd=/usr/bin/file
1942   file_magic_test_file=`echo System/Library/Frameworks/System.framework/Versions/*/System | head -1`
1943   library_names_spec='${libname}.$(if [ "$module" = "yes" ]; then echo so; else echo dylib; fi)'
1944   need_lib_prefix=no
1945   need_version=no
1946   postinstall_cmds='chmod +x $lib'
1947   shlibpath_overrides_runpath=yes
1948   shlibpath_var=DYLD_LIBRARY_PATH
1949   ;;
1950
1951 gnu*)
1952   version_type=linux
1953   need_lib_prefix=no
1954   need_version=no
1955   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so${major} ${libname}.so'
1956   soname_spec='${libname}${release}.so$major'
1957   shlibpath_var=LD_LIBRARY_PATH
1958   ;;
1959
1960 hpux9* | hpux10* | hpux11*)
1961   # Give a soname corresponding to the major version so that dld.sl refuses to
1962   # link against other versions.
1963   dynamic_linker="$host_os dld.sl"
1964   version_type=sunos
1965   need_lib_prefix=no
1966   need_version=no
1967   shlibpath_var=SHLIB_PATH
1968   shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
1969   library_names_spec='${libname}${release}.sl$versuffix ${libname}${release}.sl$major $libname.sl'
1970   soname_spec='${libname}${release}.sl$major'
1971   # HP-UX runs *really* slowly unless shared libraries are mode 555.
1972   postinstall_cmds='chmod 555 $lib'
1973   case "$host_os" in
1974   hpux10.20*)
1975     # TODO:  Does this work for hpux-11 too?
1976     deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library'
1977     file_magic_cmd=/usr/bin/file
1978     file_magic_test_file=/usr/lib/libc.sl
1979     ;;
1980   esac
1981   ;;
1982
1983 irix5* | irix6*)
1984   version_type=irix
1985   need_lib_prefix=no
1986   need_version=no
1987   soname_spec='${libname}${release}.so.$major'
1988   library_names_spec='${libname}${release}.so.$versuffix ${libname}${release}.so.$major ${libname}${release}.so $libname.so'
1989   case "$host_os" in
1990   irix5*)
1991     libsuff= shlibsuff=
1992     # this will be overridden with pass_all, but let us keep it just in case
1993     deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1"
1994     ;;
1995   *)
1996     case "$LD" in # libtool.m4 will add one of these switches to LD
1997     *-32|*"-32 ") libsuff= shlibsuff= libmagic=32-bit;;
1998     *-n32|*"-n32 ") libsuff=32 shlibsuff=N32 libmagic=N32;;
1999     *-64|*"-64 ") libsuff=64 shlibsuff=64 libmagic=64-bit;;
2000     *) libsuff= shlibsuff= libmagic=never-match;;
2001     esac
2002     ;;
2003   esac
2004   shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
2005   shlibpath_overrides_runpath=no
2006   sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
2007   sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
2008   file_magic_cmd=/usr/bin/file
2009   file_magic_test_file=`echo /lib${libsuff}/libc.so*`
2010   deplibs_check_method='pass_all'
2011   ;;
2012
2013 # No shared lib support for Linux oldld, aout, or coff.
2014 linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*)
2015   dynamic_linker=no
2016   ;;
2017
2018 # This must be Linux ELF.
2019 linux-gnu*)
2020   version_type=linux
2021   need_lib_prefix=no
2022   need_version=no
2023   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2024   soname_spec='${libname}${release}.so$major'
2025   finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
2026   shlibpath_var=LD_LIBRARY_PATH
2027   shlibpath_overrides_runpath=no
2028   deplibs_check_method=pass_all
2029
2030   if test -f /lib/ld.so.1; then
2031     dynamic_linker='GNU ld.so'
2032   else
2033     # Only the GNU ld.so supports shared libraries on MkLinux.
2034     case "$host_cpu" in
2035     powerpc*) dynamic_linker=no ;;
2036     *) dynamic_linker='Linux ld.so' ;;
2037     esac
2038   fi
2039   ;;
2040
2041 netbsd*)
2042   version_type=sunos
2043   if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
2044     library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
2045     finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
2046     dynamic_linker='NetBSD (a.out) ld.so'
2047   else
2048     library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so ${libname}.so'
2049     soname_spec='${libname}${release}.so$major'
2050     dynamic_linker='NetBSD ld.elf_so'
2051   fi
2052   shlibpath_var=LD_LIBRARY_PATH
2053   ;;
2054
2055 openbsd*)
2056   version_type=sunos
2057   if test "$with_gnu_ld" = yes; then
2058     need_lib_prefix=no
2059     need_version=no
2060   fi
2061   library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
2062   finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
2063   shlibpath_var=LD_LIBRARY_PATH
2064   ;;
2065
2066 os2*)
2067   libname_spec='$name'
2068   need_lib_prefix=no
2069   library_names_spec='$libname.dll $libname.a'
2070   dynamic_linker='OS/2 ld.exe'
2071   shlibpath_var=LIBPATH
2072   ;;
2073
2074 osf3* | osf4* | osf5*)
2075   version_type=osf
2076   need_version=no
2077   soname_spec='${libname}${release}.so'
2078   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so'
2079   shlibpath_var=LD_LIBRARY_PATH
2080   # this will be overridden with pass_all, but let us keep it just in case
2081   deplibs_check_method='file_magic COFF format alpha shared library'
2082   file_magic_cmd=/usr/bin/file
2083   file_magic_test_file=/shlib/libc.so
2084   deplibs_check_method='pass_all'
2085   sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
2086   sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
2087   ;;
2088
2089 rhapsody*)
2090   version_type=sunos
2091   library_names_spec='${libname}.so'
2092   soname_spec='${libname}.so'
2093   shlibpath_var=DYLD_LIBRARY_PATH
2094   deplibs_check_method=pass_all
2095   ;;
2096
2097 sco3.2v5*)
2098   version_type=osf
2099   soname_spec='${libname}${release}.so$major'
2100   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2101   shlibpath_var=LD_LIBRARY_PATH
2102   ;;
2103
2104 solaris*)
2105   version_type=linux
2106   need_lib_prefix=no
2107   need_version=no
2108   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2109   soname_spec='${libname}${release}.so$major'
2110   shlibpath_var=LD_LIBRARY_PATH
2111   shlibpath_overrides_runpath=yes
2112   # ldd complains unless libraries are executable
2113   postinstall_cmds='chmod +x $lib'
2114   deplibs_check_method="file_magic ELF [0-9][0-9]-bit [LM]SB dynamic lib"
2115   file_magic_cmd=/usr/bin/file
2116   file_magic_test_file=/lib/libc.so
2117   ;;
2118
2119 sunos4*)
2120   version_type=sunos
2121   library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
2122   finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
2123   shlibpath_var=LD_LIBRARY_PATH
2124   shlibpath_overrides_runpath=yes
2125   if test "$with_gnu_ld" = yes; then
2126     need_lib_prefix=no
2127   fi
2128   need_version=yes
2129   ;;
2130
2131 sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
2132   version_type=linux
2133   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2134   soname_spec='${libname}${release}.so$major'
2135   shlibpath_var=LD_LIBRARY_PATH
2136   case "$host_vendor" in
2137     sequent)
2138       file_magic_cmd='/bin/file'
2139       deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )'
2140       ;;
2141     ncr)
2142       deplibs_check_method='pass_all'
2143       ;;
2144     motorola)
2145       need_lib_prefix=no
2146       need_version=no
2147       shlibpath_overrides_runpath=no
2148       sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
2149       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]'
2150       file_magic_cmd=/usr/bin/file
2151       file_magic_test_file=`echo /usr/lib/libc.so*`
2152       ;;
2153   esac
2154   ;;
2155
2156 uts4*)
2157   version_type=linux
2158   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2159   soname_spec='${libname}${release}.so$major'
2160   shlibpath_var=LD_LIBRARY_PATH
2161   ;;
2162
2163 dgux*)
2164   version_type=linux
2165   need_lib_prefix=no
2166   need_version=no
2167   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2168   soname_spec='${libname}${release}.so$major'
2169   shlibpath_var=LD_LIBRARY_PATH
2170   ;;
2171
2172 sysv4*MP*)
2173   if test -d /usr/nec ;then
2174     version_type=linux
2175     library_names_spec='$libname.so.$versuffix $libname.so.$major $libname.so'
2176     soname_spec='$libname.so.$major'
2177     shlibpath_var=LD_LIBRARY_PATH
2178   fi
2179   ;;
2180
2181 *)
2182   dynamic_linker=no
2183   ;;
2184 esac
2185 echo "$ac_t$dynamic_linker" 1>&6
2186 test "$dynamic_linker" = no && can_build_shared=no
2187
2188 # Report the final consequences.
2189 echo "checking if libtool supports shared libraries... $can_build_shared" 1>&6
2190
2191 # Only try to build win32 dlls if AC_LIBTOOL_WIN32_DLL was used in
2192 # configure.in, otherwise build static only libraries.
2193 case "$host_os" in
2194 cygwin* | mingw* | os2*)
2195   if test x$can_build_shared = xyes; then
2196     test x$enable_win32_dll = xno && can_build_shared=no
2197     echo "checking if package supports dlls... $can_build_shared" 1>&6
2198   fi
2199 ;;
2200 esac
2201
2202 if test -n "$file_magic_test_file" && test -n "$file_magic_cmd"; then
2203   case "$deplibs_check_method" in
2204   "file_magic "*)
2205     file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
2206     if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
2207        egrep "$file_magic_regex" > /dev/null; then
2208       :
2209     else
2210       cat <<EOF 1>&2
2211
2212 *** Warning: the command libtool uses to detect shared libraries,
2213 *** $file_magic_cmd, produces output that libtool cannot recognize.
2214 *** The result is that libtool may fail to recognize shared libraries
2215 *** as such.  This will affect the creation of libtool libraries that
2216 *** depend on shared libraries, but programs linked with such libtool
2217 *** libraries will work regardless of this problem.  Nevertheless, you
2218 *** may want to report the problem to your system manager and/or to
2219 *** bug-libtool@gnu.org
2220
2221 EOF
2222     fi ;;
2223   esac
2224 fi
2225
2226 echo $ac_n "checking whether to build shared libraries... $ac_c" 1>&6
2227 test "$can_build_shared" = "no" && enable_shared=no
2228
2229 # On AIX, shared libraries and static libraries use the same namespace, and
2230 # are all built from PIC.
2231 case "$host_os" in
2232 aix3*)
2233   test "$enable_shared" = yes && enable_static=no
2234   if test -n "$RANLIB"; then
2235     archive_cmds="$archive_cmds~\$RANLIB \$lib"
2236     postinstall_cmds='$RANLIB $lib'
2237   fi
2238   ;;
2239
2240 aix4*)
2241   test "$enable_shared" = yes && enable_static=no
2242   ;;
2243 esac
2244
2245 echo "$ac_t$enable_shared" 1>&6
2246
2247 # Make sure either enable_shared or enable_static is yes.
2248 test "$enable_shared" = yes || enable_static=yes
2249
2250 echo "checking whether to build static libraries... $enable_static" 1>&6
2251
2252 if test "$hardcode_action" = relink; then
2253   # Fast installation is not supported
2254   enable_fast_install=no
2255 elif test "$shlibpath_overrides_runpath" = yes ||
2256      test "$enable_shared" = no; then
2257   # Fast installation is not necessary
2258   enable_fast_install=needless
2259 fi
2260
2261 echo $ac_n "checking for objdir... $ac_c" 1>&6
2262 rm -f .libs 2>/dev/null
2263 mkdir .libs 2>/dev/null
2264 if test -d .libs; then
2265   objdir=.libs
2266 else
2267   # MS-DOS does not allow filenames that begin with a dot.
2268   objdir=_libs
2269 fi
2270 rmdir .libs 2>/dev/null
2271 echo "$ac_t$objdir" 1>&6
2272
2273 if test "x$enable_dlopen" != xyes; then
2274   enable_dlopen=unknown
2275   enable_dlopen_self=unknown
2276   enable_dlopen_self_static=unknown
2277 else
2278 if eval "test \"`echo '$''{'lt_cv_dlopen'+set}'`\" != set"; then
2279   lt_cv_dlopen=no lt_cv_dlopen_libs=
2280 echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6
2281 echo "$progname:2248: checking for dlopen in -ldl" >&5
2282 ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'`
2283 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
2284   echo $ac_n "(cached) $ac_c" 1>&6
2285 else
2286   ac_save_LIBS="$LIBS"
2287 LIBS="-ldl  $LIBS"
2288 cat > conftest.$ac_ext <<EOF
2289 #line 2256 "ltconfig"
2290 /* Override any gcc2 internal prototype to avoid an error.  */
2291 /* We use char because int might match the return type of a gcc2
2292     builtin and then its argument prototype would still apply.  */
2293 #ifdef __cplusplus
2294 extern "C"
2295 #endif
2296 char dlopen();
2297
2298 int main() {
2299 dlopen()
2300 ; return 0; }
2301 EOF
2302 if { (eval echo $progname:2269: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2303   rm -rf conftest*
2304   eval "ac_cv_lib_$ac_lib_var=yes"
2305 else
2306   echo "$progname: failed program was:" >&5
2307   cat conftest.$ac_ext >&5
2308   rm -rf conftest*
2309   eval "ac_cv_lib_$ac_lib_var=no"
2310 fi
2311 rm -f conftest*
2312 LIBS="$ac_save_LIBS"
2313
2314 fi
2315 if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
2316   echo "$ac_t""yes" 1>&6
2317   lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"
2318 else
2319   echo "$ac_t""no" 1>&6
2320 echo $ac_n "checking for dlopen""... $ac_c" 1>&6
2321 echo "$progname:2288: checking for dlopen" >&5
2322 if eval "test \"`echo '$''{'ac_cv_func_dlopen'+set}'`\" = set"; then
2323   echo $ac_n "(cached) $ac_c" 1>&6
2324 else
2325   cat > conftest.$ac_ext <<EOF
2326 #line 2293 "ltconfig"
2327 /* System header to define __stub macros and hopefully few prototypes,
2328     which can conflict with char dlopen(); below.  */
2329 #include <assert.h>
2330 /* Override any gcc2 internal prototype to avoid an error.  */
2331 /* We use char because int might match the return type of a gcc2
2332     builtin and then its argument prototype would still apply.  */
2333 #ifdef __cplusplus
2334 extern "C"
2335 #endif
2336 char dlopen();
2337
2338 int main() {
2339
2340 /* The GNU C library defines this for functions which it implements
2341     to always fail with ENOSYS.  Some functions are actually named
2342     something starting with __ and the normal name is an alias.  */
2343 #if defined (__stub_dlopen) || defined (__stub___dlopen)
2344 choke me
2345 #else
2346 dlopen();
2347 #endif
2348
2349 ; return 0; }
2350 EOF
2351 if { (eval echo $progname:2318: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2352   rm -rf conftest*
2353   eval "ac_cv_func_dlopen=yes"
2354 else
2355   echo "$progname: failed program was:" >&5
2356   cat conftest.$ac_ext >&5
2357   rm -rf conftest*
2358   eval "ac_cv_func_dlopen=no"
2359 fi
2360 rm -f conftest*
2361 fi
2362 if eval "test \"`echo '$ac_cv_func_'dlopen`\" = yes"; then
2363   echo "$ac_t""yes" 1>&6
2364   lt_cv_dlopen="dlopen"
2365 else
2366   echo "$ac_t""no" 1>&6
2367 echo $ac_n "checking for dld_link in -ldld""... $ac_c" 1>&6
2368 echo "$progname:2335: checking for dld_link in -ldld" >&5
2369 ac_lib_var=`echo dld'_'dld_link | sed 'y%./+-%__p_%'`
2370 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
2371   echo $ac_n "(cached) $ac_c" 1>&6
2372 else
2373   ac_save_LIBS="$LIBS"
2374 LIBS="-ldld  $LIBS"
2375 cat > conftest.$ac_ext <<EOF
2376 #line 2343 "ltconfig"
2377 /* Override any gcc2 internal prototype to avoid an error.  */
2378 /* We use char because int might match the return type of a gcc2
2379     builtin and then its argument prototype would still apply.  */
2380 #ifdef __cplusplus
2381 extern "C"
2382 #endif
2383 char dld_link();
2384
2385 int main() {
2386 dld_link()
2387 ; return 0; }
2388 EOF
2389 if { (eval echo $progname:2356: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2390   rm -rf conftest*
2391   eval "ac_cv_lib_$ac_lib_var=yes"
2392 else
2393   echo "$progname: failed program was:" >&5
2394   cat conftest.$ac_ext >&5
2395   rm -rf conftest*
2396   eval "ac_cv_lib_$ac_lib_var=no"
2397 fi
2398 rm -f conftest*
2399 LIBS="$ac_save_LIBS"
2400
2401 fi
2402 if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
2403   echo "$ac_t""yes" 1>&6
2404   lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"
2405 else
2406   echo "$ac_t""no" 1>&6
2407 echo $ac_n "checking for shl_load""... $ac_c" 1>&6
2408 echo "$progname:2375: checking for shl_load" >&5
2409 if eval "test \"`echo '$''{'ac_cv_func_shl_load'+set}'`\" = set"; then
2410   echo $ac_n "(cached) $ac_c" 1>&6
2411 else
2412   cat > conftest.$ac_ext <<EOF
2413 #line 2380 "ltconfig"
2414 /* System header to define __stub macros and hopefully few prototypes,
2415     which can conflict with char shl_load(); below.  */
2416 #include <assert.h>
2417 /* Override any gcc2 internal prototype to avoid an error.  */
2418 /* We use char because int might match the return type of a gcc2
2419     builtin and then its argument prototype would still apply.  */
2420 #ifdef __cplusplus
2421 extern "C"
2422 #endif
2423 char shl_load();
2424
2425 int main() {
2426
2427 /* The GNU C library defines this for functions which it implements
2428     to always fail with ENOSYS.  Some functions are actually named
2429     something starting with __ and the normal name is an alias.  */
2430 #if defined (__stub_shl_load) || defined (__stub___shl_load)
2431 choke me
2432 #else
2433 shl_load();
2434 #endif
2435
2436 ; return 0; }
2437 EOF
2438 if { (eval echo $progname:2405: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2439   rm -rf conftest*
2440   eval "ac_cv_func_shl_load=yes"
2441 else
2442   echo "$progname: failed program was:" >&5
2443   cat conftest.$ac_ext >&5
2444   rm -rf conftest*
2445   eval "ac_cv_func_shl_load=no"
2446 fi
2447 rm -f conftest*
2448 fi
2449
2450 if eval "test \"`echo '$ac_cv_func_'shl_load`\" = yes"; then
2451   echo "$ac_t""yes" 1>&6
2452   lt_cv_dlopen="shl_load"
2453 else
2454   echo "$ac_t""no" 1>&6
2455 echo $ac_n "checking for shl_load in -ldld""... $ac_c" 1>&6
2456 echo "$progname:2423: checking for shl_load in -ldld" >&5
2457 ac_lib_var=`echo dld'_'shl_load | sed 'y%./+-%__p_%'`
2458 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
2459   echo $ac_n "(cached) $ac_c" 1>&6
2460 else
2461   ac_save_LIBS="$LIBS"
2462 LIBS="-ldld  $LIBS"
2463 cat > conftest.$ac_ext <<EOF
2464 #line 2431 "ltconfig"
2465 #include "confdefs.h"
2466 /* Override any gcc2 internal prototype to avoid an error.  */
2467 /* We use char because int might match the return type of a gcc2
2468     builtin and then its argument prototype would still apply.  */
2469 #ifdef __cplusplus
2470 extern "C"
2471 #endif
2472 char shl_load();
2473
2474 int main() {
2475 shl_load()
2476 ; return 0; }
2477 EOF
2478 if { (eval echo $progname:2445: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
2479   rm -rf conftest*
2480   eval "ac_cv_lib_$ac_lib_var=yes"
2481 else
2482   echo "$progname: failed program was:" >&5
2483   cat conftest.$ac_ext >&5
2484   rm -rf conftest*
2485   eval "ac_cv_lib_$ac_lib_var=no"
2486 fi
2487 rm -f conftest*
2488 LIBS="$ac_save_LIBS"
2489
2490 fi
2491 if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
2492   echo "$ac_t""yes" 1>&6
2493   lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"
2494 else
2495   echo "$ac_t""no" 1>&6
2496 fi
2497
2498
2499 fi
2500
2501     
2502 fi
2503
2504   
2505 fi
2506
2507
2508 fi
2509
2510 fi
2511
2512   if test "x$lt_cv_dlopen" != xno; then
2513     enable_dlopen=yes
2514   fi
2515
2516   case "$lt_cv_dlopen" in
2517   dlopen)
2518 for ac_hdr in dlfcn.h; do
2519 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
2520 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
2521 echo "$progname:2488: checking for $ac_hdr" >&5
2522 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
2523   echo $ac_n "(cached) $ac_c" 1>&6
2524 else
2525   cat > conftest.$ac_ext <<EOF
2526 #line 2493 "ltconfig"
2527 #include <$ac_hdr>
2528 int fnord = 0;
2529 EOF
2530 ac_try="$ac_compile >/dev/null 2>conftest.out"
2531 { (eval echo $progname:2498: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
2532 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
2533 if test -z "$ac_err"; then
2534   rm -rf conftest*
2535   eval "ac_cv_header_$ac_safe=yes"
2536 else
2537   echo "$ac_err" >&5
2538   echo "$progname: failed program was:" >&5
2539   cat conftest.$ac_ext >&5
2540   rm -rf conftest*
2541   eval "ac_cv_header_$ac_safe=no"
2542 fi
2543 rm -f conftest*
2544 fi
2545 if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
2546   echo "$ac_t""yes" 1>&6
2547 else
2548   echo "$ac_t""no" 1>&6
2549 fi
2550 done
2551
2552     if test "x$ac_cv_header_dlfcn_h" = xyes; then
2553       CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
2554     fi
2555     eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
2556     LIBS="$lt_cv_dlopen_libs $LIBS"
2557
2558   echo $ac_n "checking whether a program can dlopen itself""... $ac_c" 1>&6
2559 echo "$progname:2526: checking whether a program can dlopen itself" >&5
2560 if test "${lt_cv_dlopen_self+set}" = set; then
2561   echo $ac_n "(cached) $ac_c" 1>&6
2562 else
2563   if test "$cross_compiling" = yes; then
2564     lt_cv_dlopen_self=cross
2565   else
2566     cat > conftest.c <<EOF
2567 #line 2534 "ltconfig"
2568
2569 #if HAVE_DLFCN_H
2570 #include <dlfcn.h>
2571 #endif
2572
2573 #include <stdio.h>
2574
2575 #ifdef RTLD_GLOBAL
2576 # define LTDL_GLOBAL    RTLD_GLOBAL
2577 #else
2578 # ifdef DL_GLOBAL
2579 #  define LTDL_GLOBAL   DL_GLOBAL
2580 # else
2581 #  define LTDL_GLOBAL   0
2582 # endif
2583 #endif
2584
2585 /* We may have to define LTDL_LAZY_OR_NOW in the command line if we
2586    find out it does not work in some platform. */
2587 #ifndef LTDL_LAZY_OR_NOW
2588 # ifdef RTLD_LAZY
2589 #  define LTDL_LAZY_OR_NOW      RTLD_LAZY
2590 # else
2591 #  ifdef DL_LAZY
2592 #   define LTDL_LAZY_OR_NOW     DL_LAZY
2593 #  else
2594 #   ifdef RTLD_NOW
2595 #    define LTDL_LAZY_OR_NOW    RTLD_NOW
2596 #   else
2597 #    ifdef DL_NOW
2598 #     define LTDL_LAZY_OR_NOW   DL_NOW
2599 #    else
2600 #     define LTDL_LAZY_OR_NOW   0
2601 #    endif
2602 #   endif
2603 #  endif
2604 # endif
2605 #endif
2606
2607 fnord() { int i=42;}
2608 main() { void *self, *ptr1, *ptr2; self=dlopen(0,LTDL_GLOBAL|LTDL_LAZY_OR_NOW);
2609     if(self) { ptr1=dlsym(self,"fnord"); ptr2=dlsym(self,"_fnord");
2610                if(ptr1 || ptr2) { dlclose(self); exit(0); } } exit(1); } 
2611
2612 EOF
2613 if { (eval echo $progname:2580: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
2614 then
2615   lt_cv_dlopen_self=yes
2616 else
2617   echo "$progname: failed program was:" >&5
2618   cat conftest.$ac_ext >&5
2619   rm -fr conftest*
2620   lt_cv_dlopen_self=no
2621 fi
2622 rm -fr conftest*
2623 fi
2624
2625 fi
2626
2627 echo "$ac_t""$lt_cv_dlopen_self" 1>&6
2628
2629   if test "$lt_cv_dlopen_self" = yes; then
2630     LDFLAGS="$LDFLAGS $link_static_flag"
2631   echo $ac_n "checking whether a statically linked program can dlopen itself""... $ac_c" 1>&6
2632 echo "$progname:2599: checking whether a statically linked program can dlopen itself" >&5
2633 if test "${lt_cv_dlopen_self_static+set}" = set; then
2634   echo $ac_n "(cached) $ac_c" 1>&6
2635 else
2636   if test "$cross_compiling" = yes; then
2637     lt_cv_dlopen_self_static=cross
2638   else
2639     cat > conftest.c <<EOF
2640 #line 2607 "ltconfig"
2641
2642 #if HAVE_DLFCN_H
2643 #include <dlfcn.h>
2644 #endif
2645
2646 #include <stdio.h>
2647
2648 #ifdef RTLD_GLOBAL
2649 # define LTDL_GLOBAL    RTLD_GLOBAL
2650 #else
2651 # ifdef DL_GLOBAL
2652 #  define LTDL_GLOBAL   DL_GLOBAL
2653 # else
2654 #  define LTDL_GLOBAL   0
2655 # endif
2656 #endif
2657
2658 /* We may have to define LTDL_LAZY_OR_NOW in the command line if we
2659    find out it does not work in some platform. */
2660 #ifndef LTDL_LAZY_OR_NOW
2661 # ifdef RTLD_LAZY
2662 #  define LTDL_LAZY_OR_NOW      RTLD_LAZY
2663 # else
2664 #  ifdef DL_LAZY
2665 #   define LTDL_LAZY_OR_NOW     DL_LAZY
2666 #  else
2667 #   ifdef RTLD_NOW
2668 #    define LTDL_LAZY_OR_NOW    RTLD_NOW
2669 #   else
2670 #    ifdef DL_NOW
2671 #     define LTDL_LAZY_OR_NOW   DL_NOW
2672 #    else
2673 #     define LTDL_LAZY_OR_NOW   0
2674 #    endif
2675 #   endif
2676 #  endif
2677 # endif
2678 #endif
2679
2680 fnord() { int i=42;}
2681 main() { void *self, *ptr1, *ptr2; self=dlopen(0,LTDL_GLOBAL|LTDL_LAZY_OR_NOW);
2682     if(self) { ptr1=dlsym(self,"fnord"); ptr2=dlsym(self,"_fnord");
2683     if(ptr1 || ptr2) { dlclose(self); exit(0); } } exit(1); } 
2684
2685 EOF
2686 if { (eval echo $progname:2653: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
2687 then
2688   lt_cv_dlopen_self_static=yes
2689 else
2690   echo "$progname: failed program was:" >&5
2691   cat conftest.$ac_ext >&5
2692   rm -fr conftest*
2693   lt_cv_dlopen_self_static=no
2694 fi
2695 rm -fr conftest*
2696 fi
2697
2698 fi
2699
2700 echo "$ac_t""$lt_cv_dlopen_self_static" 1>&6
2701 fi
2702     ;;
2703   esac
2704
2705   case "$lt_cv_dlopen_self" in
2706   yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
2707   *) enable_dlopen_self=unknown ;;
2708   esac
2709
2710   case "$lt_cv_dlopen_self_static" in
2711   yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
2712   *) enable_dlopen_self_static=unknown ;;
2713   esac
2714 fi
2715
2716 # Copy echo and quote the copy, instead of the original, because it is
2717 # used later.
2718 ltecho="$echo"
2719 if test "X$ltecho" = "X$CONFIG_SHELL $0 --fallback-echo"; then
2720    ltecho="$CONFIG_SHELL \$0 --fallback-echo"
2721 fi
2722 LTSHELL="$SHELL"
2723
2724 LTCONFIG_VERSION="$VERSION"
2725
2726 # Only quote variables if we're using ltmain.sh.
2727 case "$ltmain" in
2728 *.sh)
2729   # Now quote all the things that may contain metacharacters.
2730   for var in ltecho old_CC old_CFLAGS old_CPPFLAGS \
2731     old_LD old_LDFLAGS old_LIBS \
2732     old_NM old_RANLIB old_LN_S old_DLLTOOL old_OBJDUMP old_AS \
2733     AR CC LD LN_S NM LTSHELL LTCONFIG_VERSION \
2734     reload_flag reload_cmds wl \
2735     pic_flag link_static_flag no_builtin_flag export_dynamic_flag_spec \
2736     thread_safe_flag_spec whole_archive_flag_spec libname_spec \
2737     library_names_spec soname_spec \
2738     RANLIB old_archive_cmds old_archive_from_new_cmds old_postinstall_cmds \
2739     old_postuninstall_cmds archive_cmds archive_expsym_cmds postinstall_cmds postuninstall_cmds \
2740     file_magic_cmd export_symbols_cmds deplibs_check_method allow_undefined_flag no_undefined_flag \
2741     finish_cmds finish_eval global_symbol_pipe global_symbol_to_cdecl \
2742     hardcode_libdir_flag_spec hardcode_libdir_separator  \
2743     sys_lib_search_path_spec sys_lib_dlsearch_path_spec \
2744     compiler_c_o compiler_o_lo need_locks exclude_expsyms include_expsyms; do
2745
2746     case "$var" in
2747     reload_cmds | old_archive_cmds | old_archive_from_new_cmds | \
2748     old_postinstall_cmds | old_postuninstall_cmds | \
2749     export_symbols_cmds | archive_cmds | archive_expsym_cmds | \
2750     postinstall_cmds | postuninstall_cmds | \
2751     finish_cmds | sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
2752       # Double-quote double-evaled strings.
2753       eval "$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
2754       ;;
2755     *)
2756       eval "$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
2757       ;;
2758     esac
2759   done
2760
2761   case "$ltecho" in
2762   *'\$0 --fallback-echo"')
2763     ltecho=`$echo "X$ltecho" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
2764     ;;
2765   esac
2766
2767   trap "$rm \"$ofile\"; exit 1" 1 2 15
2768   echo "creating $ofile"
2769   $rm "$ofile"
2770   cat <<EOF > "$ofile"
2771 #! $SHELL
2772
2773 # `$echo "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
2774 # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
2775 # NOTE: Changes made to this file will be lost: look at ltconfig or ltmain.sh.
2776 #
2777 # Copyright (C) 1996-1999 Free Software Foundation, Inc.
2778 # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
2779 #
2780 # This program is free software; you can redistribute it and/or modify
2781 # it under the terms of the GNU General Public License as published by
2782 # the Free Software Foundation; either version 2 of the License, or
2783 # (at your option) any later version.
2784 #
2785 # This program is distributed in the hope that it will be useful, but
2786 # WITHOUT ANY WARRANTY; without even the implied warranty of
2787 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
2788 # General Public License for more details.
2789 #
2790 # You should have received a copy of the GNU General Public License
2791 # along with this program; if not, write to the Free Software
2792 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2793 #
2794 # As a special exception to the GNU General Public License, if you
2795 # distribute this file as part of a program that contains a
2796 # configuration script generated by Autoconf, you may include it under
2797 # the same distribution terms that you use for the rest of that program.
2798
2799 # Sed that helps us avoid accidentally triggering echo(1) options like -n.
2800 Xsed="sed -e s/^X//"
2801
2802 # The HP-UX ksh and POSIX shell print the target directory to stdout
2803 # if CDPATH is set.
2804 if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
2805
2806 ### BEGIN LIBTOOL CONFIG
2807 EOF
2808   cfgfile="$ofile"
2809   ;;
2810
2811 *)
2812   # Double-quote the variables that need it (for aesthetics).
2813   for var in old_CC old_CFLAGS old_CPPFLAGS \
2814     old_LD old_LDFLAGS old_LIBS \
2815     old_NM old_RANLIB old_LN_S old_DLLTOOL old_OBJDUMP old_AS; do
2816     eval "$var=\\\"\$var\\\""
2817   done
2818
2819   # Just create a config file.
2820   cfgfile="$ofile.cfg"
2821   trap "$rm \"$cfgfile\"; exit 1" 1 2 15
2822   echo "creating $cfgfile"
2823   $rm "$cfgfile"
2824   cat <<EOF > "$cfgfile"
2825 # `$echo "$cfgfile" | sed 's%^.*/%%'` - Libtool configuration file.
2826 # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
2827 EOF
2828   ;;
2829 esac
2830
2831 cat <<EOF >> "$cfgfile"
2832 # Libtool was configured as follows, on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
2833 #
2834 # CC=$old_CC CFLAGS=$old_CFLAGS CPPFLAGS=$old_CPPFLAGS \\
2835 # LD=$old_LD LDFLAGS=$old_LDFLAGS LIBS=$old_LIBS \\
2836 # NM=$old_NM RANLIB=$old_RANLIB LN_S=$old_LN_S \\
2837 # DLLTOOL=$old_DLLTOOL OBJDUMP=$old_OBJDUMP AS=$old_AS \\
2838 #   $0$ltconfig_args
2839 #
2840 # Compiler and other test output produced by $progname, useful for
2841 # debugging $progname, is in ./config.log if it exists.
2842
2843 # The version of $progname that generated this script.
2844 LTCONFIG_VERSION=$LTCONFIG_VERSION
2845
2846 # Shell to use when invoking shell scripts.
2847 SHELL=$LTSHELL
2848
2849 # Whether or not to build shared libraries.
2850 build_libtool_libs=$enable_shared
2851
2852 # Whether or not to build static libraries.
2853 build_old_libs=$enable_static
2854
2855 # Whether or not to optimize for fast installation.
2856 fast_install=$enable_fast_install
2857
2858 # The host system.
2859 host_alias=$host_alias
2860 host=$host
2861
2862 # An echo program that does not interpret backslashes.
2863 echo=$ltecho
2864
2865 # The archiver.
2866 AR=$AR
2867
2868 # The default C compiler.
2869 CC=$CC
2870
2871 # The linker used to build libraries.
2872 LD=$LD
2873
2874 # Whether we need hard or soft links.
2875 LN_S=$LN_S
2876
2877 # A BSD-compatible nm program.
2878 NM=$NM
2879
2880 # Used on cygwin: DLL creation program.
2881 DLLTOOL="$DLLTOOL"
2882
2883 # Used on cygwin: object dumper.
2884 OBJDUMP="$OBJDUMP"
2885
2886 # Used on cygwin: assembler.
2887 AS="$AS"
2888
2889 # The name of the directory that contains temporary libtool files.
2890 objdir=$objdir
2891
2892 # How to create reloadable object files.
2893 reload_flag=$reload_flag
2894 reload_cmds=$reload_cmds
2895
2896 # How to pass a linker flag through the compiler.
2897 wl=$wl
2898
2899 # Object file suffix (normally "o").
2900 objext="$objext"
2901
2902 # Old archive suffix (normally "a").
2903 libext="$libext"
2904
2905 # Executable file suffix (normally "").
2906 exeext="$exeext"
2907
2908 # Additional compiler flags for building library objects.
2909 pic_flag=$pic_flag
2910
2911 # Does compiler simultaneously support -c and -o options?
2912 compiler_c_o=$compiler_c_o
2913
2914 # Can we write directly to a .lo ?
2915 compiler_o_lo=$compiler_o_lo
2916
2917 # Must we lock files when doing compilation ?
2918 need_locks=$need_locks
2919
2920 # Do we need the lib prefix for modules?
2921 need_lib_prefix=$need_lib_prefix
2922
2923 # Do we need a version for libraries?
2924 need_version=$need_version
2925
2926 # Whether dlopen is supported.
2927 dlopen=$enable_dlopen
2928
2929 # Whether dlopen of programs is supported.
2930 dlopen_self=$enable_dlopen_self
2931
2932 # Whether dlopen of statically linked programs is supported.
2933 dlopen_self_static=$enable_dlopen_self_static
2934
2935 # Compiler flag to prevent dynamic linking.
2936 link_static_flag=$link_static_flag
2937
2938 # Compiler flag to turn off builtin functions.
2939 no_builtin_flag=$no_builtin_flag
2940
2941 # Compiler flag to allow reflexive dlopens.
2942 export_dynamic_flag_spec=$export_dynamic_flag_spec
2943
2944 # Compiler flag to generate shared objects directly from archives.
2945 whole_archive_flag_spec=$whole_archive_flag_spec
2946
2947 # Compiler flag to generate thread-safe objects.
2948 thread_safe_flag_spec=$thread_safe_flag_spec
2949
2950 # Library versioning type.
2951 version_type=$version_type
2952
2953 # Format of library name prefix.
2954 libname_spec=$libname_spec
2955
2956 # List of archive names.  First name is the real one, the rest are links.
2957 # The last name is the one that the linker finds with -lNAME.
2958 library_names_spec=$library_names_spec
2959
2960 # The coded name of the library, if different from the real name.
2961 soname_spec=$soname_spec
2962
2963 # Commands used to build and install an old-style archive.
2964 RANLIB=$RANLIB
2965 old_archive_cmds=$old_archive_cmds
2966 old_postinstall_cmds=$old_postinstall_cmds
2967 old_postuninstall_cmds=$old_postuninstall_cmds
2968
2969 # Create an old-style archive from a shared archive.
2970 old_archive_from_new_cmds=$old_archive_from_new_cmds
2971
2972 # Commands used to build and install a shared archive.
2973 archive_cmds=$archive_cmds
2974 archive_expsym_cmds=$archive_expsym_cmds
2975 postinstall_cmds=$postinstall_cmds
2976 postuninstall_cmds=$postuninstall_cmds
2977
2978 # Method to check whether dependent libraries are shared objects.
2979 deplibs_check_method=$deplibs_check_method
2980
2981 # Command to use when deplibs_check_method == file_magic.
2982 file_magic_cmd=$file_magic_cmd
2983
2984 # Flag that allows shared libraries with undefined symbols to be built.
2985 allow_undefined_flag=$allow_undefined_flag
2986
2987 # Flag that forces no undefined symbols.
2988 no_undefined_flag=$no_undefined_flag
2989
2990 # Commands used to finish a libtool library installation in a directory.
2991 finish_cmds=$finish_cmds
2992
2993 # Same as above, but a single script fragment to be evaled but not shown.
2994 finish_eval=$finish_eval
2995
2996 # Take the output of nm and produce a listing of raw symbols and C names.
2997 global_symbol_pipe=$global_symbol_pipe
2998
2999 # Transform the output of nm in a proper C declaration
3000 global_symbol_to_cdecl=$global_symbol_to_cdecl
3001
3002 # This is the shared library runtime path variable.
3003 runpath_var=$runpath_var
3004
3005 # This is the shared library path variable.
3006 shlibpath_var=$shlibpath_var
3007
3008 # Is shlibpath searched before the hard-coded library search path?
3009 shlibpath_overrides_runpath=$shlibpath_overrides_runpath
3010
3011 # How to hardcode a shared library path into an executable.
3012 hardcode_action=$hardcode_action
3013
3014 # Flag to hardcode \$libdir into a binary during linking.
3015 # This must work even if \$libdir does not exist.
3016 hardcode_libdir_flag_spec=$hardcode_libdir_flag_spec
3017
3018 # Whether we need a single -rpath flag with a separated argument.
3019 hardcode_libdir_separator=$hardcode_libdir_separator
3020
3021 # Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
3022 # resulting binary.
3023 hardcode_direct=$hardcode_direct
3024
3025 # Set to yes if using the -LDIR flag during linking hardcodes DIR into the
3026 # resulting binary.
3027 hardcode_minus_L=$hardcode_minus_L
3028
3029 # Flag to force default rpath, to bypass effect of -L
3030 hardcode_default_flag='$hardcode_default_flag'
3031
3032 # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
3033 # the resulting binary.
3034 hardcode_shlibpath_var=$hardcode_shlibpath_var
3035
3036 # Compile-time system search path for libraries
3037 sys_lib_search_path_spec=$sys_lib_search_path_spec
3038
3039 # Run-time system search path for libraries
3040 sys_lib_dlsearch_path_spec=$sys_lib_dlsearch_path_spec
3041
3042 # Fix the shell variable \$srcfile for the compiler.
3043 fix_srcfile_path="$fix_srcfile_path"
3044
3045 # Set to yes if exported symbols are required.
3046 always_export_symbols=$always_export_symbols
3047
3048 # Set to use export list when linking programs.
3049 link_export='$link_export'
3050 link_export_all='$link_export_all'
3051
3052 # The commands to list exported symbols.
3053 export_symbols_cmds=$export_symbols_cmds
3054
3055 # Symbols that should not be listed in the preloaded symbols.
3056 exclude_expsyms=$exclude_expsyms
3057
3058 # Symbols that must always be exported.
3059 include_expsyms=$include_expsyms
3060
3061 EOF
3062
3063 case "$ltmain" in
3064 *.sh)
3065   echo '### END LIBTOOL CONFIG' >> "$ofile"
3066   echo >> "$ofile"
3067   case "$host_os" in
3068   aix3*)
3069     cat <<\EOF >> "$ofile"
3070
3071 # AIX sometimes has problems with the GCC collect2 program.  For some
3072 # reason, if we set the COLLECT_NAMES environment variable, the problems
3073 # vanish in a puff of smoke.
3074 if test "X${COLLECT_NAMES+set}" != Xset; then
3075   COLLECT_NAMES=
3076   export COLLECT_NAMES
3077 fi
3078 EOF
3079     ;;
3080   esac
3081
3082   # Append the ltmain.sh script.
3083   sed '$q' "$ltmain" >> "$ofile" || (rm -f "$ofile"; exit 1)
3084   # We use sed instead of cat because bash on DJGPP gets confused if
3085   # if finds mixed CR/LF and LF-only lines.  Since sed operates in
3086   # text mode, it properly converts lines to CR/LF.  This bash problem
3087   # is reportedly fixed, but why not run on old versions too?
3088
3089   chmod +x "$ofile"
3090   ;;
3091
3092 *)
3093   # Compile the libtool program.
3094   echo "FIXME: would compile $ltmain"
3095   ;;
3096 esac
3097
3098 test -n "$cache_file" || exit 0
3099
3100 # AC_CACHE_SAVE
3101 trap '' 1 2 15
3102 cat > confcache <<\EOF
3103 # This file is a shell script that caches the results of configure
3104 # tests run on this system so they can be shared between configure
3105 # scripts and configure runs.  It is not useful on other systems.
3106 # If it contains results you don't want to keep, you may remove or edit it.
3107 #
3108 # By default, configure uses ./config.cache as the cache file,
3109 # creating it if it does not exist already.  You can give configure
3110 # the --cache-file=FILE option to use a different cache file; that is
3111 # what configure does when it calls configure scripts in
3112 # subdirectories, so they share the cache.
3113 # Giving --cache-file=/dev/null disables caching, for debugging configure.
3114 # config.status only pays attention to the cache file if you give it the
3115 # --recheck option to rerun configure.
3116 #
3117 EOF
3118 # The following way of writing the cache mishandles newlines in values,
3119 # but we know of no workaround that is simple, portable, and efficient.
3120 # So, don't put newlines in cache variables' values.
3121 # Ultrix sh set writes to stderr and can't be redirected directly,
3122 # and sets the high bit in the cache file unless we assign to the vars.
3123 (set) 2>&1 |
3124   case `(ac_space=' '; set | grep ac_space) 2>&1` in
3125   *ac_space=\ *)
3126     # `set' does not quote correctly, so add quotes (double-quote substitution
3127     # turns \\\\ into \\, and sed turns \\ into \).
3128     sed -n \
3129       -e "s/'/'\\\\''/g" \
3130       -e "s/^\\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\\)=\\(.*\\)/\\1=\${\\1='\\2'}/p"
3131     ;;
3132   *)
3133     # `set' quotes correctly as required by POSIX, so do not add quotes.
3134     sed -n -e 's/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1=\2}/p'
3135     ;;
3136   esac >> confcache
3137 if cmp -s $cache_file confcache; then
3138   :
3139 else
3140   if test -w $cache_file; then
3141     echo "updating cache $cache_file"
3142     cat confcache > $cache_file
3143   else
3144     echo "not updating unwritable cache $cache_file"
3145   fi
3146 fi
3147 rm -f confcache
3148
3149 exit 0
3150
3151 # Local Variables:
3152 # mode:shell-script
3153 # sh-indentation:2
3154 # End: