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