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