Improve SNMP include-file location detection; No longer produces -I/usr/include
[freeradius.git] / aclocal.m4
1 # libtool.m4 - Configure libtool for the host system. -*-Shell-script-*-
2 ## Copyright 1996, 1997, 1998, 1999, 2000, 2001
3 ## Free Software Foundation, Inc.
4 ## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 2 of the License, or
9 ## (at your option) any later version.
10 ##
11 ## This program is distributed in the hope that it will be useful, but
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 ## General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 ##
20 ## As a special exception to the GNU General Public License, if you
21 ## distribute this file as part of a program that contains a
22 ## configuration script generated by Autoconf, you may include it under
23 ## the same distribution terms that you use for the rest of that program.
24 ##
25 ## $Id$
26
27 # serial 46 AC_PROG_LIBTOOL
28
29 AC_DEFUN([AC_PROG_LIBTOOL],
30 [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
31
32 # This can be used to rebuild libtool when needed
33 LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
34
35 # Prevent multiple expansion
36 define([AC_PROG_LIBTOOL], [])
37 ])
38
39 AC_DEFUN([AC_LIBTOOL_SETUP],
40 [AC_PREREQ(2.13)dnl
41 AC_REQUIRE([AC_ENABLE_SHARED])dnl
42 AC_REQUIRE([AC_ENABLE_STATIC])dnl
43 AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
44 AC_REQUIRE([AC_CANONICAL_HOST])dnl
45 AC_REQUIRE([AC_CANONICAL_BUILD])dnl
46 AC_REQUIRE([AC_PROG_CC])dnl
47 AC_REQUIRE([AC_PROG_LD])dnl
48 AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl
49 AC_REQUIRE([AC_PROG_NM])dnl
50 AC_REQUIRE([AC_PROG_LN_S])dnl
51 AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl
52 AC_REQUIRE([AC_OBJEXT])dnl
53 AC_REQUIRE([AC_EXEEXT])dnl
54 dnl
55
56 _LT_AC_PROG_ECHO_BACKSLASH
57 # Only perform the check for file, if the check method requires it
58 case $deplibs_check_method in
59 file_magic*)
60   if test "$file_magic_cmd" = '$MAGIC_CMD'; then
61     AC_PATH_MAGIC
62   fi
63   ;;
64 esac
65
66 AC_CHECK_TOOL(RANLIB, ranlib, :)
67 AC_CHECK_TOOL(STRIP, strip, :)
68
69 ifdef([AC_PROVIDE_AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
70 ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
71 enable_win32_dll=yes, enable_win32_dll=no)
72
73 AC_ARG_ENABLE(libtool-lock,
74   [  --disable-libtool-lock  avoid locking (might break parallel builds)])
75 test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
76
77 # Some flags need to be propagated to the compiler or linker for good
78 # libtool support.
79 case $host in
80 *-*-irix6*)
81   # Find out which ABI we are using.
82   echo '[#]line __oline__ "configure"' > conftest.$ac_ext
83   if AC_TRY_EVAL(ac_compile); then
84     case `/usr/bin/file conftest.$ac_objext` in
85     *32-bit*)
86       LD="${LD-ld} -32"
87       ;;
88     *N32*)
89       LD="${LD-ld} -n32"
90       ;;
91     *64-bit*)
92       LD="${LD-ld} -64"
93       ;;
94     esac
95   fi
96   rm -rf conftest*
97   ;;
98
99 *-*-sco3.2v5*)
100   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
101   SAVE_CFLAGS="$CFLAGS"
102   CFLAGS="$CFLAGS -belf"
103   AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
104     [AC_LANG_SAVE
105      AC_LANG_C
106      AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
107      AC_LANG_RESTORE])
108   if test x"$lt_cv_cc_needs_belf" != x"yes"; then
109     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
110     CFLAGS="$SAVE_CFLAGS"
111   fi
112   ;;
113
114 ifdef([AC_PROVIDE_AC_LIBTOOL_WIN32_DLL],
115 [*-*-cygwin* | *-*-mingw* | *-*-pw32*)
116   AC_CHECK_TOOL(DLLTOOL, dlltool, false)
117   AC_CHECK_TOOL(AS, as, false)
118   AC_CHECK_TOOL(OBJDUMP, objdump, false)
119
120   # recent cygwin and mingw systems supply a stub DllMain which the user
121   # can override, but on older systems we have to supply one
122   AC_CACHE_CHECK([if libtool should supply DllMain function], lt_cv_need_dllmain,
123     [AC_TRY_LINK([],
124       [extern int __attribute__((__stdcall__)) DllMain(void*, int, void*);
125       DllMain (0, 0, 0);],
126       [lt_cv_need_dllmain=no],[lt_cv_need_dllmain=yes])])
127
128   case $host/$CC in
129   *-*-cygwin*/gcc*-mno-cygwin*|*-*-mingw*)
130     # old mingw systems require "-dll" to link a DLL, while more recent ones
131     # require "-mdll"
132     SAVE_CFLAGS="$CFLAGS"
133     CFLAGS="$CFLAGS -mdll"
134     AC_CACHE_CHECK([how to link DLLs], lt_cv_cc_dll_switch,
135       [AC_TRY_LINK([], [], [lt_cv_cc_dll_switch=-mdll],[lt_cv_cc_dll_switch=-dll])])
136     CFLAGS="$SAVE_CFLAGS" ;;
137   *-*-cygwin* | *-*-pw32*)
138     # cygwin systems need to pass --dll to the linker, and not link
139     # crt.o which will require a WinMain@16 definition.
140     lt_cv_cc_dll_switch="-Wl,--dll -nostartfiles" ;;
141   esac
142   ;;
143   ])
144 esac
145
146 _LT_AC_LTCONFIG_HACK
147
148 ])
149
150 # AC_LIBTOOL_HEADER_ASSERT
151 # ------------------------
152 AC_DEFUN([AC_LIBTOOL_HEADER_ASSERT],
153 [AC_CACHE_CHECK([whether $CC supports assert without backlinking],
154     [lt_cv_func_assert_works],
155     [case $host in
156     *-*-solaris*)
157       if test "$GCC" = yes && test "$with_gnu_ld" != yes; then
158         case `$CC --version 2>/dev/null` in
159         [[12]].*) lt_cv_func_assert_works=no ;;
160         *)        lt_cv_func_assert_works=yes ;;
161         esac
162       fi
163       ;;
164     esac])
165
166 if test "x$lt_cv_func_assert_works" = xyes; then
167   AC_CHECK_HEADERS(assert.h)
168 fi
169 ])# AC_LIBTOOL_HEADER_ASSERT
170
171 # _LT_AC_CHECK_DLFCN
172 # --------------------
173 AC_DEFUN([_LT_AC_CHECK_DLFCN],
174 [AC_CHECK_HEADERS(dlfcn.h)
175 ])# _LT_AC_CHECK_DLFCN
176
177 # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
178 # ---------------------------------
179 AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE],
180 [AC_REQUIRE([AC_CANONICAL_HOST])
181 AC_REQUIRE([AC_PROG_NM])
182 AC_REQUIRE([AC_OBJEXT])
183 # Check for command to grab the raw symbol name followed by C symbol from nm.
184 AC_MSG_CHECKING([command to parse $NM output])
185 AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [dnl
186
187 # These are sane defaults that work on at least a few old systems.
188 # [They come from Ultrix.  What could be older than Ultrix?!! ;)]
189
190 # Character class describing NM global symbol codes.
191 symcode='[[BCDEGRST]]'
192
193 # Regexp to match symbols that can be accessed directly from C.
194 sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
195
196 # Transform the above into a raw symbol and a C symbol.
197 symxfrm='\1 \2\3 \3'
198
199 # Transform an extracted symbol line into a proper C declaration
200 lt_cv_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern char \1;/p'"
201
202 # Transform an extracted symbol line into symbol name and symbol address
203 lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
204
205 # Define system-specific variables.
206 case $host_os in
207 aix*)
208   symcode='[[BCDT]]'
209   ;;
210 cygwin* | mingw* | pw32*)
211   symcode='[[ABCDGISTW]]'
212   ;;
213 hpux*) # Its linker distinguishes data from code symbols
214   lt_cv_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern char \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
215   lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/  {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (lt_ptr) \&\2},/p'"
216   ;;
217 irix*)
218   symcode='[[BCDEGRST]]'
219   ;;
220 solaris* | sysv5*)
221   symcode='[[BDT]]'
222   ;;
223 sysv4)
224   symcode='[[DFNSTU]]'
225   ;;
226 esac
227
228 # Handle CRLF in mingw tool chain
229 opt_cr=
230 case $host_os in
231 mingw*)
232   opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp
233   ;;
234 esac
235
236 # If we're using GNU nm, then use its standard symbol codes.
237 if $NM -V 2>&1 | egrep '(GNU|with BFD)' > /dev/null; then
238   symcode='[[ABCDGISTW]]'
239 fi
240
241 # Try without a prefix undercore, then with it.
242 for ac_symprfx in "" "_"; do
243
244   # Write the raw and C identifiers.
245 lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[        ]]\($symcode$symcode*\)[[       ]][[    ]]*\($ac_symprfx\)$sympat$opt_cr$/$symxfrm/p'"
246
247   # Check to see that the pipe works correctly.
248   pipe_works=no
249   rm -f conftest*
250   cat > conftest.$ac_ext <<EOF
251 #ifdef __cplusplus
252 extern "C" {
253 #endif
254 char nm_test_var;
255 void nm_test_func(){}
256 #ifdef __cplusplus
257 }
258 #endif
259 int main(){nm_test_var='a';nm_test_func();return(0);}
260 EOF
261
262   if AC_TRY_EVAL(ac_compile); then
263     # Now try to grab the symbols.
264     nlist=conftest.nm
265     if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then
266       # Try sorting and uniquifying the output.
267       if sort "$nlist" | uniq > "$nlist"T; then
268         mv -f "$nlist"T "$nlist"
269       else
270         rm -f "$nlist"T
271       fi
272
273       # Make sure that we snagged all the symbols we need.
274       if egrep ' nm_test_var$' "$nlist" >/dev/null; then
275         if egrep ' nm_test_func$' "$nlist" >/dev/null; then
276           cat <<EOF > conftest.$ac_ext
277 #ifdef __cplusplus
278 extern "C" {
279 #endif
280
281 EOF
282           # Now generate the symbol file.
283           eval "$lt_cv_global_symbol_to_cdecl"' < "$nlist" >> conftest.$ac_ext'
284
285           cat <<EOF >> conftest.$ac_ext
286 #if defined (__STDC__) && __STDC__
287 # define lt_ptr void *
288 #else
289 # define lt_ptr char *
290 # define const
291 #endif
292
293 /* The mapping between symbol names and symbols. */
294 const struct {
295   const char *name;
296   lt_ptr address;
297 }
298 lt_preloaded_symbols[[]] =
299 {
300 EOF
301           sed "s/^$symcode$symcode* \(.*\) \(.*\)$/  {\"\2\", (lt_ptr) \&\2},/" < "$nlist" >> conftest.$ac_ext
302           cat <<\EOF >> conftest.$ac_ext
303   {0, (lt_ptr) 0}
304 };
305
306 #ifdef __cplusplus
307 }
308 #endif
309 EOF
310           # Now try linking the two files.
311           mv conftest.$ac_objext conftstm.$ac_objext
312           save_LIBS="$LIBS"
313           save_CFLAGS="$CFLAGS"
314           LIBS="conftstm.$ac_objext"
315           CFLAGS="$CFLAGS$no_builtin_flag"
316           if AC_TRY_EVAL(ac_link) && test -s conftest; then
317             pipe_works=yes
318           fi
319           LIBS="$save_LIBS"
320           CFLAGS="$save_CFLAGS"
321         else
322           echo "cannot find nm_test_func in $nlist" >&AC_FD_CC
323         fi
324       else
325         echo "cannot find nm_test_var in $nlist" >&AC_FD_CC
326       fi
327     else
328       echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AC_FD_CC
329     fi
330   else
331     echo "$progname: failed program was:" >&AC_FD_CC
332     cat conftest.$ac_ext >&5
333   fi
334   rm -f conftest* conftst*
335
336   # Do not use the global_symbol_pipe unless it works.
337   if test "$pipe_works" = yes; then
338     break
339   else
340     lt_cv_sys_global_symbol_pipe=
341   fi
342 done
343 ])
344 global_symbol_pipe="$lt_cv_sys_global_symbol_pipe"
345 if test -z "$lt_cv_sys_global_symbol_pipe"; then
346   global_symbol_to_cdecl=
347   global_symbol_to_c_name_address=
348 else
349   global_symbol_to_cdecl="$lt_cv_global_symbol_to_cdecl"
350   global_symbol_to_c_name_address="$lt_cv_global_symbol_to_c_name_address"
351 fi
352 if test -z "$global_symbol_pipe$global_symbol_to_cdec$global_symbol_to_c_name_address";
353 then
354   AC_MSG_RESULT(failed)
355 else
356   AC_MSG_RESULT(ok)
357 fi
358 ]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
359
360 # _LT_AC_LIBTOOL_SYS_PATH_SEPARATOR
361 # ---------------------------------
362 AC_DEFUN([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR],
363 [# Find the correct PATH separator.  Usually this is `:', but
364 # DJGPP uses `;' like DOS.
365 if test "X${PATH_SEPARATOR+set}" != Xset; then
366   UNAME=${UNAME-`uname 2>/dev/null`}
367   case X$UNAME in
368     *-DOS) lt_cv_sys_path_separator=';' ;;
369     *)     lt_cv_sys_path_separator=':' ;;
370   esac
371   PATH_SEPARATOR=$lt_cv_sys_path_separator
372 fi
373 ])# _LT_AC_LIBTOOL_SYS_PATH_SEPARATOR
374
375 # _LT_AC_PROG_ECHO_BACKSLASH
376 # --------------------------
377 # Add some code to the start of the generated configure script which
378 # will find an echo command which doesn't interpret backslashes.
379 AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH],
380 [ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)],
381                               [AC_DIVERT_PUSH(NOTICE)])
382 _LT_AC_LIBTOOL_SYS_PATH_SEPARATOR
383
384 # Check that we are running under the correct shell.
385 SHELL=${CONFIG_SHELL-/bin/sh}
386
387 case X$ECHO in
388 X*--fallback-echo)
389   # Remove one level of quotation (which was required for Make).
390   ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
391   ;;
392 esac
393
394 echo=${ECHO-echo}
395 if test "X[$]1" = X--no-reexec; then
396   # Discard the --no-reexec flag, and continue.
397   shift
398 elif test "X[$]1" = X--fallback-echo; then
399   # Avoid inline document here, it may be left over
400   :
401 elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
402   # Yippee, $echo works!
403   :
404 else
405   # Restart under the correct shell.
406   exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
407 fi
408
409 if test "X[$]1" = X--fallback-echo; then
410   # used as fallback echo
411   shift
412   cat <<EOF
413 $*
414 EOF
415   exit 0
416 fi
417
418 # The HP-UX ksh and POSIX shell print the target directory to stdout
419 # if CDPATH is set.
420 if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
421
422 if test -z "$ECHO"; then
423 if test "X${echo_test_string+set}" != Xset; then
424 # find a string as large as possible, as long as the shell can cope with it
425   for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
426     # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
427     if (echo_test_string="`eval $cmd`") 2>/dev/null &&
428        echo_test_string="`eval $cmd`" &&
429        (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
430     then
431       break
432     fi
433   done
434 fi
435
436 if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
437    echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
438    test "X$echo_testing_string" = "X$echo_test_string"; then
439   :
440 else
441   # The Solaris, AIX, and Digital Unix default echo programs unquote
442   # backslashes.  This makes it impossible to quote backslashes using
443   #   echo "$something" | sed 's/\\/\\\\/g'
444   #
445   # So, first we look for a working echo in the user's PATH.
446
447   IFS="${IFS=   }"; save_ifs="$IFS"; IFS=$PATH_SEPARATOR
448   for dir in $PATH /usr/ucb; do
449     if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
450        test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
451        echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
452        test "X$echo_testing_string" = "X$echo_test_string"; then
453       echo="$dir/echo"
454       break
455     fi
456   done
457   IFS="$save_ifs"
458
459   if test "X$echo" = Xecho; then
460     # We didn't find a better echo, so look for alternatives.
461     if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
462        echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
463        test "X$echo_testing_string" = "X$echo_test_string"; then
464       # This shell has a builtin print -r that does the trick.
465       echo='print -r'
466     elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
467          test "X$CONFIG_SHELL" != X/bin/ksh; then
468       # If we have ksh, try running configure again with it.
469       ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
470       export ORIGINAL_CONFIG_SHELL
471       CONFIG_SHELL=/bin/ksh
472       export CONFIG_SHELL
473       exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
474     else
475       # Try using printf.
476       echo='printf %s\n'
477       if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
478          echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
479          test "X$echo_testing_string" = "X$echo_test_string"; then
480         # Cool, printf works
481         :
482       elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
483            test "X$echo_testing_string" = 'X\t' &&
484            echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
485            test "X$echo_testing_string" = "X$echo_test_string"; then
486         CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
487         export CONFIG_SHELL
488         SHELL="$CONFIG_SHELL"
489         export SHELL
490         echo="$CONFIG_SHELL [$]0 --fallback-echo"
491       elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
492            test "X$echo_testing_string" = 'X\t' &&
493            echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
494            test "X$echo_testing_string" = "X$echo_test_string"; then
495         echo="$CONFIG_SHELL [$]0 --fallback-echo"
496       else
497         # maybe with a smaller string...
498         prev=:
499
500         for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
501           if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
502           then
503             break
504           fi
505           prev="$cmd"
506         done
507
508         if test "$prev" != 'sed 50q "[$]0"'; then
509           echo_test_string=`eval $prev`
510           export echo_test_string
511           exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
512         else
513           # Oops.  We lost completely, so just stick with echo.
514           echo=echo
515         fi
516       fi
517     fi
518   fi
519 fi
520 fi
521
522 # Copy echo and quote the copy suitably for passing to libtool from
523 # the Makefile, instead of quoting the original, which is used later.
524 ECHO=$echo
525 if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
526    ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
527 fi
528
529 AC_SUBST(ECHO)
530 AC_DIVERT_POP
531 ])# _LT_AC_PROG_ECHO_BACKSLASH
532
533 # _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
534 #                           ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
535 # ------------------------------------------------------------------
536 AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF],
537 [if test "$cross_compiling" = yes; then :
538   [$4]
539 else
540   AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
541   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
542   lt_status=$lt_dlunknown
543   cat > conftest.$ac_ext <<EOF
544 [#line __oline__ "configure"
545 #include "confdefs.h"
546
547 #if HAVE_DLFCN_H
548 #include <dlfcn.h>
549 #endif
550
551 #include <stdio.h>
552
553 #ifdef RTLD_GLOBAL
554 #  define LT_DLGLOBAL           RTLD_GLOBAL
555 #else
556 #  ifdef DL_GLOBAL
557 #    define LT_DLGLOBAL         DL_GLOBAL
558 #  else
559 #    define LT_DLGLOBAL         0
560 #  endif
561 #endif
562
563 /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
564    find out it does not work in some platform. */
565 #ifndef LT_DLLAZY_OR_NOW
566 #  ifdef RTLD_LAZY
567 #    define LT_DLLAZY_OR_NOW            RTLD_LAZY
568 #  else
569 #    ifdef DL_LAZY
570 #      define LT_DLLAZY_OR_NOW          DL_LAZY
571 #    else
572 #      ifdef RTLD_NOW
573 #        define LT_DLLAZY_OR_NOW        RTLD_NOW
574 #      else
575 #        ifdef DL_NOW
576 #          define LT_DLLAZY_OR_NOW      DL_NOW
577 #        else
578 #          define LT_DLLAZY_OR_NOW      0
579 #        endif
580 #      endif
581 #    endif
582 #  endif
583 #endif
584
585 #ifdef __cplusplus
586 extern "C" void exit (int);
587 #endif
588
589 void fnord() { int i=42;}
590 int main ()
591 {
592   void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
593   int status = $lt_dlunknown;
594
595   if (self)
596     {
597       if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
598       else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
599       /* dlclose (self); */
600     }
601
602     exit (status);
603 }]
604 EOF
605   if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
606     (./conftest; exit; ) 2>/dev/null
607     lt_status=$?
608     case x$lt_status in
609       x$lt_dlno_uscore) $1 ;;
610       x$lt_dlneed_uscore) $2 ;;
611       x$lt_unknown|x*) $3 ;;
612     esac
613   else :
614     # compilation failed
615     $3
616   fi
617 fi
618 rm -fr conftest*
619 ])# _LT_AC_TRY_DLOPEN_SELF
620
621 # AC_LIBTOOL_DLOPEN_SELF
622 # -------------------
623 AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF],
624 [if test "x$enable_dlopen" != xyes; then
625   enable_dlopen=unknown
626   enable_dlopen_self=unknown
627   enable_dlopen_self_static=unknown
628 else
629   lt_cv_dlopen=no
630   lt_cv_dlopen_libs=
631
632   case $host_os in
633   beos*)
634     lt_cv_dlopen="load_add_on"
635     lt_cv_dlopen_libs=
636     lt_cv_dlopen_self=yes
637     ;;
638
639   cygwin* | mingw* | pw32*)
640     lt_cv_dlopen="LoadLibrary"
641     lt_cv_dlopen_libs=
642    ;;
643
644   *)
645     AC_CHECK_FUNC([shl_load],
646           [lt_cv_dlopen="shl_load"],
647       [AC_CHECK_LIB([dld], [shl_load],
648             [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"],
649         [AC_CHECK_FUNC([dlopen],
650               [lt_cv_dlopen="dlopen"],
651           [AC_CHECK_LIB([dl], [dlopen],
652                 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
653             [AC_CHECK_LIB([svld], [dlopen],
654                   [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
655               [AC_CHECK_LIB([dld], [dld_link],
656                     [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
657               ])
658             ])
659           ])
660         ])
661       ])
662     ;;
663   esac
664
665   if test "x$lt_cv_dlopen" != xno; then
666     enable_dlopen=yes
667   else
668     enable_dlopen=no
669   fi
670
671   case $lt_cv_dlopen in
672   dlopen)
673     save_CPPFLAGS="$CPPFLAGS"
674     AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
675     test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
676
677     save_LDFLAGS="$LDFLAGS"
678     eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
679
680     save_LIBS="$LIBS"
681     LIBS="$lt_cv_dlopen_libs $LIBS"
682
683     AC_CACHE_CHECK([whether a program can dlopen itself],
684           lt_cv_dlopen_self, [dnl
685           _LT_AC_TRY_DLOPEN_SELF(
686             lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
687             lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
688     ])
689
690     if test "x$lt_cv_dlopen_self" = xyes; then
691       LDFLAGS="$LDFLAGS $link_static_flag"
692       AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
693           lt_cv_dlopen_self_static, [dnl
694           _LT_AC_TRY_DLOPEN_SELF(
695             lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
696             lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
697       ])
698     fi
699
700     CPPFLAGS="$save_CPPFLAGS"
701     LDFLAGS="$save_LDFLAGS"
702     LIBS="$save_LIBS"
703     ;;
704   esac
705
706   case $lt_cv_dlopen_self in
707   yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
708   *) enable_dlopen_self=unknown ;;
709   esac
710
711   case $lt_cv_dlopen_self_static in
712   yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
713   *) enable_dlopen_self_static=unknown ;;
714   esac
715 fi
716 ])# AC_LIBTOOL_DLOPEN_SELF
717
718 AC_DEFUN([_LT_AC_LTCONFIG_HACK],
719 [AC_REQUIRE([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])dnl
720 # Sed substitution that helps us do robust quoting.  It backslashifies
721 # metacharacters that are still active within double-quoted strings.
722 Xsed='sed -e s/^X//'
723 sed_quote_subst='s/\([[\\"\\`$\\\\]]\)/\\\1/g'
724
725 # Same as above, but do not quote variable references.
726 double_quote_subst='s/\([[\\"\\`\\\\]]\)/\\\1/g'
727
728 # Sed substitution to delay expansion of an escaped shell variable in a
729 # double_quote_subst'ed string.
730 delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
731
732 # Constants:
733 rm="rm -f"
734
735 # Global variables:
736 default_ofile=libtool
737 can_build_shared=yes
738
739 # All known linkers require a `.a' archive for static linking (except M$VC,
740 # which needs '.lib').
741 libext=a
742 ltmain="$ac_aux_dir/ltmain.sh"
743 ofile="$default_ofile"
744 with_gnu_ld="$lt_cv_prog_gnu_ld"
745 need_locks="$enable_libtool_lock"
746
747 old_CC="$CC"
748 old_CFLAGS="$CFLAGS"
749
750 # Set sane defaults for various variables
751 test -z "$AR" && AR=ar
752 test -z "$AR_FLAGS" && AR_FLAGS=cru
753 test -z "$AS" && AS=as
754 test -z "$CC" && CC=cc
755 test -z "$DLLTOOL" && DLLTOOL=dlltool
756 test -z "$LD" && LD=ld
757 test -z "$LN_S" && LN_S="ln -s"
758 test -z "$MAGIC_CMD" && MAGIC_CMD=file
759 test -z "$NM" && NM=nm
760 test -z "$OBJDUMP" && OBJDUMP=objdump
761 test -z "$RANLIB" && RANLIB=:
762 test -z "$STRIP" && STRIP=:
763 test -z "$ac_objext" && ac_objext=o
764
765 if test x"$host" != x"$build"; then
766   ac_tool_prefix=${host_alias}-
767 else
768   ac_tool_prefix=
769 fi
770
771 # Transform linux* to *-*-linux-gnu*, to support old configure scripts.
772 case $host_os in
773 linux-gnu*) ;;
774 linux*) host=`echo $host | sed 's/^\(.*-.*-linux\)\(.*\)$/\1-gnu\2/'`
775 esac
776
777 case $host_os in
778 aix3*)
779   # AIX sometimes has problems with the GCC collect2 program.  For some
780   # reason, if we set the COLLECT_NAMES environment variable, the problems
781   # vanish in a puff of smoke.
782   if test "X${COLLECT_NAMES+set}" != Xset; then
783     COLLECT_NAMES=
784     export COLLECT_NAMES
785   fi
786   ;;
787 esac
788
789 # Determine commands to create old-style static archives.
790 old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs'
791 old_postinstall_cmds='chmod 644 $oldlib'
792 old_postuninstall_cmds=
793
794 if test -n "$RANLIB"; then
795   case $host_os in
796   openbsd*)
797     old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds"
798     ;;
799   *)
800     old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds"
801     ;;
802   esac
803   old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
804 fi
805
806 # Allow CC to be a program name with arguments.
807 set dummy $CC
808 compiler="[$]2"
809
810 ## FIXME: this should be a separate macro
811 ##
812 AC_MSG_CHECKING([for objdir])
813 rm -f .libs 2>/dev/null
814 mkdir .libs 2>/dev/null
815 if test -d .libs; then
816   objdir=.libs
817 else
818   # MS-DOS does not allow filenames that begin with a dot.
819   objdir=_libs
820 fi
821 rmdir .libs 2>/dev/null
822 AC_MSG_RESULT($objdir)
823 ##
824 ## END FIXME
825
826
827 ## FIXME: this should be a separate macro
828 ##
829 AC_ARG_WITH(pic,
830 [  --with-pic              try to use only PIC/non-PIC objects [default=use both]],
831 pic_mode="$withval", pic_mode=default)
832 test -z "$pic_mode" && pic_mode=default
833
834 # We assume here that the value for lt_cv_prog_cc_pic will not be cached
835 # in isolation, and that seeing it set (from the cache) indicates that
836 # the associated values are set (in the cache) correctly too.
837 AC_MSG_CHECKING([for $compiler option to produce PIC])
838 AC_CACHE_VAL(lt_cv_prog_cc_pic,
839 [ lt_cv_prog_cc_pic=
840   lt_cv_prog_cc_shlib=
841   lt_cv_prog_cc_wl=
842   lt_cv_prog_cc_static=
843   lt_cv_prog_cc_no_builtin=
844   lt_cv_prog_cc_can_build_shared=$can_build_shared
845
846   if test "$GCC" = yes; then
847     lt_cv_prog_cc_wl='-Wl,'
848     lt_cv_prog_cc_static='-static'
849
850     case $host_os in
851     aix*)
852       # Below there is a dirty hack to force normal static linking with -ldl
853       # The problem is because libdl dynamically linked with both libc and
854       # libC (AIX C++ library), which obviously doesn't included in libraries
855       # list by gcc. This cause undefined symbols with -static flags.
856       # This hack allows C programs to be linked with "-static -ldl", but
857       # not sure about C++ programs.
858       lt_cv_prog_cc_static="$lt_cv_prog_cc_static ${lt_cv_prog_cc_wl}-lC"
859       ;;
860     amigaos*)
861       # FIXME: we need at least 68020 code to build shared libraries, but
862       # adding the `-m68020' flag to GCC prevents building anything better,
863       # like `-m68040'.
864       lt_cv_prog_cc_pic='-m68020 -resident32 -malways-restore-a4'
865       ;;
866     beos* | irix5* | irix6* | osf3* | osf4* | osf5*)
867       # PIC is the default for these OSes.
868       ;;
869     darwin* | rhapsody*)
870       # PIC is the default on this platform
871       # Common symbols not allowed in MH_DYLIB files
872       lt_cv_prog_cc_pic='-fno-common'
873       ;;
874     cygwin* | mingw* | pw32* | os2*)
875       # This hack is so that the source file can tell whether it is being
876       # built for inclusion in a dll (and should export symbols for example).
877       lt_cv_prog_cc_pic='-DDLL_EXPORT'
878       ;;
879     sysv4*MP*)
880       if test -d /usr/nec; then
881          lt_cv_prog_cc_pic=-Kconform_pic
882       fi
883       ;;
884     *)
885       lt_cv_prog_cc_pic='-fPIC'
886       ;;
887     esac
888   else
889     # PORTME Check for PIC flags for the system compiler.
890     case $host_os in
891     aix3* | aix4* | aix5*)
892       lt_cv_prog_cc_wl='-Wl,'
893       # All AIX code is PIC.
894       if test "$host_cpu" = ia64; then
895         # AIX 5 now supports IA64 processor
896         lt_cv_prog_cc_static='-Bstatic'
897       else
898         lt_cv_prog_cc_static='-bnso -bI:/lib/syscalls.exp'
899       fi
900       ;;
901
902     hpux9* | hpux10* | hpux11*)
903       # Is there a better lt_cv_prog_cc_static that works with the bundled CC?
904       lt_cv_prog_cc_wl='-Wl,'
905       lt_cv_prog_cc_static="${lt_cv_prog_cc_wl}-a ${lt_cv_prog_cc_wl}archive"
906       lt_cv_prog_cc_pic='+Z'
907       ;;
908
909     irix5* | irix6*)
910       lt_cv_prog_cc_wl='-Wl,'
911       lt_cv_prog_cc_static='-non_shared'
912       # PIC (with -KPIC) is the default.
913       ;;
914
915     cygwin* | mingw* | pw32* | os2*)
916       # This hack is so that the source file can tell whether it is being
917       # built for inclusion in a dll (and should export symbols for example).
918       lt_cv_prog_cc_pic='-DDLL_EXPORT'
919       ;;
920
921     newsos6)
922       lt_cv_prog_cc_pic='-KPIC'
923       lt_cv_prog_cc_static='-Bstatic'
924       ;;
925
926     osf3* | osf4* | osf5*)
927       # All OSF/1 code is PIC.
928       lt_cv_prog_cc_wl='-Wl,'
929       lt_cv_prog_cc_static='-non_shared'
930       ;;
931
932     sco3.2v5*)
933       lt_cv_prog_cc_pic='-Kpic'
934       lt_cv_prog_cc_static='-dn'
935       lt_cv_prog_cc_shlib='-belf'
936       ;;
937
938     solaris*)
939       lt_cv_prog_cc_pic='-KPIC'
940       lt_cv_prog_cc_static='-Bstatic'
941       lt_cv_prog_cc_wl='-Wl,'
942       ;;
943
944     sunos4*)
945       lt_cv_prog_cc_pic='-PIC'
946       lt_cv_prog_cc_static='-Bstatic'
947       lt_cv_prog_cc_wl='-Qoption ld '
948       ;;
949
950     sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
951       lt_cv_prog_cc_pic='-KPIC'
952       lt_cv_prog_cc_static='-Bstatic'
953       if test "x$host_vendor" = xsni; then
954         lt_cv_prog_cc_wl='-LD'
955       else
956         lt_cv_prog_cc_wl='-Wl,'
957       fi
958       ;;
959
960     uts4*)
961       lt_cv_prog_cc_pic='-pic'
962       lt_cv_prog_cc_static='-Bstatic'
963       ;;
964
965     sysv4*MP*)
966       if test -d /usr/nec ;then
967         lt_cv_prog_cc_pic='-Kconform_pic'
968         lt_cv_prog_cc_static='-Bstatic'
969       fi
970       ;;
971
972     *)
973       lt_cv_prog_cc_can_build_shared=no
974       ;;
975     esac
976   fi
977 ])
978 if test -z "$lt_cv_prog_cc_pic"; then
979   AC_MSG_RESULT([none])
980 else
981   AC_MSG_RESULT([$lt_cv_prog_cc_pic])
982
983   # Check to make sure the pic_flag actually works.
984   AC_MSG_CHECKING([if $compiler PIC flag $lt_cv_prog_cc_pic works])
985   AC_CACHE_VAL(lt_cv_prog_cc_pic_works, [dnl
986     save_CFLAGS="$CFLAGS"
987     CFLAGS="$CFLAGS $lt_cv_prog_cc_pic -DPIC"
988     AC_TRY_COMPILE([], [], [dnl
989       case $host_os in
990       hpux9* | hpux10* | hpux11*)
991         # On HP-UX, both CC and GCC only warn that PIC is supported... then
992         # they create non-PIC objects.  So, if there were any warnings, we
993         # assume that PIC is not supported.
994         if test -s conftest.err; then
995           lt_cv_prog_cc_pic_works=no
996         else
997           lt_cv_prog_cc_pic_works=yes
998         fi
999         ;;
1000       *)
1001         lt_cv_prog_cc_pic_works=yes
1002         ;;
1003       esac
1004     ], [dnl
1005       lt_cv_prog_cc_pic_works=no
1006     ])
1007     CFLAGS="$save_CFLAGS"
1008   ])
1009
1010   if test "X$lt_cv_prog_cc_pic_works" = Xno; then
1011     lt_cv_prog_cc_pic=
1012     lt_cv_prog_cc_can_build_shared=no
1013   else
1014     lt_cv_prog_cc_pic=" $lt_cv_prog_cc_pic"
1015   fi
1016
1017   AC_MSG_RESULT([$lt_cv_prog_cc_pic_works])
1018 fi
1019 ##
1020 ## END FIXME
1021
1022 # Check for any special shared library compilation flags.
1023 if test -n "$lt_cv_prog_cc_shlib"; then
1024   AC_MSG_WARN([\`$CC' requires \`$lt_cv_prog_cc_shlib' to build shared libraries])
1025   if echo "$old_CC $old_CFLAGS " | egrep -e "[[         ]]$lt_cv_prog_cc_shlib[[        ]]" >/dev/null; then :
1026   else
1027    AC_MSG_WARN([add \`$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure])
1028     lt_cv_prog_cc_can_build_shared=no
1029   fi
1030 fi
1031
1032 ## FIXME: this should be a separate macro
1033 ##
1034 AC_MSG_CHECKING([if $compiler static flag $lt_cv_prog_cc_static works])
1035 AC_CACHE_VAL([lt_cv_prog_cc_static_works], [dnl
1036   lt_cv_prog_cc_static_works=no
1037   save_LDFLAGS="$LDFLAGS"
1038   LDFLAGS="$LDFLAGS $lt_cv_prog_cc_static"
1039   AC_TRY_LINK([], [], [lt_cv_prog_cc_static_works=yes])
1040   LDFLAGS="$save_LDFLAGS"
1041 ])
1042
1043 # Belt *and* braces to stop my trousers falling down:
1044 test "X$lt_cv_prog_cc_static_works" = Xno && lt_cv_prog_cc_static=
1045 AC_MSG_RESULT([$lt_cv_prog_cc_static_works])
1046
1047 pic_flag="$lt_cv_prog_cc_pic"
1048 special_shlib_compile_flags="$lt_cv_prog_cc_shlib"
1049 wl="$lt_cv_prog_cc_wl"
1050 link_static_flag="$lt_cv_prog_cc_static"
1051 no_builtin_flag="$lt_cv_prog_cc_no_builtin"
1052 can_build_shared="$lt_cv_prog_cc_can_build_shared"
1053 ##
1054 ## END FIXME
1055
1056
1057 ## FIXME: this should be a separate macro
1058 ##
1059 # Check to see if options -o and -c are simultaneously supported by compiler
1060 AC_MSG_CHECKING([if $compiler supports -c -o file.$ac_objext])
1061 AC_CACHE_VAL([lt_cv_compiler_c_o], [
1062 $rm -r conftest 2>/dev/null
1063 mkdir conftest
1064 cd conftest
1065 echo "int some_variable = 0;" > conftest.$ac_ext
1066 mkdir out
1067 # According to Tom Tromey, Ian Lance Taylor reported there are C compilers
1068 # that will create temporary files in the current directory regardless of
1069 # the output directory.  Thus, making CWD read-only will cause this test
1070 # to fail, enabling locking or at least warning the user not to do parallel
1071 # builds.
1072 chmod -w .
1073 save_CFLAGS="$CFLAGS"
1074 CFLAGS="$CFLAGS -o out/conftest2.$ac_objext"
1075 compiler_c_o=no
1076 if { (eval echo configure:__oline__: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
1077   # The compiler can only warn and ignore the option if not recognized
1078   # So say no if there are warnings
1079   if test -s out/conftest.err; then
1080     lt_cv_compiler_c_o=no
1081   else
1082     lt_cv_compiler_c_o=yes
1083   fi
1084 else
1085   # Append any errors to the config.log.
1086   cat out/conftest.err 1>&AC_FD_CC
1087   lt_cv_compiler_c_o=no
1088 fi
1089 CFLAGS="$save_CFLAGS"
1090 chmod u+w .
1091 $rm conftest* out/*
1092 rmdir out
1093 cd ..
1094 rmdir conftest
1095 $rm -r conftest 2>/dev/null
1096 ])
1097 compiler_c_o=$lt_cv_compiler_c_o
1098 AC_MSG_RESULT([$compiler_c_o])
1099
1100 if test x"$compiler_c_o" = x"yes"; then
1101   # Check to see if we can write to a .lo
1102   AC_MSG_CHECKING([if $compiler supports -c -o file.lo])
1103   AC_CACHE_VAL([lt_cv_compiler_o_lo], [
1104   lt_cv_compiler_o_lo=no
1105   save_CFLAGS="$CFLAGS"
1106   CFLAGS="$CFLAGS -c -o conftest.lo"
1107   save_objext="$ac_objext"
1108   ac_objext=lo
1109   AC_TRY_COMPILE([], [int some_variable = 0;], [dnl
1110     # The compiler can only warn and ignore the option if not recognized
1111     # So say no if there are warnings
1112     if test -s conftest.err; then
1113       lt_cv_compiler_o_lo=no
1114     else
1115       lt_cv_compiler_o_lo=yes
1116     fi
1117   ])
1118   ac_objext="$save_objext"
1119   CFLAGS="$save_CFLAGS"
1120   ])
1121   compiler_o_lo=$lt_cv_compiler_o_lo
1122   AC_MSG_RESULT([$compiler_o_lo])
1123 else
1124   compiler_o_lo=no
1125 fi
1126 ##
1127 ## END FIXME
1128
1129 ## FIXME: this should be a separate macro
1130 ##
1131 # Check to see if we can do hard links to lock some files if needed
1132 hard_links="nottested"
1133 if test "$compiler_c_o" = no && test "$need_locks" != no; then
1134   # do not overwrite the value of need_locks provided by the user
1135   AC_MSG_CHECKING([if we can lock with hard links])
1136   hard_links=yes
1137   $rm conftest*
1138   ln conftest.a conftest.b 2>/dev/null && hard_links=no
1139   touch conftest.a
1140   ln conftest.a conftest.b 2>&5 || hard_links=no
1141   ln conftest.a conftest.b 2>/dev/null && hard_links=no
1142   AC_MSG_RESULT([$hard_links])
1143   if test "$hard_links" = no; then
1144     AC_MSG_WARN([\`$CC' does not support \`-c -o', so \`make -j' may be unsafe])
1145     need_locks=warn
1146   fi
1147 else
1148   need_locks=no
1149 fi
1150 ##
1151 ## END FIXME
1152
1153 ## FIXME: this should be a separate macro
1154 ##
1155 if test "$GCC" = yes; then
1156   # Check to see if options -fno-rtti -fno-exceptions are supported by compiler
1157   AC_MSG_CHECKING([if $compiler supports -fno-rtti -fno-exceptions])
1158   echo "int some_variable = 0;" > conftest.$ac_ext
1159   save_CFLAGS="$CFLAGS"
1160   CFLAGS="$CFLAGS -fno-rtti -fno-exceptions -c conftest.$ac_ext"
1161   compiler_rtti_exceptions=no
1162   AC_TRY_COMPILE([], [int some_variable = 0;], [dnl
1163     # The compiler can only warn and ignore the option if not recognized
1164     # So say no if there are warnings
1165     if test -s conftest.err; then
1166       compiler_rtti_exceptions=no
1167     else
1168       compiler_rtti_exceptions=yes
1169     fi
1170   ])
1171   CFLAGS="$save_CFLAGS"
1172   AC_MSG_RESULT([$compiler_rtti_exceptions])
1173
1174   if test "$compiler_rtti_exceptions" = "yes"; then
1175     no_builtin_flag=' -fno-builtin -fno-rtti -fno-exceptions'
1176   else
1177     no_builtin_flag=' -fno-builtin'
1178   fi
1179 fi
1180 ##
1181 ## END FIXME
1182
1183 ## FIXME: this should be a separate macro
1184 ##
1185 # See if the linker supports building shared libraries.
1186 AC_MSG_CHECKING([whether the linker ($LD) supports shared libraries])
1187
1188 allow_undefined_flag=
1189 no_undefined_flag=
1190 need_lib_prefix=unknown
1191 need_version=unknown
1192 # when you set need_version to no, make sure it does not cause -set_version
1193 # flags to be left without arguments
1194 archive_cmds=
1195 archive_expsym_cmds=
1196 old_archive_from_new_cmds=
1197 old_archive_from_expsyms_cmds=
1198 export_dynamic_flag_spec=
1199 whole_archive_flag_spec=
1200 thread_safe_flag_spec=
1201 hardcode_into_libs=no
1202 hardcode_libdir_flag_spec=
1203 hardcode_libdir_separator=
1204 hardcode_direct=no
1205 hardcode_minus_L=no
1206 hardcode_shlibpath_var=unsupported
1207 runpath_var=
1208 link_all_deplibs=unknown
1209 always_export_symbols=no
1210 export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | sed '\''s/.* //'\'' | sort | uniq > $export_symbols'
1211 # include_expsyms should be a list of space-separated symbols to be *always*
1212 # included in the symbol list
1213 include_expsyms=
1214 # exclude_expsyms can be an egrep regular expression of symbols to exclude
1215 # it will be wrapped by ` (' and `)$', so one must not match beginning or
1216 # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
1217 # as well as any symbol that contains `d'.
1218 exclude_expsyms="_GLOBAL_OFFSET_TABLE_"
1219 # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
1220 # platforms (ab)use it in PIC code, but their linkers get confused if
1221 # the symbol is explicitly referenced.  Since portable code cannot
1222 # rely on this symbol name, it's probably fine to never include it in
1223 # preloaded symbol tables.
1224 extract_expsyms_cmds=
1225
1226 case $host_os in
1227 cygwin* | mingw* | pw32*)
1228   # FIXME: the MSVC++ port hasn't been tested in a loooong time
1229   # When not using gcc, we currently assume that we are using
1230   # Microsoft Visual C++.
1231   if test "$GCC" != yes; then
1232     with_gnu_ld=no
1233   fi
1234   ;;
1235 openbsd*)
1236   with_gnu_ld=no
1237   ;;
1238 esac
1239
1240 ld_shlibs=yes
1241 if test "$with_gnu_ld" = yes; then
1242   # If archive_cmds runs LD, not CC, wlarc should be empty
1243   wlarc='${wl}'
1244
1245   # See if GNU ld supports shared libraries.
1246   case $host_os in
1247   aix3* | aix4* | aix5*)
1248     # On AIX, the GNU linker is very broken
1249     # Note:Check GNU linker on AIX 5-IA64 when/if it becomes available.
1250     ld_shlibs=no
1251     cat <<EOF 1>&2
1252
1253 *** Warning: the GNU linker, at least up to release 2.9.1, is reported
1254 *** to be unable to reliably create shared libraries on AIX.
1255 *** Therefore, libtool is disabling shared libraries support.  If you
1256 *** really care for shared libraries, you may want to modify your PATH
1257 *** so that a non-GNU linker is found, and then restart.
1258
1259 EOF
1260     ;;
1261
1262   amigaos*)
1263     archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
1264     hardcode_libdir_flag_spec='-L$libdir'
1265     hardcode_minus_L=yes
1266
1267     # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
1268     # that the semantics of dynamic libraries on AmigaOS, at least up
1269     # to version 4, is to share data among multiple programs linked
1270     # with the same dynamic library.  Since this doesn't match the
1271     # behavior of shared libraries on other platforms, we can use
1272     # them.
1273     ld_shlibs=no
1274     ;;
1275
1276   beos*)
1277     if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
1278       allow_undefined_flag=unsupported
1279       # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
1280       # support --undefined.  This deserves some investigation.  FIXME
1281       archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
1282     else
1283       ld_shlibs=no
1284     fi
1285     ;;
1286
1287   cygwin* | mingw* | pw32*)
1288     # hardcode_libdir_flag_spec is actually meaningless, as there is
1289     # no search path for DLLs.
1290     hardcode_libdir_flag_spec='-L$libdir'
1291     allow_undefined_flag=unsupported
1292     always_export_symbols=yes
1293
1294     extract_expsyms_cmds='test -f $output_objdir/impgen.c || \
1295       sed -e "/^# \/\* impgen\.c starts here \*\//,/^# \/\* impgen.c ends here \*\// { s/^# //;s/^# *$//; p; }" -e d < $''0 > $output_objdir/impgen.c~
1296       test -f $output_objdir/impgen.exe || (cd $output_objdir && \
1297       if test "x$HOST_CC" != "x" ; then $HOST_CC -o impgen impgen.c ; \
1298       else $CC -o impgen impgen.c ; fi)~
1299       $output_objdir/impgen $dir/$soroot > $output_objdir/$soname-def'
1300
1301     old_archive_from_expsyms_cmds='$DLLTOOL --as=$AS --dllname $soname --def $output_objdir/$soname-def --output-lib $output_objdir/$newlib'
1302
1303     # cygwin and mingw dlls have different entry points and sets of symbols
1304     # to exclude.
1305     # FIXME: what about values for MSVC?
1306     dll_entry=__cygwin_dll_entry@12
1307     dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12~
1308     case $host_os in
1309     mingw*)
1310       # mingw values
1311       dll_entry=_DllMainCRTStartup@12
1312       dll_exclude_symbols=DllMain@12,DllMainCRTStartup@12,DllEntryPoint@12~
1313       ;;
1314     esac
1315
1316     # mingw and cygwin differ, and it's simplest to just exclude the union
1317     # of the two symbol sets.
1318     dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12,DllMainCRTStartup@12,DllEntryPoint@12
1319
1320     # recent cygwin and mingw systems supply a stub DllMain which the user
1321     # can override, but on older systems we have to supply one (in ltdll.c)
1322     if test "x$lt_cv_need_dllmain" = "xyes"; then
1323       ltdll_obj='$output_objdir/$soname-ltdll.'"$ac_objext "
1324       ltdll_cmds='test -f $output_objdir/$soname-ltdll.c || sed -e "/^# \/\* ltdll\.c starts here \*\//,/^# \/\* ltdll.c ends here \*\// { s/^# //; p; }" -e d < $''0 > $output_objdir/$soname-ltdll.c~
1325         test -f $output_objdir/$soname-ltdll.$ac_objext || (cd $output_objdir && $CC -c $soname-ltdll.c)~'
1326     else
1327       ltdll_obj=
1328       ltdll_cmds=
1329     fi
1330
1331     # Extract the symbol export list from an `--export-all' def file,
1332     # then regenerate the def file from the symbol export list, so that
1333     # the compiled dll only exports the symbol export list.
1334     # Be careful not to strip the DATA tag left be newer dlltools.
1335     export_symbols_cmds="$ltdll_cmds"'
1336       $DLLTOOL --export-all --exclude-symbols '$dll_exclude_symbols' --output-def $output_objdir/$soname-def '$ltdll_obj'$libobjs $convenience~
1337       sed -e "1,/EXPORTS/d" -e "s/ @ [[0-9]]*//" -e "s/ *;.*$//" < $output_objdir/$soname-def > $export_symbols'
1338
1339     # If the export-symbols file already is a .def file (1st line
1340     # is EXPORTS), use it as is.
1341     # If DATA tags from a recent dlltool are present, honour them!
1342     archive_expsym_cmds='if test "x`head -1 $export_symbols`" = xEXPORTS; then
1343         cp $export_symbols $output_objdir/$soname-def;
1344       else
1345         echo EXPORTS > $output_objdir/$soname-def;
1346         _lt_hint=1;
1347         cat $export_symbols | while read symbol; do
1348          set dummy \$symbol;
1349          case \[$]# in
1350            2) echo "   \[$]2 @ \$_lt_hint ; " >> $output_objdir/$soname-def;;
1351            *) echo "     \[$]2 @ \$_lt_hint \[$]3 ; " >> $output_objdir/$soname-def;;
1352          esac;
1353          _lt_hint=`expr 1 + \$_lt_hint`;
1354         done;
1355       fi~
1356       '"$ltdll_cmds"'
1357       $CC -Wl,--base-file,$output_objdir/$soname-base '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~
1358       $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp~
1359       $CC -Wl,--base-file,$output_objdir/$soname-base $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags~
1360       $DLLTOOL --as=$AS --dllname $soname --exclude-symbols '$dll_exclude_symbols' --def $output_objdir/$soname-def --base-file $output_objdir/$soname-base --output-exp $output_objdir/$soname-exp --output-lib $output_objdir/$libname.dll.a~
1361       $CC $output_objdir/$soname-exp '$lt_cv_cc_dll_switch' -Wl,-e,'$dll_entry' -o $output_objdir/$soname '$ltdll_obj'$libobjs $deplibs $compiler_flags'
1362     ;;
1363
1364   netbsd*)
1365     if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
1366       archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
1367       wlarc=
1368     else
1369       archive_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
1370       archive_expsym_cmds='$CC -shared -nodefaultlibs $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
1371     fi
1372     ;;
1373
1374   solaris* | sysv5*)
1375     if $LD -v 2>&1 | egrep 'BFD 2\.8' > /dev/null; then
1376       ld_shlibs=no
1377       cat <<EOF 1>&2
1378
1379 *** Warning: The releases 2.8.* of the GNU linker cannot reliably
1380 *** create shared libraries on Solaris systems.  Therefore, libtool
1381 *** is disabling shared libraries support.  We urge you to upgrade GNU
1382 *** binutils to release 2.9.1 or newer.  Another option is to modify
1383 *** your PATH or compiler configuration so that the native linker is
1384 *** used, and then restart.
1385
1386 EOF
1387     elif $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
1388       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
1389       archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
1390     else
1391       ld_shlibs=no
1392     fi
1393     ;;
1394
1395   sunos4*)
1396     archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
1397     wlarc=
1398     hardcode_direct=yes
1399     hardcode_shlibpath_var=no
1400     ;;
1401
1402   *)
1403     if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
1404       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
1405       archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
1406     else
1407       ld_shlibs=no
1408     fi
1409     ;;
1410   esac
1411
1412   if test "$ld_shlibs" = yes; then
1413     runpath_var=LD_RUN_PATH
1414     hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir'
1415     export_dynamic_flag_spec='${wl}--export-dynamic'
1416     case $host_os in
1417     cygwin* | mingw* | pw32*)
1418       # dlltool doesn't understand --whole-archive et. al.
1419       whole_archive_flag_spec=
1420       ;;
1421     *)
1422       # ancient GNU ld didn't support --whole-archive et. al.
1423       if $LD --help 2>&1 | egrep 'no-whole-archive' > /dev/null; then
1424         whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
1425       else
1426         whole_archive_flag_spec=
1427       fi
1428       ;;
1429     esac
1430   fi
1431 else
1432   # PORTME fill in a description of your system's linker (not GNU ld)
1433   case $host_os in
1434   aix3*)
1435     allow_undefined_flag=unsupported
1436     always_export_symbols=yes
1437     archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
1438     # Note: this linker hardcodes the directories in LIBPATH if there
1439     # are no directories specified by -L.
1440     hardcode_minus_L=yes
1441     if test "$GCC" = yes && test -z "$link_static_flag"; then
1442       # Neither direct hardcoding nor static linking is supported with a
1443       # broken collect2.
1444       hardcode_direct=unsupported
1445     fi
1446     ;;
1447
1448   aix4* | aix5*)
1449     if test "$host_cpu" = ia64; then
1450       # On IA64, the linker does run time linking by default, so we don't
1451       # have to do anything special.
1452       aix_use_runtimelinking=no
1453       exp_sym_flag='-Bexport'
1454       no_entry_flag=""
1455     else
1456       aix_use_runtimelinking=no
1457
1458       # Test if we are trying to use run time linking or normal
1459       # AIX style linking. If -brtl is somewhere in LDFLAGS, we
1460       # need to do runtime linking.
1461       case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*)
1462         for ld_flag in $LDFLAGS; do
1463           if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
1464             aix_use_runtimelinking=yes
1465             break
1466           fi
1467         done
1468       esac
1469
1470       exp_sym_flag='-bexport'
1471       no_entry_flag='-bnoentry'
1472     fi
1473
1474     # When large executables or shared objects are built, AIX ld can
1475     # have problems creating the table of contents.  If linking a library
1476     # or program results in "error TOC overflow" add -mminimal-toc to
1477     # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
1478     # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
1479
1480     hardcode_direct=yes
1481     archive_cmds=''
1482     hardcode_libdir_separator=':'
1483     if test "$GCC" = yes; then
1484       case $host_os in aix4.[[012]]|aix4.[[012]].*)
1485         collect2name=`${CC} -print-prog-name=collect2`
1486         if test -f "$collect2name" && \
1487           strings "$collect2name" | grep resolve_lib_name >/dev/null
1488         then
1489           # We have reworked collect2
1490           hardcode_direct=yes
1491         else
1492           # We have old collect2
1493           hardcode_direct=unsupported
1494           # It fails to find uninstalled libraries when the uninstalled
1495           # path is not listed in the libpath.  Setting hardcode_minus_L
1496           # to unsupported forces relinking
1497           hardcode_minus_L=yes
1498           hardcode_libdir_flag_spec='-L$libdir'
1499           hardcode_libdir_separator=
1500         fi
1501       esac
1502
1503       shared_flag='-shared'
1504     else
1505       # not using gcc
1506       if test "$host_cpu" = ia64; then
1507         shared_flag='${wl}-G'
1508       else
1509         if test "$aix_use_runtimelinking" = yes; then
1510           shared_flag='${wl}-G'
1511         else
1512           shared_flag='${wl}-bM:SRE'
1513         fi
1514       fi
1515     fi
1516
1517     # It seems that -bexpall can do strange things, so it is better to
1518     # generate a list of symbols to export.
1519     always_export_symbols=yes
1520     if test "$aix_use_runtimelinking" = yes; then
1521       # Warning - without using the other runtime loading flags (-brtl),
1522       # -berok will link without error, but may produce a broken library.
1523       allow_undefined_flag='-berok'
1524       hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:/usr/lib:/lib'
1525       archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag"
1526     else
1527       if test "$host_cpu" = ia64; then
1528         hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
1529         allow_undefined_flag="-z nodefs"
1530         archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname ${wl}-h$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"
1531       else
1532         hardcode_libdir_flag_spec='${wl}-bnolibpath ${wl}-blibpath:$libdir:/usr/lib:/lib'
1533         # Warning - without using the other run time loading flags,
1534         # -berok will link without error, but may produce a broken library.
1535         allow_undefined_flag='${wl}-berok'
1536         # This is a bit strange, but is similar to how AIX traditionally builds
1537         # it's shared libraries.
1538         archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"' ~$AR -crlo $objdir/$libname$release.a $objdir/$soname'
1539       fi
1540     fi
1541     ;;
1542
1543   amigaos*)
1544     archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
1545     hardcode_libdir_flag_spec='-L$libdir'
1546     hardcode_minus_L=yes
1547     # see comment about different semantics on the GNU ld section
1548     ld_shlibs=no
1549     ;;
1550
1551   cygwin* | mingw* | pw32*)
1552     # When not using gcc, we currently assume that we are using
1553     # Microsoft Visual C++.
1554     # hardcode_libdir_flag_spec is actually meaningless, as there is
1555     # no search path for DLLs.
1556     hardcode_libdir_flag_spec=' '
1557     allow_undefined_flag=unsupported
1558     # Tell ltmain to make .lib files, not .a files.
1559     libext=lib
1560     # FIXME: Setting linknames here is a bad hack.
1561     archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | sed -e '\''s/ -lc$//'\''` -link -dll~linknames='
1562     # The linker will automatically build a .lib file if we build a DLL.
1563     old_archive_from_new_cmds='true'
1564     # FIXME: Should let the user specify the lib program.
1565     old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs'
1566     fix_srcfile_path='`cygpath -w "$srcfile"`'
1567     ;;
1568
1569   darwin* | rhapsody*)
1570     case "$host_os" in
1571     rhapsody* | darwin1.[[012]])
1572       allow_undefined_flag='-undefined suppress'
1573       ;;
1574     *) # Darwin 1.3 on
1575       allow_undefined_flag='-flat_namespace -undefined suppress'
1576       ;;
1577     esac
1578     # FIXME: Relying on posixy $() will cause problems for
1579     #        cross-compilation, but unfortunately the echo tests do not
1580     #        yet detect zsh echo's removal of \ escapes.
1581     archive_cmds='$nonopt $(test "x$module" = xyes && echo -bundle || echo -dynamiclib) $allow_undefined_flag -o $lib $libobjs $deplibs$linker_flags -install_name $rpath/$soname $verstring'
1582     # We need to add '_' to the symbols in $export_symbols first
1583     #archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
1584     hardcode_direct=yes
1585     hardcode_shlibpath_var=no
1586     whole_archive_flag_spec='-all_load $convenience'
1587     ;;
1588
1589   freebsd1*)
1590     ld_shlibs=no
1591     ;;
1592
1593   # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
1594   # support.  Future versions do this automatically, but an explicit c++rt0.o
1595   # does not break anything, and helps significantly (at the cost of a little
1596   # extra space).
1597   freebsd2.2*)
1598     archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
1599     hardcode_libdir_flag_spec='-R$libdir'
1600     hardcode_direct=yes
1601     hardcode_shlibpath_var=no
1602     ;;
1603
1604   # Unfortunately, older versions of FreeBSD 2 do not have this feature.
1605   freebsd2*)
1606     archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
1607     hardcode_direct=yes
1608     hardcode_minus_L=yes
1609     hardcode_shlibpath_var=no
1610     ;;
1611
1612   # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
1613   freebsd*)
1614     archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
1615     hardcode_libdir_flag_spec='-R$libdir'
1616     hardcode_direct=yes
1617     hardcode_shlibpath_var=no
1618     ;;
1619
1620   hpux9* | hpux10* | hpux11*)
1621     case $host_os in
1622     hpux9*) archive_cmds='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ;;
1623     *) archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ;;
1624     esac
1625     hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
1626     hardcode_libdir_separator=:
1627     hardcode_direct=yes
1628     hardcode_minus_L=yes # Not in the search PATH, but as the default
1629                          # location of the library.
1630     export_dynamic_flag_spec='${wl}-E'
1631     ;;
1632
1633   irix5* | irix6*)
1634     if test "$GCC" = yes; then
1635       archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
1636     else
1637       archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
1638     fi
1639     hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
1640     hardcode_libdir_separator=:
1641     link_all_deplibs=yes
1642     ;;
1643
1644   netbsd*)
1645     if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
1646       archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
1647     else
1648       archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
1649     fi
1650     hardcode_libdir_flag_spec='-R$libdir'
1651     hardcode_direct=yes
1652     hardcode_shlibpath_var=no
1653     ;;
1654
1655   newsos6)
1656     archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
1657     hardcode_direct=yes
1658     hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
1659     hardcode_libdir_separator=:
1660     hardcode_shlibpath_var=no
1661     ;;
1662
1663   openbsd*)
1664     hardcode_direct=yes
1665     hardcode_shlibpath_var=no
1666     if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
1667       archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linker_flags'
1668       hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
1669       export_dynamic_flag_spec='${wl}-E'
1670     else
1671       case "$host_os" in
1672       openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
1673         archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
1674         hardcode_libdir_flag_spec='-R$libdir'
1675         ;;
1676       *)
1677         archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linker_flags'
1678         hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
1679         ;;
1680       esac
1681     fi
1682     ;;
1683
1684   os2*)
1685     hardcode_libdir_flag_spec='-L$libdir'
1686     hardcode_minus_L=yes
1687     allow_undefined_flag=unsupported
1688     archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
1689     old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
1690     ;;
1691
1692   osf3*)
1693     if test "$GCC" = yes; then
1694       allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
1695       archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
1696     else
1697       allow_undefined_flag=' -expect_unresolved \*'
1698       archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
1699     fi
1700     hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
1701     hardcode_libdir_separator=:
1702     ;;
1703
1704   osf4* | osf5*)        # as osf3* with the addition of -msym flag
1705     if test "$GCC" = yes; then
1706       allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
1707       archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
1708       hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
1709     else
1710       allow_undefined_flag=' -expect_unresolved \*'
1711       archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
1712       archive_expsym_cmds='for i in `cat $export_symbols`; do printf "-exported_symbol " >> $lib.exp; echo "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
1713       $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp'
1714
1715       #Both c and cxx compiler support -rpath directly
1716       hardcode_libdir_flag_spec='-rpath $libdir'
1717     fi
1718     hardcode_libdir_separator=:
1719     ;;
1720
1721   sco3.2v5*)
1722     archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
1723     hardcode_shlibpath_var=no
1724     runpath_var=LD_RUN_PATH
1725     hardcode_runpath_var=yes
1726     export_dynamic_flag_spec='${wl}-Bexport'
1727     ;;
1728
1729   solaris*)
1730     # gcc --version < 3.0 without binutils cannot create self contained
1731     # shared libraries reliably, requiring libgcc.a to resolve some of
1732     # the object symbols generated in some cases.  Libraries that use
1733     # assert need libgcc.a to resolve __eprintf, for example.  Linking
1734     # a copy of libgcc.a into every shared library to guarantee resolving
1735     # such symbols causes other problems:  According to Tim Van Holder
1736     # <tim.van.holder@pandora.be>, C++ libraries end up with a separate
1737     # (to the application) exception stack for one thing.
1738     no_undefined_flag=' -z defs'
1739     if test "$GCC" = yes; then
1740       case `$CC --version 2>/dev/null` in
1741       [[12]].*)
1742         cat <<EOF 1>&2
1743
1744 *** Warning: Releases of GCC earlier than version 3.0 cannot reliably
1745 *** create self contained shared libraries on Solaris systems, without
1746 *** introducing a dependency on libgcc.a.  Therefore, libtool is disabling
1747 *** -no-undefined support, which will at least allow you to build shared
1748 *** libraries.  However, you may find that when you link such libraries
1749 *** into an application without using GCC, you have to manually add
1750 *** \`gcc --print-libgcc-file-name\` to the link command.  We urge you to
1751 *** upgrade to a newer version of GCC.  Another option is to rebuild your
1752 *** current GCC to use the GNU linker from GNU binutils 2.9.1 or newer.
1753
1754 EOF
1755         no_undefined_flag=
1756         ;;
1757       esac
1758     fi
1759     # $CC -shared without GNU ld will not create a library from C++
1760     # object files and a static libstdc++, better avoid it by now
1761     archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
1762     archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
1763                 $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
1764     hardcode_libdir_flag_spec='-R$libdir'
1765     hardcode_shlibpath_var=no
1766     case $host_os in
1767     solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
1768     *) # Supported since Solaris 2.6 (maybe 2.5.1?)
1769       whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;;
1770     esac
1771     link_all_deplibs=yes
1772     ;;
1773
1774   sunos4*)
1775     if test "x$host_vendor" = xsequent; then
1776       # Use $CC to link under sequent, because it throws in some extra .o
1777       # files that make .init and .fini sections work.
1778       archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
1779     else
1780       archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
1781     fi
1782     hardcode_libdir_flag_spec='-L$libdir'
1783     hardcode_direct=yes
1784     hardcode_minus_L=yes
1785     hardcode_shlibpath_var=no
1786     ;;
1787
1788   sysv4)
1789     if test "x$host_vendor" = xsno; then
1790       archive_cmds='$LD -G -Bsymbolic -h $soname -o $lib $libobjs $deplibs $linker_flags'
1791       hardcode_direct=yes # is this really true???
1792     else
1793       archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
1794       hardcode_direct=no #Motorola manual says yes, but my tests say they lie
1795     fi
1796     runpath_var='LD_RUN_PATH'
1797     hardcode_shlibpath_var=no
1798     ;;
1799
1800   sysv4.3*)
1801     archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
1802     hardcode_shlibpath_var=no
1803     export_dynamic_flag_spec='-Bexport'
1804     ;;
1805
1806   sysv5*)
1807     no_undefined_flag=' -z text'
1808     # $CC -shared without GNU ld will not create a library from C++
1809     # object files and a static libstdc++, better avoid it by now
1810     archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
1811     archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
1812                 $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
1813     hardcode_libdir_flag_spec=
1814     hardcode_shlibpath_var=no
1815     runpath_var='LD_RUN_PATH'
1816     ;;
1817
1818   uts4*)
1819     archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
1820     hardcode_libdir_flag_spec='-L$libdir'
1821     hardcode_shlibpath_var=no
1822     ;;
1823
1824   dgux*)
1825     archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
1826     hardcode_libdir_flag_spec='-L$libdir'
1827     hardcode_shlibpath_var=no
1828     ;;
1829
1830   sysv4*MP*)
1831     if test -d /usr/nec; then
1832       archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
1833       hardcode_shlibpath_var=no
1834       runpath_var=LD_RUN_PATH
1835       hardcode_runpath_var=yes
1836       ld_shlibs=yes
1837     fi
1838     ;;
1839
1840   sysv4.2uw2*)
1841     archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags'
1842     hardcode_direct=yes
1843     hardcode_minus_L=no
1844     hardcode_shlibpath_var=no
1845     hardcode_runpath_var=yes
1846     runpath_var=LD_RUN_PATH
1847     ;;
1848
1849   sysv5uw7* | unixware7*)
1850     no_undefined_flag='${wl}-z ${wl}text'
1851     if test "$GCC" = yes; then
1852       archive_cmds='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
1853     else
1854       archive_cmds='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
1855     fi
1856     runpath_var='LD_RUN_PATH'
1857     hardcode_shlibpath_var=no
1858     ;;
1859
1860   *)
1861     ld_shlibs=no
1862     ;;
1863   esac
1864 fi
1865 AC_MSG_RESULT([$ld_shlibs])
1866 test "$ld_shlibs" = no && can_build_shared=no
1867 ##
1868 ## END FIXME
1869
1870 ## FIXME: this should be a separate macro
1871 ##
1872 # Check hardcoding attributes.
1873 AC_MSG_CHECKING([how to hardcode library paths into programs])
1874 hardcode_action=
1875 if test -n "$hardcode_libdir_flag_spec" || \
1876    test -n "$runpath_var"; then
1877
1878   # We can hardcode non-existant directories.
1879   if test "$hardcode_direct" != no &&
1880      # If the only mechanism to avoid hardcoding is shlibpath_var, we
1881      # have to relink, otherwise we might link with an installed library
1882      # when we should be linking with a yet-to-be-installed one
1883      ## test "$hardcode_shlibpath_var" != no &&
1884      test "$hardcode_minus_L" != no; then
1885     # Linking always hardcodes the temporary library directory.
1886     hardcode_action=relink
1887   else
1888     # We can link without hardcoding, and we can hardcode nonexisting dirs.
1889     hardcode_action=immediate
1890   fi
1891 else
1892   # We cannot hardcode anything, or else we can only hardcode existing
1893   # directories.
1894   hardcode_action=unsupported
1895 fi
1896 AC_MSG_RESULT([$hardcode_action])
1897 ##
1898 ## END FIXME
1899
1900 ## FIXME: this should be a separate macro
1901 ##
1902 striplib=
1903 old_striplib=
1904 AC_MSG_CHECKING([whether stripping libraries is possible])
1905 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
1906   test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
1907   test -z "$striplib" && striplib="$STRIP --strip-unneeded"
1908   AC_MSG_RESULT([yes])
1909 else
1910   AC_MSG_RESULT([no])
1911 fi
1912 ##
1913 ## END FIXME
1914
1915 reload_cmds='$LD$reload_flag -o $output$reload_objs'
1916 test -z "$deplibs_check_method" && deplibs_check_method=unknown
1917
1918 ## FIXME: this should be a separate macro
1919 ##
1920 # PORTME Fill in your ld.so characteristics
1921 AC_MSG_CHECKING([dynamic linker characteristics])
1922 library_names_spec=
1923 libname_spec='lib$name'
1924 soname_spec=
1925 postinstall_cmds=
1926 postuninstall_cmds=
1927 finish_cmds=
1928 finish_eval=
1929 shlibpath_var=
1930 shlibpath_overrides_runpath=unknown
1931 version_type=none
1932 dynamic_linker="$host_os ld.so"
1933 sys_lib_dlsearch_path_spec="/lib /usr/lib"
1934 sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
1935
1936 case $host_os in
1937 aix3*)
1938   version_type=linux
1939   library_names_spec='${libname}${release}.so$versuffix $libname.a'
1940   shlibpath_var=LIBPATH
1941
1942   # AIX has no versioning support, so we append a major version to the name.
1943   soname_spec='${libname}${release}.so$major'
1944   ;;
1945
1946 aix4* | aix5*)
1947   version_type=linux
1948   if test "$host_cpu" = ia64; then
1949     # AIX 5 supports IA64
1950     library_names_spec='${libname}${release}.so$major ${libname}${release}.so$versuffix $libname.so'
1951     shlibpath_var=LD_LIBRARY_PATH
1952   else
1953     # With GCC up to 2.95.x, collect2 would create an import file
1954     # for dependence libraries.  The import file would start with
1955     # the line `#! .'.  This would cause the generated library to
1956     # depend on `.', always an invalid library.  This was fixed in
1957     # development snapshots of GCC prior to 3.0.
1958     case $host_os in
1959       aix4 | aix4.[[01]] | aix4.[[01]].*)
1960         if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
1961              echo ' yes '
1962              echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
1963           :
1964         else
1965           can_build_shared=no
1966         fi
1967         ;;
1968     esac
1969     # AIX (on Power*) has no versioning support, so currently we can
1970     # not hardcode correct soname into executable. Probably we can
1971     # add versioning support to collect2, so additional links can
1972     # be useful in future.
1973     if test "$aix_use_runtimelinking" = yes; then
1974       # If using run time linking (on AIX 4.2 or later) use lib<name>.so
1975       # instead of lib<name>.a to let people know that these are not
1976       # typical AIX shared libraries.
1977       library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
1978     else
1979       # We preserve .a as extension for shared libraries through AIX4.2
1980       # and later when we are not doing run time linking.
1981       library_names_spec='${libname}${release}.a $libname.a'
1982       soname_spec='${libname}${release}.so$major'
1983     fi
1984     shlibpath_var=LIBPATH
1985   fi
1986   ;;
1987
1988 amigaos*)
1989   library_names_spec='$libname.ixlibrary $libname.a'
1990   # Create ${libname}_ixlibrary.a entries in /sys/libs.
1991   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'
1992   ;;
1993
1994 beos*)
1995   library_names_spec='${libname}.so'
1996   dynamic_linker="$host_os ld.so"
1997   shlibpath_var=LIBRARY_PATH
1998   ;;
1999
2000 bsdi4*)
2001   version_type=linux
2002   need_version=no
2003   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2004   soname_spec='${libname}${release}.so$major'
2005   finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
2006   shlibpath_var=LD_LIBRARY_PATH
2007   sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
2008   sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
2009   export_dynamic_flag_spec=-rdynamic
2010   # the default ld.so.conf also contains /usr/contrib/lib and
2011   # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
2012   # libtool to hard-code these into programs
2013   ;;
2014
2015 cygwin* | mingw* | pw32*)
2016   version_type=windows
2017   need_version=no
2018   need_lib_prefix=no
2019   case $GCC,$host_os in
2020   yes,cygwin*)
2021     library_names_spec='$libname.dll.a'
2022     soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll'
2023     postinstall_cmds='dlpath=`bash 2>&1 -c '\''. $dir/${file}i;echo \$dlname'\''`~
2024       dldir=$destdir/`dirname \$dlpath`~
2025       test -d \$dldir || mkdir -p \$dldir~
2026       $install_prog .libs/$dlname \$dldir/$dlname'
2027     postuninstall_cmds='dldll=`bash 2>&1 -c '\''. $file; echo \$dlname'\''`~
2028       dlpath=$dir/\$dldll~
2029        $rm \$dlpath'
2030     ;;
2031   yes,mingw*)
2032     library_names_spec='${libname}`echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll'
2033     sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | sed -e "s/^libraries://" -e "s/;/ /g"`
2034     ;;
2035   yes,pw32*)
2036     library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | sed -e 's/[.]/-/g'`${versuffix}.dll'
2037     ;;
2038   *)
2039     library_names_spec='${libname}`echo ${release} | sed -e 's/[[.]]/-/g'`${versuffix}.dll $libname.lib'
2040     ;;
2041   esac
2042   dynamic_linker='Win32 ld.exe'
2043   # FIXME: first we should search . and the directory the executable is in
2044   shlibpath_var=PATH
2045   ;;
2046
2047 darwin* | rhapsody*)
2048   dynamic_linker="$host_os dyld"
2049   version_type=darwin
2050   need_lib_prefix=no
2051   need_version=no
2052   # FIXME: Relying on posixy $() will cause problems for
2053   #        cross-compilation, but unfortunately the echo tests do not
2054   #        yet detect zsh echo's removal of \ escapes.
2055   library_names_spec='${libname}${release}${versuffix}.$(test .$module = .yes && echo so || echo dylib) ${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib) ${libname}.$(test .$module = .yes && echo so || echo dylib)'
2056   soname_spec='${libname}${release}${major}.$(test .$module = .yes && echo so || echo dylib)'
2057   shlibpath_overrides_runpath=yes
2058   shlibpath_var=DYLD_LIBRARY_PATH
2059   ;;
2060
2061 freebsd1*)
2062   dynamic_linker=no
2063   ;;
2064
2065 freebsd*)
2066   objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout`
2067   version_type=freebsd-$objformat
2068   case $version_type in
2069     freebsd-elf*)
2070       library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so'
2071       need_version=no
2072       need_lib_prefix=no
2073       ;;
2074     freebsd-*)
2075       library_names_spec='${libname}${release}.so$versuffix $libname.so$versuffix'
2076       need_version=yes
2077       ;;
2078   esac
2079   shlibpath_var=LD_LIBRARY_PATH
2080   case $host_os in
2081   freebsd2*)
2082     shlibpath_overrides_runpath=yes
2083     ;;
2084   *)
2085     shlibpath_overrides_runpath=no
2086     hardcode_into_libs=yes
2087     ;;
2088   esac
2089   ;;
2090
2091 gnu*)
2092   version_type=linux
2093   need_lib_prefix=no
2094   need_version=no
2095   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so${major} ${libname}.so'
2096   soname_spec='${libname}${release}.so$major'
2097   shlibpath_var=LD_LIBRARY_PATH
2098   hardcode_into_libs=yes
2099   ;;
2100
2101 hpux9* | hpux10* | hpux11*)
2102   # Give a soname corresponding to the major version so that dld.sl refuses to
2103   # link against other versions.
2104   dynamic_linker="$host_os dld.sl"
2105   version_type=sunos
2106   need_lib_prefix=no
2107   need_version=no
2108   shlibpath_var=SHLIB_PATH
2109   shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
2110   library_names_spec='${libname}${release}.sl$versuffix ${libname}${release}.sl$major $libname.sl'
2111   soname_spec='${libname}${release}.sl$major'
2112   # HP-UX runs *really* slowly unless shared libraries are mode 555.
2113   postinstall_cmds='chmod 555 $lib'
2114   ;;
2115
2116 irix5* | irix6*)
2117   version_type=irix
2118   need_lib_prefix=no
2119   need_version=no
2120   soname_spec='${libname}${release}.so$major'
2121   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so $libname.so'
2122   case $host_os in
2123   irix5*)
2124     libsuff= shlibsuff=
2125     ;;
2126   *)
2127     case $LD in # libtool.m4 will add one of these switches to LD
2128     *-32|*"-32 ") libsuff= shlibsuff= libmagic=32-bit;;
2129     *-n32|*"-n32 ") libsuff=32 shlibsuff=N32 libmagic=N32;;
2130     *-64|*"-64 ") libsuff=64 shlibsuff=64 libmagic=64-bit;;
2131     *) libsuff= shlibsuff= libmagic=never-match;;
2132     esac
2133     ;;
2134   esac
2135   shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
2136   shlibpath_overrides_runpath=no
2137   sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
2138   sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
2139   ;;
2140
2141 # No shared lib support for Linux oldld, aout, or coff.
2142 linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*)
2143   dynamic_linker=no
2144   ;;
2145
2146 # This must be Linux ELF.
2147 linux-gnu*)
2148   version_type=linux
2149   need_lib_prefix=no
2150   need_version=no
2151   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2152   soname_spec='${libname}${release}.so$major'
2153   finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
2154   shlibpath_var=LD_LIBRARY_PATH
2155   shlibpath_overrides_runpath=no
2156   # This implies no fast_install, which is unacceptable.
2157   # Some rework will be needed to allow for fast_install
2158   # before this can be enabled.
2159   hardcode_into_libs=yes
2160
2161   # We used to test for /lib/ld.so.1 and disable shared libraries on
2162   # powerpc, because MkLinux only supported shared libraries with the
2163   # GNU dynamic linker.  Since this was broken with cross compilers,
2164   # most powerpc-linux boxes support dynamic linking these days and
2165   # people can always --disable-shared, the test was removed, and we
2166   # assume the GNU/Linux dynamic linker is in use.
2167   dynamic_linker='GNU/Linux ld.so'
2168   ;;
2169
2170 netbsd*)
2171   version_type=sunos
2172   need_lib_prefix=no
2173   need_version=no
2174   if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
2175     library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
2176     finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
2177     dynamic_linker='NetBSD (a.out) ld.so'
2178   else
2179     library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major ${libname}${release}.so ${libname}.so'
2180     soname_spec='${libname}${release}.so$major'
2181     dynamic_linker='NetBSD ld.elf_so'
2182   fi
2183   shlibpath_var=LD_LIBRARY_PATH
2184   shlibpath_overrides_runpath=yes
2185   hardcode_into_libs=yes
2186   ;;
2187
2188 newsos6)
2189   version_type=linux
2190   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2191   shlibpath_var=LD_LIBRARY_PATH
2192   shlibpath_overrides_runpath=yes
2193   ;;
2194
2195 openbsd*)
2196   version_type=sunos
2197   need_lib_prefix=no
2198   need_version=no
2199   if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
2200     case "$host_os" in
2201     openbsd2.[[89]] | openbsd2.[[89]].*)
2202       shlibpath_overrides_runpath=no
2203       ;;
2204     *)
2205       shlibpath_overrides_runpath=yes
2206       ;;
2207     esac
2208   else
2209     shlibpath_overrides_runpath=yes
2210   fi
2211   library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
2212   finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
2213   shlibpath_var=LD_LIBRARY_PATH
2214   ;;
2215
2216 os2*)
2217   libname_spec='$name'
2218   need_lib_prefix=no
2219   library_names_spec='$libname.dll $libname.a'
2220   dynamic_linker='OS/2 ld.exe'
2221   shlibpath_var=LIBPATH
2222   ;;
2223
2224 osf3* | osf4* | osf5*)
2225   version_type=osf
2226   need_version=no
2227   soname_spec='${libname}${release}.so'
2228   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so $libname.so'
2229   shlibpath_var=LD_LIBRARY_PATH
2230   sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
2231   sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
2232   ;;
2233
2234 sco3.2v5*)
2235   version_type=osf
2236   soname_spec='${libname}${release}.so$major'
2237   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2238   shlibpath_var=LD_LIBRARY_PATH
2239   ;;
2240
2241 solaris*)
2242   version_type=linux
2243   need_lib_prefix=no
2244   need_version=no
2245   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2246   soname_spec='${libname}${release}.so$major'
2247   shlibpath_var=LD_LIBRARY_PATH
2248   shlibpath_overrides_runpath=yes
2249   hardcode_into_libs=yes
2250   # ldd complains unless libraries are executable
2251   postinstall_cmds='chmod +x $lib'
2252   ;;
2253
2254 sunos4*)
2255   version_type=sunos
2256   library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
2257   finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
2258   shlibpath_var=LD_LIBRARY_PATH
2259   shlibpath_overrides_runpath=yes
2260   if test "$with_gnu_ld" = yes; then
2261     need_lib_prefix=no
2262   fi
2263   need_version=yes
2264   ;;
2265
2266 sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
2267   version_type=linux
2268   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2269   soname_spec='${libname}${release}.so$major'
2270   shlibpath_var=LD_LIBRARY_PATH
2271   case $host_vendor in
2272     sni)
2273       shlibpath_overrides_runpath=no
2274       ;;
2275     motorola)
2276       need_lib_prefix=no
2277       need_version=no
2278       shlibpath_overrides_runpath=no
2279       sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
2280       ;;
2281   esac
2282   ;;
2283
2284 uts4*)
2285   version_type=linux
2286   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2287   soname_spec='${libname}${release}.so$major'
2288   shlibpath_var=LD_LIBRARY_PATH
2289   ;;
2290
2291 dgux*)
2292   version_type=linux
2293   need_lib_prefix=no
2294   need_version=no
2295   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
2296   soname_spec='${libname}${release}.so$major'
2297   shlibpath_var=LD_LIBRARY_PATH
2298   ;;
2299
2300 sysv4*MP*)
2301   if test -d /usr/nec ;then
2302     version_type=linux
2303     library_names_spec='$libname.so.$versuffix $libname.so.$major $libname.so'
2304     soname_spec='$libname.so.$major'
2305     shlibpath_var=LD_LIBRARY_PATH
2306   fi
2307   ;;
2308
2309 *)
2310   dynamic_linker=no
2311   ;;
2312 esac
2313 AC_MSG_RESULT([$dynamic_linker])
2314 test "$dynamic_linker" = no && can_build_shared=no
2315 ##
2316 ## END FIXME
2317
2318 ## FIXME: this should be a separate macro
2319 ##
2320 # Report the final consequences.
2321 AC_MSG_CHECKING([if libtool supports shared libraries])
2322 AC_MSG_RESULT([$can_build_shared])
2323 ##
2324 ## END FIXME
2325
2326 ## FIXME: this should be a separate macro
2327 ##
2328 AC_MSG_CHECKING([whether to build shared libraries])
2329 test "$can_build_shared" = "no" && enable_shared=no
2330
2331 # On AIX, shared libraries and static libraries use the same namespace, and
2332 # are all built from PIC.
2333 case "$host_os" in
2334 aix3*)
2335   test "$enable_shared" = yes && enable_static=no
2336   if test -n "$RANLIB"; then
2337     archive_cmds="$archive_cmds~\$RANLIB \$lib"
2338     postinstall_cmds='$RANLIB $lib'
2339   fi
2340   ;;
2341
2342 aix4*)
2343   if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
2344     test "$enable_shared" = yes && enable_static=no
2345   fi
2346   ;;
2347 esac
2348 AC_MSG_RESULT([$enable_shared])
2349 ##
2350 ## END FIXME
2351
2352 ## FIXME: this should be a separate macro
2353 ##
2354 AC_MSG_CHECKING([whether to build static libraries])
2355 # Make sure either enable_shared or enable_static is yes.
2356 test "$enable_shared" = yes || enable_static=yes
2357 AC_MSG_RESULT([$enable_static])
2358 ##
2359 ## END FIXME
2360
2361 if test "$hardcode_action" = relink; then
2362   # Fast installation is not supported
2363   enable_fast_install=no
2364 elif test "$shlibpath_overrides_runpath" = yes ||
2365      test "$enable_shared" = no; then
2366   # Fast installation is not necessary
2367   enable_fast_install=needless
2368 fi
2369
2370 variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
2371 if test "$GCC" = yes; then
2372   variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
2373 fi
2374
2375 AC_LIBTOOL_DLOPEN_SELF
2376
2377 ## FIXME: this should be a separate macro
2378 ##
2379 if test "$enable_shared" = yes && test "$GCC" = yes; then
2380   case $archive_cmds in
2381   *'~'*)
2382     # FIXME: we may have to deal with multi-command sequences.
2383     ;;
2384   '$CC '*)
2385     # Test whether the compiler implicitly links with -lc since on some
2386     # systems, -lgcc has to come before -lc. If gcc already passes -lc
2387     # to ld, don't add -lc before -lgcc.
2388     AC_MSG_CHECKING([whether -lc should be explicitly linked in])
2389     AC_CACHE_VAL([lt_cv_archive_cmds_need_lc],
2390     [$rm conftest*
2391     echo 'static int dummy;' > conftest.$ac_ext
2392
2393     if AC_TRY_EVAL(ac_compile); then
2394       soname=conftest
2395       lib=conftest
2396       libobjs=conftest.$ac_objext
2397       deplibs=
2398       wl=$lt_cv_prog_cc_wl
2399       compiler_flags=-v
2400       linker_flags=-v
2401       verstring=
2402       output_objdir=.
2403       libname=conftest
2404       save_allow_undefined_flag=$allow_undefined_flag
2405       allow_undefined_flag=
2406       if AC_TRY_EVAL(archive_cmds 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1)
2407       then
2408         lt_cv_archive_cmds_need_lc=no
2409       else
2410         lt_cv_archive_cmds_need_lc=yes
2411       fi
2412       allow_undefined_flag=$save_allow_undefined_flag
2413     else
2414       cat conftest.err 1>&5
2415     fi])
2416     AC_MSG_RESULT([$lt_cv_archive_cmds_need_lc])
2417     ;;
2418   esac
2419 fi
2420 need_lc=${lt_cv_archive_cmds_need_lc-yes}
2421 ##
2422 ## END FIXME
2423
2424 ## FIXME: this should be a separate macro
2425 ##
2426 # The second clause should only fire when bootstrapping the
2427 # libtool distribution, otherwise you forgot to ship ltmain.sh
2428 # with your package, and you will get complaints that there are
2429 # no rules to generate ltmain.sh.
2430 if test -f "$ltmain"; then
2431   :
2432 else
2433   # If there is no Makefile yet, we rely on a make rule to execute
2434   # `config.status --recheck' to rerun these tests and create the
2435   # libtool script then.
2436   test -f Makefile && make "$ltmain"
2437 fi
2438
2439 if test -f "$ltmain"; then
2440   trap "$rm \"${ofile}T\"; exit 1" 1 2 15
2441   $rm -f "${ofile}T"
2442
2443   echo creating $ofile
2444
2445   # Now quote all the things that may contain metacharacters while being
2446   # careful not to overquote the AC_SUBSTed values.  We take copies of the
2447   # variables and quote the copies for generation of the libtool script.
2448   for var in echo old_CC old_CFLAGS \
2449     AR AR_FLAGS CC LD LN_S NM SHELL \
2450     reload_flag reload_cmds wl \
2451     pic_flag link_static_flag no_builtin_flag export_dynamic_flag_spec \
2452     thread_safe_flag_spec whole_archive_flag_spec libname_spec \
2453     library_names_spec soname_spec \
2454     RANLIB old_archive_cmds old_archive_from_new_cmds old_postinstall_cmds \
2455     old_postuninstall_cmds archive_cmds archive_expsym_cmds postinstall_cmds \
2456     postuninstall_cmds extract_expsyms_cmds old_archive_from_expsyms_cmds \
2457     old_striplib striplib file_magic_cmd export_symbols_cmds \
2458     deplibs_check_method allow_undefined_flag no_undefined_flag \
2459     finish_cmds finish_eval global_symbol_pipe global_symbol_to_cdecl \
2460     global_symbol_to_c_name_address \
2461     hardcode_libdir_flag_spec hardcode_libdir_separator  \
2462     sys_lib_search_path_spec sys_lib_dlsearch_path_spec \
2463     compiler_c_o compiler_o_lo need_locks exclude_expsyms include_expsyms; do
2464
2465     case $var in
2466     reload_cmds | old_archive_cmds | old_archive_from_new_cmds | \
2467     old_postinstall_cmds | old_postuninstall_cmds | \
2468     export_symbols_cmds | archive_cmds | archive_expsym_cmds | \
2469     extract_expsyms_cmds | old_archive_from_expsyms_cmds | \
2470     postinstall_cmds | postuninstall_cmds | \
2471     finish_cmds | sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
2472       # Double-quote double-evaled strings.
2473       eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
2474       ;;
2475     *)
2476       eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
2477       ;;
2478     esac
2479   done
2480
2481   cat <<__EOF__ > "${ofile}T"
2482 #! $SHELL
2483
2484 # `$echo "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
2485 # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
2486 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
2487 #
2488 # Copyright (C) 1996-2000 Free Software Foundation, Inc.
2489 # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
2490 #
2491 # This program is free software; you can redistribute it and/or modify
2492 # it under the terms of the GNU General Public License as published by
2493 # the Free Software Foundation; either version 2 of the License, or
2494 # (at your option) any later version.
2495 #
2496 # This program is distributed in the hope that it will be useful, but
2497 # WITHOUT ANY WARRANTY; without even the implied warranty of
2498 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
2499 # General Public License for more details.
2500 #
2501 # You should have received a copy of the GNU General Public License
2502 # along with this program; if not, write to the Free Software
2503 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2504 #
2505 # As a special exception to the GNU General Public License, if you
2506 # distribute this file as part of a program that contains a
2507 # configuration script generated by Autoconf, you may include it under
2508 # the same distribution terms that you use for the rest of that program.
2509
2510 # Sed that helps us avoid accidentally triggering echo(1) options like -n.
2511 Xsed="sed -e s/^X//"
2512
2513 # The HP-UX ksh and POSIX shell print the target directory to stdout
2514 # if CDPATH is set.
2515 if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
2516
2517 # ### BEGIN LIBTOOL CONFIG
2518
2519 # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
2520
2521 # Shell to use when invoking shell scripts.
2522 SHELL=$lt_SHELL
2523
2524 # Whether or not to build shared libraries.
2525 build_libtool_libs=$enable_shared
2526
2527 # Whether or not to build static libraries.
2528 build_old_libs=$enable_static
2529
2530 # Whether or not to add -lc for building shared libraries.
2531 build_libtool_need_lc=$need_lc
2532
2533 # Whether or not to optimize for fast installation.
2534 fast_install=$enable_fast_install
2535
2536 # The host system.
2537 host_alias=$host_alias
2538 host=$host
2539
2540 # An echo program that does not interpret backslashes.
2541 echo=$lt_echo
2542
2543 # The archiver.
2544 AR=$lt_AR
2545 AR_FLAGS=$lt_AR_FLAGS
2546
2547 # The default C compiler.
2548 CC=$lt_CC
2549
2550 # Is the compiler the GNU C compiler?
2551 with_gcc=$GCC
2552
2553 # The linker used to build libraries.
2554 LD=$lt_LD
2555
2556 # Whether we need hard or soft links.
2557 LN_S=$lt_LN_S
2558
2559 # A BSD-compatible nm program.
2560 NM=$lt_NM
2561
2562 # A symbol stripping program
2563 STRIP=$STRIP
2564
2565 # Used to examine libraries when file_magic_cmd begins "file"
2566 MAGIC_CMD=$MAGIC_CMD
2567
2568 # Used on cygwin: DLL creation program.
2569 DLLTOOL="$DLLTOOL"
2570
2571 # Used on cygwin: object dumper.
2572 OBJDUMP="$OBJDUMP"
2573
2574 # Used on cygwin: assembler.
2575 AS="$AS"
2576
2577 # The name of the directory that contains temporary libtool files.
2578 objdir=$objdir
2579
2580 # How to create reloadable object files.
2581 reload_flag=$lt_reload_flag
2582 reload_cmds=$lt_reload_cmds
2583
2584 # How to pass a linker flag through the compiler.
2585 wl=$lt_wl
2586
2587 # Object file suffix (normally "o").
2588 objext="$ac_objext"
2589
2590 # Old archive suffix (normally "a").
2591 libext="$libext"
2592
2593 # Executable file suffix (normally "").
2594 exeext="$exeext"
2595
2596 # Additional compiler flags for building library objects.
2597 pic_flag=$lt_pic_flag
2598 pic_mode=$pic_mode
2599
2600 # Does compiler simultaneously support -c and -o options?
2601 compiler_c_o=$lt_compiler_c_o
2602
2603 # Can we write directly to a .lo ?
2604 compiler_o_lo=$lt_compiler_o_lo
2605
2606 # Must we lock files when doing compilation ?
2607 need_locks=$lt_need_locks
2608
2609 # Do we need the lib prefix for modules?
2610 need_lib_prefix=$need_lib_prefix
2611
2612 # Do we need a version for libraries?
2613 need_version=$need_version
2614
2615 # Whether dlopen is supported.
2616 dlopen_support=$enable_dlopen
2617
2618 # Whether dlopen of programs is supported.
2619 dlopen_self=$enable_dlopen_self
2620
2621 # Whether dlopen of statically linked programs is supported.
2622 dlopen_self_static=$enable_dlopen_self_static
2623
2624 # Compiler flag to prevent dynamic linking.
2625 link_static_flag=$lt_link_static_flag
2626
2627 # Compiler flag to turn off builtin functions.
2628 no_builtin_flag=$lt_no_builtin_flag
2629
2630 # Compiler flag to allow reflexive dlopens.
2631 export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
2632
2633 # Compiler flag to generate shared objects directly from archives.
2634 whole_archive_flag_spec=$lt_whole_archive_flag_spec
2635
2636 # Compiler flag to generate thread-safe objects.
2637 thread_safe_flag_spec=$lt_thread_safe_flag_spec
2638
2639 # Library versioning type.
2640 version_type=$version_type
2641
2642 # Format of library name prefix.
2643 libname_spec=$lt_libname_spec
2644
2645 # List of archive names.  First name is the real one, the rest are links.
2646 # The last name is the one that the linker finds with -lNAME.
2647 library_names_spec=$lt_library_names_spec
2648
2649 # The coded name of the library, if different from the real name.
2650 soname_spec=$lt_soname_spec
2651
2652 # Commands used to build and install an old-style archive.
2653 RANLIB=$lt_RANLIB
2654 old_archive_cmds=$lt_old_archive_cmds
2655 old_postinstall_cmds=$lt_old_postinstall_cmds
2656 old_postuninstall_cmds=$lt_old_postuninstall_cmds
2657
2658 # Create an old-style archive from a shared archive.
2659 old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
2660
2661 # Create a temporary old-style archive to link instead of a shared archive.
2662 old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
2663
2664 # Commands used to build and install a shared archive.
2665 archive_cmds=$lt_archive_cmds
2666 archive_expsym_cmds=$lt_archive_expsym_cmds
2667 postinstall_cmds=$lt_postinstall_cmds
2668 postuninstall_cmds=$lt_postuninstall_cmds
2669
2670 # Commands to strip libraries.
2671 old_striplib=$lt_old_striplib
2672 striplib=$lt_striplib
2673
2674 # Method to check whether dependent libraries are shared objects.
2675 deplibs_check_method=$lt_deplibs_check_method
2676
2677 # Command to use when deplibs_check_method == file_magic.
2678 file_magic_cmd=$lt_file_magic_cmd
2679
2680 # Flag that allows shared libraries with undefined symbols to be built.
2681 allow_undefined_flag=$lt_allow_undefined_flag
2682
2683 # Flag that forces no undefined symbols.
2684 no_undefined_flag=$lt_no_undefined_flag
2685
2686 # Commands used to finish a libtool library installation in a directory.
2687 finish_cmds=$lt_finish_cmds
2688
2689 # Same as above, but a single script fragment to be evaled but not shown.
2690 finish_eval=$lt_finish_eval
2691
2692 # Take the output of nm and produce a listing of raw symbols and C names.
2693 global_symbol_pipe=$lt_global_symbol_pipe
2694
2695 # Transform the output of nm in a proper C declaration
2696 global_symbol_to_cdecl=$lt_global_symbol_to_cdecl
2697
2698 # Transform the output of nm in a C name address pair
2699 global_symbol_to_c_name_address=$lt_global_symbol_to_c_name_address
2700
2701 # This is the shared library runtime path variable.
2702 runpath_var=$runpath_var
2703
2704 # This is the shared library path variable.
2705 shlibpath_var=$shlibpath_var
2706
2707 # Is shlibpath searched before the hard-coded library search path?
2708 shlibpath_overrides_runpath=$shlibpath_overrides_runpath
2709
2710 # How to hardcode a shared library path into an executable.
2711 hardcode_action=$hardcode_action
2712
2713 # Whether we should hardcode library paths into libraries.
2714 hardcode_into_libs=$hardcode_into_libs
2715
2716 # Flag to hardcode \$libdir into a binary during linking.
2717 # This must work even if \$libdir does not exist.
2718 hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
2719
2720 # Whether we need a single -rpath flag with a separated argument.
2721 hardcode_libdir_separator=$lt_hardcode_libdir_separator
2722
2723 # Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
2724 # resulting binary.
2725 hardcode_direct=$hardcode_direct
2726
2727 # Set to yes if using the -LDIR flag during linking hardcodes DIR into the
2728 # resulting binary.
2729 hardcode_minus_L=$hardcode_minus_L
2730
2731 # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
2732 # the resulting binary.
2733 hardcode_shlibpath_var=$hardcode_shlibpath_var
2734
2735 # Variables whose values should be saved in libtool wrapper scripts and
2736 # restored at relink time.
2737 variables_saved_for_relink="$variables_saved_for_relink"
2738
2739 # Whether libtool must link a program against all its dependency libraries.
2740 link_all_deplibs=$link_all_deplibs
2741
2742 # Compile-time system search path for libraries
2743 sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
2744
2745 # Run-time system search path for libraries
2746 sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
2747
2748 # Fix the shell variable \$srcfile for the compiler.
2749 fix_srcfile_path="$fix_srcfile_path"
2750
2751 # Set to yes if exported symbols are required.
2752 always_export_symbols=$always_export_symbols
2753
2754 # The commands to list exported symbols.
2755 export_symbols_cmds=$lt_export_symbols_cmds
2756
2757 # The commands to extract the exported symbol list from a shared archive.
2758 extract_expsyms_cmds=$lt_extract_expsyms_cmds
2759
2760 # Symbols that should not be listed in the preloaded symbols.
2761 exclude_expsyms=$lt_exclude_expsyms
2762
2763 # Symbols that must always be exported.
2764 include_expsyms=$lt_include_expsyms
2765
2766 # ### END LIBTOOL CONFIG
2767
2768 __EOF__
2769
2770   case $host_os in
2771   aix3*)
2772     cat <<\EOF >> "${ofile}T"
2773
2774 # AIX sometimes has problems with the GCC collect2 program.  For some
2775 # reason, if we set the COLLECT_NAMES environment variable, the problems
2776 # vanish in a puff of smoke.
2777 if test "X${COLLECT_NAMES+set}" != Xset; then
2778   COLLECT_NAMES=
2779   export COLLECT_NAMES
2780 fi
2781 EOF
2782     ;;
2783   esac
2784
2785   case $host_os in
2786   cygwin* | mingw* | pw32* | os2*)
2787     cat <<'EOF' >> "${ofile}T"
2788       # This is a source program that is used to create dlls on Windows
2789       # Don't remove nor modify the starting and closing comments
2790 # /* ltdll.c starts here */
2791 # #define WIN32_LEAN_AND_MEAN
2792 # #include <windows.h>
2793 # #undef WIN32_LEAN_AND_MEAN
2794 # #include <stdio.h>
2795 #
2796 # #ifndef __CYGWIN__
2797 # #  ifdef __CYGWIN32__
2798 # #    define __CYGWIN__ __CYGWIN32__
2799 # #  endif
2800 # #endif
2801 #
2802 # #ifdef __cplusplus
2803 # extern "C" {
2804 # #endif
2805 # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved);
2806 # #ifdef __cplusplus
2807 # }
2808 # #endif
2809 #
2810 # #ifdef __CYGWIN__
2811 # #include <cygwin/cygwin_dll.h>
2812 # DECLARE_CYGWIN_DLL( DllMain );
2813 # #endif
2814 # HINSTANCE __hDllInstance_base;
2815 #
2816 # BOOL APIENTRY
2817 # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved)
2818 # {
2819 #   __hDllInstance_base = hInst;
2820 #   return TRUE;
2821 # }
2822 # /* ltdll.c ends here */
2823         # This is a source program that is used to create import libraries
2824         # on Windows for dlls which lack them. Don't remove nor modify the
2825         # starting and closing comments
2826 # /* impgen.c starts here */
2827 # /*   Copyright (C) 1999-2000 Free Software Foundation, Inc.
2828 #
2829 #  This file is part of GNU libtool.
2830 #
2831 #  This program is free software; you can redistribute it and/or modify
2832 #  it under the terms of the GNU General Public License as published by
2833 #  the Free Software Foundation; either version 2 of the License, or
2834 #  (at your option) any later version.
2835 #
2836 #  This program is distributed in the hope that it will be useful,
2837 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
2838 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2839 #  GNU General Public License for more details.
2840 #
2841 #  You should have received a copy of the GNU General Public License
2842 #  along with this program; if not, write to the Free Software
2843 #  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2844 #  */
2845 #
2846 # #include <stdio.h>            /* for printf() */
2847 # #include <unistd.h>           /* for open(), lseek(), read() */
2848 # #include <fcntl.h>            /* for O_RDONLY, O_BINARY */
2849 # #include <string.h>           /* for strdup() */
2850 #
2851 # /* O_BINARY isn't required (or even defined sometimes) under Unix */
2852 # #ifndef O_BINARY
2853 # #define O_BINARY 0
2854 # #endif
2855 #
2856 # static unsigned int
2857 # pe_get16 (fd, offset)
2858 #      int fd;
2859 #      int offset;
2860 # {
2861 #   unsigned char b[2];
2862 #   lseek (fd, offset, SEEK_SET);
2863 #   read (fd, b, 2);
2864 #   return b[0] + (b[1]<<8);
2865 # }
2866 #
2867 # static unsigned int
2868 # pe_get32 (fd, offset)
2869 #     int fd;
2870 #     int offset;
2871 # {
2872 #   unsigned char b[4];
2873 #   lseek (fd, offset, SEEK_SET);
2874 #   read (fd, b, 4);
2875 #   return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24);
2876 # }
2877 #
2878 # static unsigned int
2879 # pe_as32 (ptr)
2880 #      void *ptr;
2881 # {
2882 #   unsigned char *b = ptr;
2883 #   return b[0] + (b[1]<<8) + (b[2]<<16) + (b[3]<<24);
2884 # }
2885 #
2886 # int
2887 # main (argc, argv)
2888 #     int argc;
2889 #     char *argv[];
2890 # {
2891 #     int dll;
2892 #     unsigned long pe_header_offset, opthdr_ofs, num_entries, i;
2893 #     unsigned long export_rva, export_size, nsections, secptr, expptr;
2894 #     unsigned long name_rvas, nexp;
2895 #     unsigned char *expdata, *erva;
2896 #     char *filename, *dll_name;
2897 #
2898 #     filename = argv[1];
2899 #
2900 #     dll = open(filename, O_RDONLY|O_BINARY);
2901 #     if (dll < 1)
2902 #       return 1;
2903 #
2904 #     dll_name = filename;
2905 #
2906 #     for (i=0; filename[i]; i++)
2907 #       if (filename[i] == '/' || filename[i] == '\\'  || filename[i] == ':')
2908 #           dll_name = filename + i +1;
2909 #
2910 #     pe_header_offset = pe_get32 (dll, 0x3c);
2911 #     opthdr_ofs = pe_header_offset + 4 + 20;
2912 #     num_entries = pe_get32 (dll, opthdr_ofs + 92);
2913 #
2914 #     if (num_entries < 1) /* no exports */
2915 #       return 1;
2916 #
2917 #     export_rva = pe_get32 (dll, opthdr_ofs + 96);
2918 #     export_size = pe_get32 (dll, opthdr_ofs + 100);
2919 #     nsections = pe_get16 (dll, pe_header_offset + 4 +2);
2920 #     secptr = (pe_header_offset + 4 + 20 +
2921 #             pe_get16 (dll, pe_header_offset + 4 + 16));
2922 #
2923 #     expptr = 0;
2924 #     for (i = 0; i < nsections; i++)
2925 #     {
2926 #       char sname[8];
2927 #       unsigned long secptr1 = secptr + 40 * i;
2928 #       unsigned long vaddr = pe_get32 (dll, secptr1 + 12);
2929 #       unsigned long vsize = pe_get32 (dll, secptr1 + 16);
2930 #       unsigned long fptr = pe_get32 (dll, secptr1 + 20);
2931 #       lseek(dll, secptr1, SEEK_SET);
2932 #       read(dll, sname, 8);
2933 #       if (vaddr <= export_rva && vaddr+vsize > export_rva)
2934 #       {
2935 #           expptr = fptr + (export_rva - vaddr);
2936 #           if (export_rva + export_size > vaddr + vsize)
2937 #               export_size = vsize - (export_rva - vaddr);
2938 #           break;
2939 #       }
2940 #     }
2941 #
2942 #     expdata = (unsigned char*)malloc(export_size);
2943 #     lseek (dll, expptr, SEEK_SET);
2944 #     read (dll, expdata, export_size);
2945 #     erva = expdata - export_rva;
2946 #
2947 #     nexp = pe_as32 (expdata+24);
2948 #     name_rvas = pe_as32 (expdata+32);
2949 #
2950 #     printf ("EXPORTS\n");
2951 #     for (i = 0; i<nexp; i++)
2952 #     {
2953 #       unsigned long name_rva = pe_as32 (erva+name_rvas+i*4);
2954 #       printf ("\t%s @ %ld ;\n", erva+name_rva, 1+ i);
2955 #     }
2956 #
2957 #     return 0;
2958 # }
2959 # /* impgen.c ends here */
2960
2961 EOF
2962     ;;
2963   esac
2964
2965   # We use sed instead of cat because bash on DJGPP gets confused if
2966   # if finds mixed CR/LF and LF-only lines.  Since sed operates in
2967   # text mode, it properly converts lines to CR/LF.  This bash problem
2968   # is reportedly fixed, but why not run on old versions too?
2969   sed '$q' "$ltmain" >> "${ofile}T" || (rm -f "${ofile}T"; exit 1)
2970
2971   mv -f "${ofile}T" "$ofile" || \
2972     (rm -f "$ofile" && cp "${ofile}T" "$ofile" && rm -f "${ofile}T")
2973   chmod +x "$ofile"
2974 fi
2975 ##
2976 ## END FIXME
2977
2978 ])# _LT_AC_LTCONFIG_HACK
2979
2980 # AC_LIBTOOL_DLOPEN - enable checks for dlopen support
2981 AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])])
2982
2983 # AC_LIBTOOL_WIN32_DLL - declare package support for building win32 dll's
2984 AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])])
2985
2986 # AC_ENABLE_SHARED - implement the --enable-shared flag
2987 # Usage: AC_ENABLE_SHARED[(DEFAULT)]
2988 #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
2989 #   `yes'.
2990 AC_DEFUN([AC_ENABLE_SHARED],
2991 [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
2992 AC_ARG_ENABLE(shared,
2993 changequote(<<, >>)dnl
2994 <<  --enable-shared[=PKGS]  build shared libraries [default=>>AC_ENABLE_SHARED_DEFAULT],
2995 changequote([, ])dnl
2996 [p=${PACKAGE-default}
2997 case $enableval in
2998 yes) enable_shared=yes ;;
2999 no) enable_shared=no ;;
3000 *)
3001   enable_shared=no
3002   # Look at the argument we got.  We use all the common list separators.
3003   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
3004   for pkg in $enableval; do
3005     if test "X$pkg" = "X$p"; then
3006       enable_shared=yes
3007     fi
3008   done
3009   IFS="$ac_save_ifs"
3010   ;;
3011 esac],
3012 enable_shared=AC_ENABLE_SHARED_DEFAULT)dnl
3013 ])
3014
3015 # AC_DISABLE_SHARED - set the default shared flag to --disable-shared
3016 AC_DEFUN([AC_DISABLE_SHARED],
3017 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3018 AC_ENABLE_SHARED(no)])
3019
3020 # AC_ENABLE_STATIC - implement the --enable-static flag
3021 # Usage: AC_ENABLE_STATIC[(DEFAULT)]
3022 #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
3023 #   `yes'.
3024 AC_DEFUN([AC_ENABLE_STATIC],
3025 [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
3026 AC_ARG_ENABLE(static,
3027 changequote(<<, >>)dnl
3028 <<  --enable-static[=PKGS]  build static libraries [default=>>AC_ENABLE_STATIC_DEFAULT],
3029 changequote([, ])dnl
3030 [p=${PACKAGE-default}
3031 case $enableval in
3032 yes) enable_static=yes ;;
3033 no) enable_static=no ;;
3034 *)
3035   enable_static=no
3036   # Look at the argument we got.  We use all the common list separators.
3037   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
3038   for pkg in $enableval; do
3039     if test "X$pkg" = "X$p"; then
3040       enable_static=yes
3041     fi
3042   done
3043   IFS="$ac_save_ifs"
3044   ;;
3045 esac],
3046 enable_static=AC_ENABLE_STATIC_DEFAULT)dnl
3047 ])
3048
3049 # AC_DISABLE_STATIC - set the default static flag to --disable-static
3050 AC_DEFUN([AC_DISABLE_STATIC],
3051 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3052 AC_ENABLE_STATIC(no)])
3053
3054
3055 # AC_ENABLE_FAST_INSTALL - implement the --enable-fast-install flag
3056 # Usage: AC_ENABLE_FAST_INSTALL[(DEFAULT)]
3057 #   Where DEFAULT is either `yes' or `no'.  If omitted, it defaults to
3058 #   `yes'.
3059 AC_DEFUN([AC_ENABLE_FAST_INSTALL],
3060 [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
3061 AC_ARG_ENABLE(fast-install,
3062 changequote(<<, >>)dnl
3063 <<  --enable-fast-install[=PKGS]  optimize for fast installation [default=>>AC_ENABLE_FAST_INSTALL_DEFAULT],
3064 changequote([, ])dnl
3065 [p=${PACKAGE-default}
3066 case $enableval in
3067 yes) enable_fast_install=yes ;;
3068 no) enable_fast_install=no ;;
3069 *)
3070   enable_fast_install=no
3071   # Look at the argument we got.  We use all the common list separators.
3072   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
3073   for pkg in $enableval; do
3074     if test "X$pkg" = "X$p"; then
3075       enable_fast_install=yes
3076     fi
3077   done
3078   IFS="$ac_save_ifs"
3079   ;;
3080 esac],
3081 enable_fast_install=AC_ENABLE_FAST_INSTALL_DEFAULT)dnl
3082 ])
3083
3084 # AC_DISABLE_FAST_INSTALL - set the default to --disable-fast-install
3085 AC_DEFUN([AC_DISABLE_FAST_INSTALL],
3086 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3087 AC_ENABLE_FAST_INSTALL(no)])
3088
3089 # AC_LIBTOOL_PICMODE - implement the --with-pic flag
3090 # Usage: AC_LIBTOOL_PICMODE[(MODE)]
3091 #   Where MODE is either `yes' or `no'.  If omitted, it defaults to
3092 #   `both'.
3093 AC_DEFUN([AC_LIBTOOL_PICMODE],
3094 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3095 pic_mode=ifelse($#,1,$1,default)])
3096
3097
3098 # AC_PATH_TOOL_PREFIX - find a file program which can recognise shared library
3099 AC_DEFUN([AC_PATH_TOOL_PREFIX],
3100 [AC_MSG_CHECKING([for $1])
3101 AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
3102 [case $MAGIC_CMD in
3103   /*)
3104   lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
3105   ;;
3106   ?:/*)
3107   lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
3108   ;;
3109   *)
3110   ac_save_MAGIC_CMD="$MAGIC_CMD"
3111   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
3112 dnl $ac_dummy forces splitting on constant user-supplied paths.
3113 dnl POSIX.2 word splitting is done only on the output of word expansions,
3114 dnl not every word.  This closes a longstanding sh security hole.
3115   ac_dummy="ifelse([$2], , $PATH, [$2])"
3116   for ac_dir in $ac_dummy; do
3117     test -z "$ac_dir" && ac_dir=.
3118     if test -f $ac_dir/$1; then
3119       lt_cv_path_MAGIC_CMD="$ac_dir/$1"
3120       if test -n "$file_magic_test_file"; then
3121         case $deplibs_check_method in
3122         "file_magic "*)
3123           file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
3124           MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
3125           if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
3126             egrep "$file_magic_regex" > /dev/null; then
3127             :
3128           else
3129             cat <<EOF 1>&2
3130
3131 *** Warning: the command libtool uses to detect shared libraries,
3132 *** $file_magic_cmd, produces output that libtool cannot recognize.
3133 *** The result is that libtool may fail to recognize shared libraries
3134 *** as such.  This will affect the creation of libtool libraries that
3135 *** depend on shared libraries, but programs linked with such libtool
3136 *** libraries will work regardless of this problem.  Nevertheless, you
3137 *** may want to report the problem to your system manager and/or to
3138 *** bug-libtool@gnu.org
3139
3140 EOF
3141           fi ;;
3142         esac
3143       fi
3144       break
3145     fi
3146   done
3147   IFS="$ac_save_ifs"
3148   MAGIC_CMD="$ac_save_MAGIC_CMD"
3149   ;;
3150 esac])
3151 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
3152 if test -n "$MAGIC_CMD"; then
3153   AC_MSG_RESULT($MAGIC_CMD)
3154 else
3155   AC_MSG_RESULT(no)
3156 fi
3157 ])
3158
3159
3160 # AC_PATH_MAGIC - find a file program which can recognise a shared library
3161 AC_DEFUN([AC_PATH_MAGIC],
3162 [AC_REQUIRE([AC_CHECK_TOOL_PREFIX])dnl
3163 AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin:$PATH)
3164 if test -z "$lt_cv_path_MAGIC_CMD"; then
3165   if test -n "$ac_tool_prefix"; then
3166     AC_PATH_TOOL_PREFIX(file, /usr/bin:$PATH)
3167   else
3168     MAGIC_CMD=:
3169   fi
3170 fi
3171 ])
3172
3173
3174 # AC_PROG_LD - find the path to the GNU or non-GNU linker
3175 AC_DEFUN([AC_PROG_LD],
3176 [AC_ARG_WITH(gnu-ld,
3177 [  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]],
3178 test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)
3179 AC_REQUIRE([AC_PROG_CC])dnl
3180 AC_REQUIRE([AC_CANONICAL_HOST])dnl
3181 AC_REQUIRE([AC_CANONICAL_BUILD])dnl
3182 AC_REQUIRE([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR])dnl
3183 ac_prog=ld
3184 if test "$GCC" = yes; then
3185   # Check if gcc -print-prog-name=ld gives a path.
3186   AC_MSG_CHECKING([for ld used by GCC])
3187   case $host in
3188   *-*-mingw*)
3189     # gcc leaves a trailing carriage return which upsets mingw
3190     ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
3191   *)
3192     ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
3193   esac
3194   case $ac_prog in
3195     # Accept absolute paths.
3196     [[\\/]]* | [[A-Za-z]]:[[\\/]]*)
3197       re_direlt='/[[^/]][[^/]]*/\.\./'
3198       # Canonicalize the path of ld
3199       ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
3200       while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
3201         ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
3202       done
3203       test -z "$LD" && LD="$ac_prog"
3204       ;;
3205   "")
3206     # If it fails, then pretend we aren't using GCC.
3207     ac_prog=ld
3208     ;;
3209   *)
3210     # If it is relative, then search for the first ld in PATH.
3211     with_gnu_ld=unknown
3212     ;;
3213   esac
3214 elif test "$with_gnu_ld" = yes; then
3215   AC_MSG_CHECKING([for GNU ld])
3216 else
3217   AC_MSG_CHECKING([for non-GNU ld])
3218 fi
3219 AC_CACHE_VAL(lt_cv_path_LD,
3220 [if test -z "$LD"; then
3221   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
3222   for ac_dir in $PATH; do
3223     test -z "$ac_dir" && ac_dir=.
3224     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
3225       lt_cv_path_LD="$ac_dir/$ac_prog"
3226       # Check to see if the program is GNU ld.  I'd rather use --version,
3227       # but apparently some GNU ld's only accept -v.
3228       # Break only if it was the GNU/non-GNU ld that we prefer.
3229       if "$lt_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
3230         test "$with_gnu_ld" != no && break
3231       else
3232         test "$with_gnu_ld" != yes && break
3233       fi
3234     fi
3235   done
3236   IFS="$ac_save_ifs"
3237 else
3238   lt_cv_path_LD="$LD" # Let the user override the test with a path.
3239 fi])
3240 LD="$lt_cv_path_LD"
3241 if test -n "$LD"; then
3242   AC_MSG_RESULT($LD)
3243 else
3244   AC_MSG_RESULT(no)
3245 fi
3246 test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
3247 AC_PROG_LD_GNU
3248 ])
3249
3250 # AC_PROG_LD_GNU -
3251 AC_DEFUN([AC_PROG_LD_GNU],
3252 [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
3253 [# I'd rather use --version here, but apparently some GNU ld's only accept -v.
3254 if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
3255   lt_cv_prog_gnu_ld=yes
3256 else
3257   lt_cv_prog_gnu_ld=no
3258 fi])
3259 with_gnu_ld=$lt_cv_prog_gnu_ld
3260 ])
3261
3262 # AC_PROG_LD_RELOAD_FLAG - find reload flag for linker
3263 #   -- PORTME Some linkers may need a different reload flag.
3264 AC_DEFUN([AC_PROG_LD_RELOAD_FLAG],
3265 [AC_CACHE_CHECK([for $LD option to reload object files], lt_cv_ld_reload_flag,
3266 [lt_cv_ld_reload_flag='-r'])
3267 reload_flag=$lt_cv_ld_reload_flag
3268 test -n "$reload_flag" && reload_flag=" $reload_flag"
3269 ])
3270
3271 # AC_DEPLIBS_CHECK_METHOD - how to check for library dependencies
3272 #  -- PORTME fill in with the dynamic library characteristics
3273 AC_DEFUN([AC_DEPLIBS_CHECK_METHOD],
3274 [AC_CACHE_CHECK([how to recognise dependant libraries],
3275 lt_cv_deplibs_check_method,
3276 [lt_cv_file_magic_cmd='$MAGIC_CMD'
3277 lt_cv_file_magic_test_file=
3278 lt_cv_deplibs_check_method='unknown'
3279 # Need to set the preceding variable on all platforms that support
3280 # interlibrary dependencies.
3281 # 'none' -- dependencies not supported.
3282 # `unknown' -- same as none, but documents that we really don't know.
3283 # 'pass_all' -- all dependencies passed with no checks.
3284 # 'test_compile' -- check by making test program.
3285 # 'file_magic [[regex]]' -- check by looking for files in library path
3286 # which responds to the $file_magic_cmd with a given egrep regex.
3287 # If you have `file' or equivalent on your system and you're not sure
3288 # whether `pass_all' will *always* work, you probably want this one.
3289
3290 case $host_os in
3291 aix4* | aix5*)
3292   lt_cv_deplibs_check_method=pass_all
3293   ;;
3294
3295 beos*)
3296   lt_cv_deplibs_check_method=pass_all
3297   ;;
3298
3299 bsdi4*)
3300   lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
3301   lt_cv_file_magic_cmd='/usr/bin/file -L'
3302   lt_cv_file_magic_test_file=/shlib/libc.so
3303   ;;
3304
3305 cygwin* | mingw* | pw32*)
3306   lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
3307   lt_cv_file_magic_cmd='$OBJDUMP -f'
3308   ;;
3309
3310 darwin* | rhapsody*)
3311   lt_cv_deplibs_check_method='file_magic Mach-O dynamically linked shared library'
3312   lt_cv_file_magic_cmd='/usr/bin/file -L'
3313   case "$host_os" in
3314   rhapsody* | darwin1.[[012]])
3315     lt_cv_file_magic_test_file=`echo /System/Library/Frameworks/System.framework/Versions/*/System | head -1`
3316     ;;
3317   *) # Darwin 1.3 on
3318     lt_cv_file_magic_test_file='/usr/lib/libSystem.dylib'
3319     ;;
3320   esac
3321   ;;
3322
3323 freebsd*)
3324   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
3325     case $host_cpu in
3326     i*86 )
3327       # Not sure whether the presence of OpenBSD here was a mistake.
3328       # Let's accept both of them until this is cleared up.
3329       lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[[3-9]]86 (compact )?demand paged shared library'
3330       lt_cv_file_magic_cmd=/usr/bin/file
3331       lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
3332       ;;
3333     esac
3334   else
3335     lt_cv_deplibs_check_method=pass_all
3336   fi
3337   ;;
3338
3339 gnu*)
3340   lt_cv_deplibs_check_method=pass_all
3341   ;;
3342
3343 hpux10.20*|hpux11*)
3344   lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library'
3345   lt_cv_file_magic_cmd=/usr/bin/file
3346   lt_cv_file_magic_test_file=/usr/lib/libc.sl
3347   ;;
3348
3349 irix5* | irix6*)
3350   case $host_os in
3351   irix5*)
3352     # this will be overridden with pass_all, but let us keep it just in case
3353     lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1"
3354     ;;
3355   *)
3356     case $LD in
3357     *-32|*"-32 ") libmagic=32-bit;;
3358     *-n32|*"-n32 ") libmagic=N32;;
3359     *-64|*"-64 ") libmagic=64-bit;;
3360     *) libmagic=never-match;;
3361     esac
3362     # this will be overridden with pass_all, but let us keep it just in case
3363     lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[[1234]] dynamic lib MIPS - version 1"
3364     ;;
3365   esac
3366   lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*`
3367   lt_cv_deplibs_check_method=pass_all
3368   ;;
3369
3370 # This must be Linux ELF.
3371 linux-gnu*)
3372   case $host_cpu in
3373   alpha* | hppa* | i*86 | powerpc* | sparc* | ia64* | s390* )
3374     lt_cv_deplibs_check_method=pass_all ;;
3375   *)
3376     # glibc up to 2.1.1 does not perform some relocations on ARM
3377     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;;
3378   esac
3379   lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
3380   ;;
3381
3382 netbsd*)
3383   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
3384     lt_cv_deplibs_check_method='match_pattern /lib[[^/\.]]+\.so\.[[0-9]]+\.[[0-9]]+$'
3385   else
3386     lt_cv_deplibs_check_method='match_pattern /lib[[^/\.]]+\.so$'
3387   fi
3388   ;;
3389
3390 newos6*)
3391   lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
3392   lt_cv_file_magic_cmd=/usr/bin/file
3393   lt_cv_file_magic_test_file=/usr/lib/libnls.so
3394   ;;
3395
3396 openbsd*)
3397   lt_cv_file_magic_cmd=/usr/bin/file
3398   lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
3399   if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
3400     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB shared object'
3401   else
3402     lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library'
3403   fi
3404   ;;
3405
3406 osf3* | osf4* | osf5*)
3407   # this will be overridden with pass_all, but let us keep it just in case
3408   lt_cv_deplibs_check_method='file_magic COFF format alpha shared library'
3409   lt_cv_file_magic_test_file=/shlib/libc.so
3410   lt_cv_deplibs_check_method=pass_all
3411   ;;
3412
3413 sco3.2v5*)
3414   lt_cv_deplibs_check_method=pass_all
3415   ;;
3416
3417 solaris*)
3418   lt_cv_deplibs_check_method=pass_all
3419   lt_cv_file_magic_test_file=/lib/libc.so
3420   ;;
3421
3422 sysv5uw[[78]]* | sysv4*uw2*)
3423   lt_cv_deplibs_check_method=pass_all
3424   ;;
3425
3426 sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
3427   case $host_vendor in
3428   motorola)
3429     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]'
3430     lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
3431     ;;
3432   ncr)
3433     lt_cv_deplibs_check_method=pass_all
3434     ;;
3435   sequent)
3436     lt_cv_file_magic_cmd='/bin/file'
3437     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
3438     ;;
3439   sni)
3440     lt_cv_file_magic_cmd='/bin/file'
3441     lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
3442     lt_cv_file_magic_test_file=/lib/libc.so
3443     ;;
3444   esac
3445   ;;
3446 esac
3447 ])
3448 file_magic_cmd=$lt_cv_file_magic_cmd
3449 deplibs_check_method=$lt_cv_deplibs_check_method
3450 ])
3451
3452
3453 # AC_PROG_NM - find the path to a BSD-compatible name lister
3454 AC_DEFUN([AC_PROG_NM],
3455 [AC_REQUIRE([_LT_AC_LIBTOOL_SYS_PATH_SEPARATOR])dnl
3456 AC_MSG_CHECKING([for BSD-compatible nm])
3457 AC_CACHE_VAL(lt_cv_path_NM,
3458 [if test -n "$NM"; then
3459   # Let the user override the test.
3460   lt_cv_path_NM="$NM"
3461 else
3462   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
3463   for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
3464     test -z "$ac_dir" && ac_dir=.
3465     tmp_nm=$ac_dir/${ac_tool_prefix}nm
3466     if test -f $tmp_nm || test -f $tmp_nm$ac_exeext ; then
3467       # Check to see if the nm accepts a BSD-compat flag.
3468       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
3469       #   nm: unknown option "B" ignored
3470       # Tru64's nm complains that /dev/null is an invalid object file
3471       if ($tmp_nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep '(/dev/null|Invalid file or object type)' >/dev/null; then
3472         lt_cv_path_NM="$tmp_nm -B"
3473         break
3474       elif ($tmp_nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
3475         lt_cv_path_NM="$tmp_nm -p"
3476         break
3477       else
3478         lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
3479         continue # so that we can try to find one that supports BSD flags
3480       fi
3481     fi
3482   done
3483   IFS="$ac_save_ifs"
3484   test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
3485 fi])
3486 NM="$lt_cv_path_NM"
3487 AC_MSG_RESULT([$NM])
3488 ])
3489
3490 # AC_CHECK_LIBM - check for math library
3491 AC_DEFUN([AC_CHECK_LIBM],
3492 [AC_REQUIRE([AC_CANONICAL_HOST])dnl
3493 LIBM=
3494 case $host in
3495 *-*-beos* | *-*-cygwin* | *-*-pw32*)
3496   # These system don't have libm
3497   ;;
3498 *-ncr-sysv4.3*)
3499   AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
3500   AC_CHECK_LIB(m, main, LIBM="$LIBM -lm")
3501   ;;
3502 *)
3503   AC_CHECK_LIB(m, main, LIBM="-lm")
3504   ;;
3505 esac
3506 ])
3507
3508 # AC_LIBLTDL_CONVENIENCE[(dir)] - sets LIBLTDL to the link flags for
3509 # the libltdl convenience library and INCLTDL to the include flags for
3510 # the libltdl header and adds --enable-ltdl-convenience to the
3511 # configure arguments.  Note that LIBLTDL and INCLTDL are not
3512 # AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called.  If DIR is not
3513 # provided, it is assumed to be `libltdl'.  LIBLTDL will be prefixed
3514 # with '${top_builddir}/' and INCLTDL will be prefixed with
3515 # '${top_srcdir}/' (note the single quotes!).  If your package is not
3516 # flat and you're not using automake, define top_builddir and
3517 # top_srcdir appropriately in the Makefiles.
3518 AC_DEFUN([AC_LIBLTDL_CONVENIENCE],
3519 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3520   case $enable_ltdl_convenience in
3521   no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
3522   "") enable_ltdl_convenience=yes
3523       ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
3524   esac
3525   LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la
3526   INCLTDL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
3527 ])
3528
3529 # AC_LIBLTDL_INSTALLABLE[(dir)] - sets LIBLTDL to the link flags for
3530 # the libltdl installable library and INCLTDL to the include flags for
3531 # the libltdl header and adds --enable-ltdl-install to the configure
3532 # arguments.  Note that LIBLTDL and INCLTDL are not AC_SUBSTed, nor is
3533 # AC_CONFIG_SUBDIRS called.  If DIR is not provided and an installed
3534 # libltdl is not found, it is assumed to be `libltdl'.  LIBLTDL will
3535 # be prefixed with '${top_builddir}/' and INCLTDL will be prefixed
3536 # with '${top_srcdir}/' (note the single quotes!).  If your package is
3537 # not flat and you're not using automake, define top_builddir and
3538 # top_srcdir appropriately in the Makefiles.
3539 # In the future, this macro may have to be called after AC_PROG_LIBTOOL.
3540 AC_DEFUN([AC_LIBLTDL_INSTALLABLE],
3541 [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3542    AC_ARG_ENABLE(ltdl-install,
3543      [  --disable-ltdl-install       do not install libltdl])
3544    if test x"${enable_ltdl_install+set}" != xset; then
3545      enable_ltdl_install=yes
3546      ac_configure_args="$ac_configure_args --enable-ltdl-install"
3547    fi
3548    AC_ARG_WITH(ltdl-lib,
3549      [  --with-ltdl-lib=DIR          libltdl library is in DIR [default=${top_builddir}/libltdl/]],
3550      [ if test x"withval" = x"yes" || test x"withval" = x"no" ; then
3551          AC_MSG_WARN([specify location of libltdl library])
3552          withval=
3553        fi
3554      ])
3555
3556    save_LDFLAGS="$LDFLAGS"
3557    test -z "$withval" || LDFLAGS="$LDFLAGS -L$withval"
3558    AC_CHECK_LIB(ltdl, lt_dlinit,
3559      [ 
3560        ltdl_found="yes"
3561        LIBLTDL="-lltdl"
3562        AC_ARG_WITH(ltdl-include,
3563          [  --with-ltdl-include=DIR      libltdl include files are in DIR [default=$top_srcdir/libltdl/]],
3564          [ if test x"withval" = x"yes" || test x"withval" = x"no" ; then
3565              AC_MSG_WARN([specify location of ltdl.h])
3566              withval=
3567            fi
3568            save_CPPFLAGS="$CPPFLAGS"
3569            CPPFLAGS="$CPPFLAGS -I$withval"
3570            AC_CHECK_HEADER(ltdl.h,
3571              [ 
3572                INCLTDL="-I$withval" 
3573                LIBLTDLPATH=
3574                ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
3575              ])
3576            CPPFLAGS="$save_CPPFLAGS"
3577          ])
3578      ])
3579    LDFLAGS="$save_LDFLAGS"
3580
3581    if test x"$enable_ltdl_install" = xno && test x"$ltdl_found" != xyes; then
3582      AC_MSG_WARN([libltdl not installed, but installation disabled])
3583    fi
3584    if test x"$ltdl_found" = xyes; then
3585      enable_ltdl_install="no"
3586    fi
3587
3588    if test x"$enable_ltdl_install" = x"yes"; then
3589      ac_configure_args="$ac_configure_args --enable-ltdl-install"
3590      LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la
3591      INCLTDL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
3592      AC_CONFIG_SUBDIRS('libltdl')
3593      LIBLTDLPATH=libltdl
3594    fi
3595    AC_SUBST(LIBLTDLPATH)
3596 ])
3597
3598 # old names
3599 AC_DEFUN([AM_PROG_LIBTOOL],   [AC_PROG_LIBTOOL])
3600 AC_DEFUN([AM_ENABLE_SHARED],  [AC_ENABLE_SHARED($@)])
3601 AC_DEFUN([AM_ENABLE_STATIC],  [AC_ENABLE_STATIC($@)])
3602 AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
3603 AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
3604 AC_DEFUN([AM_PROG_LD],        [AC_PROG_LD])
3605 AC_DEFUN([AM_PROG_NM],        [AC_PROG_NM])
3606
3607 # This is just to silence aclocal about the macro not being used
3608 ifelse([AC_DISABLE_FAST_INSTALL])
3609
3610 ##
3611 ## end libtool.m4
3612 ##
3613
3614 dnl See whether we need a declaration for a function.
3615 dnl RADIUSD_NEED_DECLARATION(FUNCTION [, EXTRA-HEADER-FILES])
3616 AC_DEFUN(RADIUSD_NEED_DECLARATION,
3617 [AC_MSG_CHECKING([whether $1 must be declared])
3618 AC_CACHE_VAL(radius_cv_decl_needed_$1,
3619 [AC_TRY_COMPILE([
3620 #include <stdio.h>
3621 #include <string.h>
3622 #ifdef HAVE_UNISTD_H
3623 #include <unistd.h>
3624 #endif
3625 #ifdef HAVE_CRYPT_H
3626 #include <crypt.h>
3627 #endif
3628 #ifdef HAVE_ERRNO_H
3629 #include <errno.h>
3630 #endif
3631 #ifdef HAVE_RESOURCE_H
3632 #include <resource.h>
3633 #endif
3634 #ifdef HAVE_GETOPT_H
3635 #include <getopt.h>
3636 #endif
3637 #ifdef HAVE_MALLOC_H
3638 #include <malloc.h>
3639 #endif
3640 #ifdef HAVE_UTMP_H
3641 #include <utmp.h>
3642 #endif
3643 #ifdef HAVE_UTMPX_H
3644 #include <utmpx.h>
3645 #endif
3646 #ifdef HAVE_SYS_SELECT_H
3647 #include <sys/select.h>
3648 #endif
3649 #ifdef HAVE_DLFCN_H
3650 #include <dlfcn.h>
3651 #endif
3652 #ifdef HAVE_REGEX_H
3653 #include <regex.h>
3654 #endif
3655 #ifdef HAVE_SYSLOG_H
3656 #include <syslog.h>
3657 #endif
3658 #ifdef HAVE_INTTYPES_H
3659 #include <inttypes.h>
3660 #endif
3661 #ifdef HAVE_STDINT_H
3662 #include <stdint.h>
3663 #endif
3664 #ifdef HAVE_ARPA_INET_H
3665 #include <arpa/inet.h>
3666 #endif
3667 $2],
3668 [char *(*pfn) = (char *(*)) $1],
3669 eval "radius_cv_decl_needed_$1=no", eval "radius_cv_decl_needed_$1=yes")])
3670 if eval "test \"`echo '$radius_cv_decl_needed_'$1`\" = yes"; then
3671   AC_MSG_RESULT(yes)
3672   radius_tr_decl=NEED_DECLARATION_`echo $1 | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
3673   AC_DEFINE_UNQUOTED($radius_tr_decl)
3674 else
3675   AC_MSG_RESULT(no)
3676 fi
3677 ])dnl
3678
3679 dnl Check multiple functions to see whether each needs a declaration.
3680 dnl RADIUSD_NEED_DECLARATIONS(FUNCTION... [, EXTRA-HEADER-FILES])
3681 AC_DEFUN(RADIUSD_NEED_DECLARATIONS,
3682 [for ac_func in $1
3683 do
3684 RADIUSD_NEED_DECLARATION($ac_func, $2)
3685 done
3686 ])
3687
3688 dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
3689 dnl The program must properly implement --version.
3690 AC_DEFUN(AM_MISSING_PROG,
3691 [AC_MSG_CHECKING(for working $2)
3692 # Run test in a subshell; some versions of sh will print an error if
3693 # an executable is not found, even if stderr is redirected.
3694 # Redirect stdin to placate older versions of autoconf.  Sigh.
3695 if ($2 --version) < /dev/null > /dev/null 2>&1; then
3696    $1=$2
3697    AC_MSG_RESULT(found)
3698 else
3699    $1="$3/missing $2"
3700    AC_MSG_RESULT(missing)
3701 fi
3702 AC_SUBST($1)])
3703
3704
3705 dnl Checks to see if this is SUNPro we're building with
3706 dnl Usage:
3707 dnl AC_PROG_CC_SUNPRO
3708 AC_DEFUN(AC_PROG_CC_SUNPRO,
3709 [AC_CACHE_CHECK(whether we are using SUNPro C, ac_cv_prog_suncc,
3710 [dnl The semicolon is to pacify NeXT's syntax-checking cpp.
3711 cat > conftest.c <<EOF
3712 #ifdef __SUNPRO_C
3713   yes;
3714 #endif
3715 EOF
3716 if AC_TRY_COMMAND(${CC-cc} -E conftest.c) | egrep yes >/dev/null 2>&1; then
3717   ac_cv_prog_suncc=yes
3718 else
3719   ac_cv_prog_suncc=no
3720 fi])])
3721
3722 dnl #
3723 dnl # AC_CHECK_TYPE_INCLUDE([#includes ...], type, default-C-types)
3724 dnl #
3725 dnl # This function is like AC_CHECK_TYPE, but you can give this one
3726 dnl # a list of include files to check.
3727 dnl #
3728 AC_DEFUN(AC_CHECK_TYPE_INCLUDE,
3729 [
3730   AC_CACHE_CHECK(for $2, ac_cv_type_$2,
3731     [ ac_cv_type_$2=no
3732       AC_TRY_COMPILE($1,
3733         [$2 foo],
3734         ac_cv_type_$2=yes,
3735       )
3736     ]
3737   )
3738
3739   if test "$ac_cv_type_$2" != "yes"; then
3740          AC_DEFINE($2, $3)
3741   fi
3742 ])
3743
3744 dnl #######################################################################
3745 dnl #
3746 dnl #  Look for SNMP in a variety of places.
3747 dnl #
3748 AC_DEFUN(SNMP_CHECKS, [
3749         AC_SUBST(SNMP_LIBS)
3750         AC_SUBST(SNMP_INCLUDE)
3751
3752 AC_MSG_CHECKING([for asn1.h,snmp.h,snmp_impl.h])
3753
3754 dnl #
3755 dnl #  First, see if we can build it WITHOUT using any special includes and in ucd-snmp
3756 dnl #
3757 AC_TRY_COMPILE([
3758 #ifdef HAVE_SYS_TYPES_H
3759 #include <sys/types.h>
3760 #endif
3761 #ifdef HAVE_STDINT_H
3762 #include <stdint.h>
3763 #endif
3764 #ifdef HAVE_STDIO_H
3765 #include <stdio.h>
3766 #endif
3767 #ifdef HAVE_NETDB_H
3768 #include <netdb.h>
3769 #endif
3770 #ifdef HAVE_UNISTD_H
3771 #include <unistd.h>
3772 #endif
3773 #include <ucd-snmp/asn1.h>
3774 #include <ucd-snmp/snmp.h>
3775 #include <ucd-snmp/snmp_impl.h>],
3776                [ int a = 1;],
3777                SNMP_INCLUDE="";ucdsnmp=yes,
3778                ucdsnmp=)
3779
3780 dnl #
3781 dnl #  If not, look for it in a number of directories and in ucd-snmp.
3782 dnl #
3783 if test "x$ucdsnmp" = "x"; then
3784   old_CFLAGS="$CFLAGS"
3785   for try in /usr/include /usr/local/include $snmp_include_dir; do
3786     CFLAGS="$old_CFLAGS -I$try"
3787     AC_TRY_COMPILE([
3788 #ifdef HAVE_SYS_TYPES_H
3789 #include <sys/types.h>
3790 #endif
3791 #ifdef HAVE_STDINT_H
3792 #include <stdint.h>
3793 #endif
3794 #ifdef HAVE_STDIO_H
3795 #include <stdio.h>
3796 #endif
3797 #ifdef HAVE_NETDB_H
3798 #include <netdb.h>
3799 #endif
3800 #ifdef HAVE_UNISTD_H
3801 #include <unistd.h>
3802 #endif
3803 #include <ucd-snmp/asn1.h>
3804 #include <ucd-snmp/snmp.h>
3805 #include <ucd-snmp/snmp_impl.h>],
3806                    [ int a = 1;],
3807                    SNMP_INCLUDE="-I$try";ucdsnmp=yes,
3808                    ucdsnmp=)
3809     if test "x$ucdsnmp" != "x"; then
3810       break;
3811     fi
3812   done
3813   CFLAGS="$old_CFLAGS"
3814 fi
3815
3816 if test "x$ucdsnmp" = "x"; then
3817   old_CFLAGS="$CFLAGS"
3818   for try in /usr/include/ucd-snmp /usr/local/include/ucd-snmp $snmp_include_dir; do
3819     CFLAGS="$old_CFLAGS -I$try"
3820 dnl #
3821 dnl #  First, see if we can build it WITHOUT using any special includes and without ucd-snmp
3822 dnl #
3823 AC_TRY_COMPILE([
3824 #ifdef HAVE_SYS_TYPES_H
3825 #include <sys/types.h>
3826 #endif
3827 #ifdef HAVE_STDINT_H
3828 #include <stdint.h>
3829 #endif
3830 #ifdef HAVE_STDIO_H
3831 #include <stdio.h>
3832 #endif
3833 #ifdef HAVE_NETDB_H
3834 #include <netdb.h>
3835 #endif
3836 #ifdef HAVE_UNISTD_H
3837 #include <unistd.h>
3838 #endif
3839 #include <asn1.h>
3840 #include <snmp.h>
3841 #include <snmp_impl.h>],
3842                [ int a = 1;],
3843                SNMP_INCLUDE="";ucdsnmp=no,
3844                ucdsnmp=)
3845     if test "x$ucdsnmp" != "x"; then
3846       break;
3847     fi
3848   done
3849   CFLAGS="$old_CFLAGS"
3850 fi
3851
3852 dnl #
3853 dnl #  If not, look for it in a number of directories and without ucd-snmp
3854 dnl #
3855 if test "x$ucdsnmp" = "x"; then
3856   old_CFLAGS="$CFLAGS"
3857   for try in /usr/include/ucd-snmp /usr/local/include/ucd-snmp $snmp_include_dir; do
3858     CFLAGS="$old_CFLAGS -I$try"
3859     AC_TRY_COMPILE([
3860 #ifdef HAVE_SYS_TYPES_H
3861 #include <sys/types.h>
3862 #endif
3863 #ifdef HAVE_STDINT_H
3864 #include <stdint.h>
3865 #endif
3866 #ifdef HAVE_STDIO_H
3867 #include <stdio.h>
3868 #endif
3869 #ifdef HAVE_NETDB_H
3870 #include <netdb.h>
3871 #endif
3872 #ifdef HAVE_UNISTD_H
3873 #include <unistd.h>
3874 #endif
3875 #include <asn1.h>
3876 #include <snmp.h>
3877 #include <snmp_impl.h>],
3878                    [ int a = 1;],
3879                    SNMP_INCLUDE="-I$try";ucdsnmp=no,
3880                    ucdsnmp=)
3881     if test "x$ucdsnmp" != "x"; then
3882       break;
3883     fi
3884   done
3885   CFLAGS="$old_CFLAGS"
3886 fi
3887
3888 if test "x$ucdsnmp" = "x"; then
3889   AC_MSG_RESULT(no)
3890 else
3891   if test "x$ucdsnmp" = "xyes"; then
3892     AC_MSG_RESULT((ucd-snmp)yes)
3893     AC_DEFINE(HAVE_UCD_SNMP_ASN1_SNMP_SNMPIMPL_H)
3894   else
3895     AC_MSG_RESULT(yes)
3896     AC_DEFINE(HAVE_ASN1_SNMP_SNMPIMPL_H)
3897   fi
3898 dnl #
3899 dnl #  Now do the same thing, looking for the SNMP library directory
3900 dnl #
3901   AC_MSG_CHECKING([for snmp_build_var_op in -lsnmp])
3902
3903 dnl #
3904 dnl #  First, see if we can build it WITHOUT using any special includes
3905 dnl #
3906   old_LIBS="$LIBS"
3907   LIBS="$old_LIBS -lsnmp"
3908   AC_TRY_LINK([extern char snmp_build_var_op();],
3909               [ snmp_build_var_op()],
3910               SNMP_LIBS="-lsnmp",
3911               SNMP_LIBS=)
3912
3913   if test "x$SNMP_LIBS" = "x"; then
3914     for try in /usr/lib /usr/local/lib /usr/local/snmp/lib $snmp_lib_dir; do
3915       LIBS="$old_LIBS -L$try -lsnmp"
3916       AC_TRY_LINK([extern char snmp_build_var_op();],
3917                   [ snmp_build_var_op()],
3918                   SNMP_LIBS="-L$try -lsnmp",
3919                   SNMP_LIBS=)
3920       if test "x$SNMP_LIBS" != "x"; then
3921         break;
3922       fi
3923 dnl   #
3924 dnl   #  That didn't work.  Try adding the '-lcrypto' line.
3925 dnl   #  Some SNMP libraries are linked against SSL...
3926 dnl   #
3927       LIBS="$old_LIBS -L$try -lsnmp -lcrypto"
3928       AC_TRY_LINK([extern char snmp_build_var_op();],
3929                   [ snmp_build_var_op()],
3930                   SNMP_LIBS="-L$try -lsnmp -lcrypto",
3931                   SNMP_LIBS=)
3932       if test "x$SNMP_LIBS" != "x"; then
3933         break;
3934       fi
3935     done
3936   fi
3937   LIBS="$old_LIBS"
3938
3939   dnl #
3940   dnl #  If one or the other isn't found, disable them both..
3941   dnl #  If both are found, enable them both.
3942   dnl #
3943   CFLAGS="$old_CFLAGS"
3944   if test "x$SNMP_LIBS" = "x"; then
3945     AC_MSG_RESULT(no)
3946     SNMP_INCLUDE=
3947   else
3948     AC_MSG_RESULT(yes)
3949     AC_DEFINE(WITH_SNMP)
3950     AC_DEFINE(HAVE_LIBSNMP)
3951   fi
3952 fi
3953 ])
3954
3955
3956 dnl #
3957 dnl #  Locate the directory in which a particular file is found.
3958 dnl #
3959 dnl #  Usage: AC_LOCATE_DIR(MYSQLLIB_DIR, libmysqlclient.a)
3960 dnl #
3961 dnl #    Defines the variable MYSQLLIB_DIR to be the directory(s) in
3962 dnl #    which the file libmysqlclient.a is to be found.
3963 dnl #
3964 dnl #
3965 AC_DEFUN(AC_LOCATE_DIR,
3966 [
3967 dnl # If we have the program 'locate', then the problem of finding a
3968 dnl # particular file becomes MUCH easier.
3969 dnl #
3970
3971 dnl #
3972 dnl #  No 'locate' defined, do NOT do anything.
3973 dnl #
3974 if test "x$LOCATE" != "x"; then
3975   dnl #
3976   dnl #  Root through a series of directories, looking for the given file.
3977   dnl #
3978   DIRS=
3979   file=$2
3980
3981   for x in `${LOCATE} $file 2>/dev/null`; do
3982     dnl #
3983     dnl #  When asked for 'foo', locate will also find 'foo_bar', which we
3984     dnl #  don't want.  We want that EXACT filename.
3985     dnl #
3986     dnl #  We ALSO want to be able to look for files like 'mysql/mysql.h',
3987     dnl #  and properly match them, too.  So we try to strip off the last
3988     dnl #  part of the filename, using the name of the file we're looking
3989     dnl #  for.  If we CANNOT strip it off, then the name will be unchanged.
3990     dnl #
3991     base=`echo $x | sed "s%/${file}%%"`
3992     if test "x$x" = "x$base"; then
3993       continue;
3994     fi
3995
3996     dir=`${DIRNAME} $x 2>/dev/null`
3997     dnl #
3998     dnl #  Exclude a number of directories.
3999     dnl #
4000     exclude=`echo ${dir} | ${GREP} /home`
4001     if test "x$exclude" != "x"; then
4002       continue
4003     fi
4004
4005     dnl #
4006     dnl #  OK, we have an exact match.  Let's be sure that we only find ONE
4007     dnl #  matching directory.
4008     dnl #
4009     already=`echo \$$1 ${DIRS} | ${GREP} ${dir}`
4010     if test "x$already" = "x"; then
4011       DIRS="$DIRS $dir"
4012     fi
4013   done
4014 fi
4015
4016 dnl #
4017 dnl #  And remember the directory in which we found the file.
4018 dnl #
4019 eval "$1=\"\$$1 $DIRS\""
4020 ])
4021
4022
4023 dnl #######################################################################
4024 dnl #
4025 dnl #  Look for a library in a number of places.
4026 dnl #
4027 AC_DEFUN(AC_SMART_CHECK_LIB, [
4028
4029 sm_lib_safe=`echo "$1" | sed 'y%./+-%__p_%'`
4030 sm_func_safe=`echo "$2" | sed 'y%./+-%__p_%'`
4031 AC_MSG_CHECKING([for $2 in -l$1])
4032
4033 smart_lib=
4034 smart_lib_dir=
4035
4036 dnl #
4037 dnl #  Try to link it first, using the default libs && library paths
4038 dnl #
4039   old_LIBS="$LIBS"
4040   LIBS="$LIBS -l$1"
4041   AC_TRY_LINK([extern char $2();],
4042               [ $2()],
4043               smart_lib="-l$1")
4044
4045   if test "x$smart_lib" = "x"; then
4046     AC_LOCATE_DIR(smart_lib_dir,[lib$1${libltdl_cv_shlibext}])
4047     AC_LOCATE_DIR(smart_lib_dir,[lib$1.a])
4048
4049     for try in $smart_try_dir $smart_lib_dir /usr/local/lib/ /opt/lib; do
4050       LIBS="$old_LIBS -L$try -l$1"
4051
4052       AC_TRY_LINK([extern char $2();],
4053                   [ $2()],
4054                   smart_lib="-L$try -l$1")
4055       if test "x$smart_lib" != "x"; then
4056         break;
4057       fi
4058     done
4059     LIBS="$old_LIBS"
4060   fi
4061
4062   dnl #
4063   dnl #  Found it, set the appropriate variable.
4064   dnl #
4065   if test "x$smart_lib" != "x"; then
4066     AC_MSG_RESULT(yes)
4067     eval "ac_cv_lib_${sm_lib_safe}_${sm_func_safe}=yes"
4068     LIBS="$old_LIBS $smart_lib"
4069     SMART_LIBS="$SMART_LIBS $smart_lib"
4070   else
4071     AC_MSG_RESULT(no) 
4072 fi
4073 ])
4074
4075 dnl #######################################################################
4076 dnl #
4077 dnl #  Look for a header file in a number of places.
4078 dnl #
4079 dnl #  AC_SMART_CHECK_INCLUDE(foo.h, [ #include <other.h> ])
4080 dnl #
4081 AC_DEFUN(AC_SMART_CHECK_INCLUDE, [
4082
4083 ac_safe=`echo "$1" | sed 'y%./+-%__pm%'`
4084 AC_MSG_CHECKING([for $1])
4085
4086 smart_include=
4087 smart_include_dir=
4088
4089 dnl #
4090 dnl #  Try to link it first, using the default includes
4091 dnl #
4092   old_CFLAGS="$CFLAGS"
4093   AC_TRY_COMPILE([$2
4094                   #include <$1>],
4095                  [ int a = 1;],
4096                  smart_include=" ",
4097                  smart_include=)
4098
4099   if test "x$smart_include" = "x"; then
4100     AC_LOCATE_DIR(smart_include_dir,$1)
4101
4102     for try in $smart_try_dir $smart_include_dir /usr/local/include/ /opt/include; do
4103       CFLAGS="$old_CFLAGS -I$try"
4104
4105       AC_TRY_COMPILE([$2
4106                        #include <$1>],
4107                      [ int a = 1;],
4108                      smart_include="-I$try",
4109                      smart_include=)
4110
4111       if test "x$smart_include" != "x"; then
4112         break;
4113       fi
4114     done
4115     CFLAGS="$old_CFLAGS"
4116   fi
4117
4118   dnl #
4119   dnl #  Found it, set the appropriate variable.
4120   dnl #
4121   if test "x$smart_include" != "x"; then
4122     AC_MSG_RESULT(yes)
4123     eval "ac_cv_header_$ac_safe=yes"
4124     CFLAGS="$old_CFLAGS $smart_include"
4125     SMART_CFLAGS="$SMART_CFLAGS $smart_include"
4126   else
4127     AC_MSG_RESULT(no) 
4128 fi
4129 ])
4130
4131 dnl #######################################################################
4132 dnl #
4133 dnl #  Look for a header file in a number of places.
4134 dnl #
4135 dnl #  Usage:  AC_CHECK_STRUCT_HAS_MEMBER([#include <foo.h>], [struct foo], member)
4136 dnl #  If the member is defined, then the variable
4137 dnl #     ac_cv_type_struct_foo_has_member is set to 'yes'
4138 dnl #
4139 AC_DEFUN(AC_CHECK_STRUCT_HAS_MEMBER, [
4140   AC_MSG_CHECKING([for $3 in $2])
4141
4142 dnl BASED on 'offsetof':
4143 dnl #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
4144 dnl
4145
4146   AC_TRY_COMPILE([
4147 $1
4148 #ifndef offsetof
4149 #define offsetof(TYPE, MEMBER) ((int) &((TYPE *)0)->MEMBER)
4150 #endif
4151 ],
4152                  [ int foo = offsetof($2, $3) ],
4153                  has_element=" ",
4154                  has_element=)
4155
4156   ac_safe_type=`echo "$2" | sed 'y% %_%'`
4157   if test "x$has_element" != "x"; then
4158     AC_MSG_RESULT(yes)
4159     eval "ac_cv_type_${ac_safe_type}_has_$3=yes"
4160   else
4161     AC_MSG_RESULT(no) 
4162     eval "ac_cv_type_${ac_safe_type}_has_$3="
4163  fi
4164 ])