ltconfig
上传用户:psq1974
上传日期:2007-01-06
资源大小:1195k
文件大小:44k
源码类别:

mpeg/mp3

开发平台:

C/C++

  1. #! /bin/sh
  2. # ltconfig - Create a system-specific libtool.
  3. # Copyright (C) 1996-1998 Free Software Foundation, Inc.
  4. # Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
  5. #
  6. # This file is free software; you can redistribute it and/or modify it
  7. # under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful, but
  12. # WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. # General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  19. #
  20. # As a special exception to the GNU General Public License, if you
  21. # distribute this file as part of a program that contains a
  22. # configuration script generated by Autoconf, you may include it under
  23. # the same distribution terms that you use for the rest of that program.
  24. # A lot of this script is taken from autoconf-2.10.
  25. # Check that we are running under the correct shell.
  26. SHELL=${CONFIG_SHELL-/bin/sh}
  27. echo=echo
  28. if test "X$1" = X--no-reexec; then
  29.   # Discard the --no-reexec flag, and continue.
  30.   shift
  31. elif test "X`($echo 't') 2>/dev/null`" = 'Xt'; then
  32.   # Yippee, $echo works!
  33.   :
  34. else
  35.   # Restart under the correct shell.
  36.   exec "$SHELL" "$0" --no-reexec ${1+"$@"}
  37. fi
  38. # The HP-UX ksh and POSIX shell print the target directory to stdout
  39. # if CDPATH is set.
  40. if test "${CDPATH+set}" = set; then CDPATH=; export CDPATH; fi
  41. if test "X`($echo 't') 2>/dev/null`" != 'Xt'; then
  42.   # The Solaris, AIX, and Digital Unix default echo programs unquote
  43.   # backslashes.  This makes it impossible to quote backslashes using
  44.   #   echo "$something" | sed 's/\/\\/g'
  45.   #
  46.   # So, first we look for a working echo in the user's PATH.
  47.   IFS="${IFS=  }"; save_ifs="$IFS"; IFS="${IFS}:"
  48.   for dir in $PATH /usr/ucb; do
  49.     if test -f $dir/echo && test "X`($dir/echo 't') 2>/dev/null`" = 'Xt'; then
  50.       echo="$dir/echo"
  51.       break
  52.     fi
  53.   done
  54.   IFS="$save_ifs"
  55.   if test "X$echo" = Xecho; then
  56.     # We didn't find a better echo, so look for alternatives.
  57.     if test "X`(print -r 't') 2>/dev/null`" = 'Xt'; then
  58.       # This shell has a builtin print -r that does the trick.
  59.       echo='print -r'
  60.     elif test -f /bin/ksh && test "X$CONFIG_SHELL" != X/bin/ksh; then
  61.       # If we have ksh, try running ltconfig again with it.
  62.       CONFIG_SHELL=/bin/ksh
  63.       export CONFIG_SHELL
  64.       exec "$CONFIG_SHELL" "$0" --no-reexec ${1+"$@"}
  65.     else
  66.       # Try using printf.
  67.       echo='printf %sn'
  68.       if test "X`($echo 't') 2>/dev/null`" != 'Xt'; then
  69.         # Oops.  We lost completely, so just stick with echo.
  70.         echo=echo
  71.       fi
  72.     fi
  73.   fi
  74. fi
  75. # Sed substitution that helps us do robust quoting.  It backslashifies
  76. # metacharacters that are still active within double-quoted strings.
  77. Xsed='sed -e s/^X//'
  78. sed_quote_subst='s/([\"\`$\\])/\1/g'
  79. # Same as above, but do not quote variable references.
  80. double_quote_subst='s/([\"\`\\])/\1/g'
  81. # The name of this program.
  82. progname=`$echo "X$0" | $Xsed -e 's%^.*/%%'`
  83. # Constants:
  84. PROGRAM=ltconfig
  85. PACKAGE=libtool
  86. VERSION=1.2b
  87. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.c 1>&5'
  88. ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.c $LIBS 1>&5'
  89. rm="rm -f"
  90. help="Try `$progname --help' for more information."
  91. # Global variables:
  92. default_ofile=libtool
  93. can_build_shared=yes
  94. enable_shared=yes
  95. # All known linkers require a `.a' archive for static linking.
  96. enable_static=yes
  97. ltmain=
  98. silent=
  99. srcdir=
  100. ac_config_guess=
  101. ac_config_sub=
  102. host=
  103. nonopt=
  104. ofile="$default_ofile"
  105. verify_host=yes
  106. with_gcc=no
  107. with_gnu_ld=no
  108. old_AR="$AR"
  109. old_CC="$CC"
  110. old_CFLAGS="$CFLAGS"
  111. old_CPPFLAGS="$CPPFLAGS"
  112. old_LD="$LD"
  113. old_LN_S="$LN_S"
  114. old_NM="$NM"
  115. old_RANLIB="$RANLIB"
  116. # Parse the command line options.
  117. args=
  118. prev=
  119. for option
  120. do
  121.   case "$option" in
  122.   -*=*) optarg=`echo "$option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  123.   *) optarg= ;;
  124.   esac
  125.   # If the previous option needs an argument, assign it.
  126.   if test -n "$prev"; then
  127.     eval "$prev=$option"
  128.     prev=
  129.     continue
  130.   fi
  131.   case "$option" in
  132.   --help) cat <<EOM
  133. Usage: $progname [OPTION]... LTMAIN [HOST]
  134. Generate a system-specific libtool script.
  135.     --debug                enable verbose shell tracing
  136.     --disable-shared       do not build shared libraries
  137.     --disable-static       do not build static libraries
  138.     --help                 display this help and exit
  139.     --no-verify            do not verify that HOST is a valid host type
  140. -o, --output=FILE          specify the output file [default=$default_ofile]
  141.     --quiet                same as `--silent'
  142.     --silent               do not print informational messages
  143.     --srcdir=DIR           find `config.guess' in DIR
  144.     --version              output version information and exit
  145.     --with-gcc             assume that the GNU C compiler will be used
  146.     --with-gnu-ld          assume that the C compiler uses the GNU linker
  147. LTMAIN is the `ltmain.sh' shell script fragment that provides basic libtool
  148. functionality.
  149. HOST is the canonical host system name [default=guessed].
  150. EOM
  151.   exit 0
  152.   ;;
  153.   --debug)
  154.     echo "$progname: enabling shell trace mode"
  155.     set -x
  156.     ;;
  157.   --disable-shared) enable_shared=no ;;
  158.   --disable-static) enable_static=no ;;
  159.   --quiet | --silent) silent=yes ;;
  160.   --srcdir) prev=srcdir ;;
  161.   --srcdir=*) srcdir="$optarg" ;;
  162.   --no-verify) verify_host=no ;;
  163.   --output | -o) prev=ofile ;;
  164.   --output=*) ofile="$optarg" ;;
  165.   --version) echo "$PROGRAM (GNU $PACKAGE) $VERSION"; exit 0 ;;
  166.   --with-gcc) with_gcc=yes ;;
  167.   --with-gnu-ld) with_gnu_ld=yes ;;
  168.   -*)
  169.     echo "$progname: unrecognized option `$option'" 1>&2
  170.     echo "$help" 1>&2
  171.     exit 1
  172.     ;;
  173.   *)
  174.     if test -z "$ltmain"; then
  175.       ltmain="$option"
  176.     elif test -z "$host"; then
  177. # This generates an unnecessary warning for sparc-sun-solaris4.1.3_U1
  178. #      if test -n "`echo $option| sed 's/[-a-z0-9.]//g'`"; then
  179. #        echo "$progname: warning `$option' is not a valid host type" 1>&2
  180. #      fi
  181.       host="$option"
  182.     else
  183.       echo "$progname: too many arguments" 1>&2
  184.       echo "$help" 1>&2
  185.       exit 1
  186.     fi ;;
  187.   esac
  188. done
  189. if test -z "$ltmain"; then
  190.   echo "$progname: you must specify a LTMAIN file" 1>&2
  191.   echo "$help" 1>&2
  192.   exit 1
  193. fi
  194. if test ! -f "$ltmain"; then
  195.   echo "$progname: `$ltmain' does not exist" 1>&2
  196.   echo "$help" 1>&2
  197.   exit 1
  198. fi
  199. # Quote any args containing shell metacharacters.
  200. ltconfig_args=
  201. for arg
  202. do
  203.   case "$arg" in
  204.   *" "*|*" "*|*[[]~#$^&*(){}\|;<>?]*)
  205.   ltconfig_args="$ltconfig_args '$arg'" ;;
  206.   *) ltconfig_args="$ltconfig_args $arg" ;;
  207.   esac
  208. done
  209. # A relevant subset of AC_INIT.
  210. # File descriptor usage:
  211. # 0 standard input
  212. # 1 file creation
  213. # 2 errors and warnings
  214. # 3 some systems may open it to /dev/tty
  215. # 4 used on the Kubota Titan
  216. # 5 compiler messages saved in config.log
  217. # 6 checking for... messages and results
  218. if test "$silent" = yes; then
  219.   exec 6>/dev/null
  220. else
  221.   exec 6>&1
  222. fi
  223. exec 5>>./config.log
  224. # NLS nuisances.
  225. # Only set LANG and LC_ALL to C if already set.
  226. # These must not be set unconditionally because not all systems understand
  227. # e.g. LANG=C (notably SCO).
  228. if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
  229. if test "${LANG+set}"   = set; then LANG=C;   export LANG;   fi
  230. if (echo "testingc"; echo 1,2,3) | grep c >/dev/null; then
  231.   # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
  232.   if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
  233.     ac_n= ac_c='
  234. ' ac_t=' '
  235.   else
  236.     ac_n=-n ac_c= ac_t=
  237.   fi
  238. else
  239.   ac_n= ac_c='c' ac_t=
  240. fi
  241. if test -z "$srcdir"; then
  242.   # Assume the source directory is the same one as the path to ltmain.sh.
  243.   srcdir=`$echo "$ltmain" | $Xsed -e 's%/[^/]*$%%'`
  244.   test "$srcdir" = "$ltmain" && srcdir=.
  245. fi
  246. trap "$rm conftest*; exit 1" 1 2 15
  247. if test "$verify_host" = yes; then
  248.   # Check for config.guess and config.sub.
  249.   ac_aux_dir=
  250.   for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
  251.     if test -f $ac_dir/config.guess; then
  252.       ac_aux_dir=$ac_dir
  253.       break
  254.     fi
  255.   done
  256.   if test -z "$ac_aux_dir"; then
  257.     echo "$progname: cannot find config.guess in $srcdir $srcdir/.. $srcdir/../.." 1>&2
  258.     echo "$help" 1>&2
  259.     exit 1
  260.   fi
  261.   ac_config_guess=$ac_aux_dir/config.guess
  262.   ac_config_sub=$ac_aux_dir/config.sub
  263.   # Make sure we can run config.sub.
  264.   if $SHELL $ac_config_sub sun4 >/dev/null 2>&1; then :
  265.   else
  266.     echo "$progname: cannot run $ac_config_sub" 1>&2
  267.     echo "$help" 1>&2
  268.     exit 1
  269.   fi
  270.   echo $ac_n "checking host system type""... $ac_c" 1>&6
  271.   host_alias=$host
  272.   case "$host_alias" in
  273.   "")
  274.     if host_alias=`$SHELL $ac_config_guess`; then :
  275.     else
  276.       echo "$progname: cannot guess host type; you must specify one" 1>&2
  277.       echo "$help" 1>&2
  278.       exit 1
  279.     fi ;;
  280.   esac
  281.   host=`$SHELL $ac_config_sub $host_alias`
  282.   echo "$ac_t$host" 1>&6
  283.   # Make sure the host verified.
  284.   test -z "$host" && exit 1
  285. elif test -z "$host"; then
  286.   echo "$progname: you must specify a host type if you use `--no-verify'" 1>&2
  287.   echo "$help" 1>&2
  288.   exit 1
  289. else
  290.   host_alias=$host
  291. fi
  292. # Transform linux* to *-*-linux-gnu*, to support old configure scripts.
  293. case "$host_os" in
  294. linux-gnu*) ;;
  295. linux*) host=`echo $host | sed 's/^(.*-.*-linux)(.*)$/1-gnu2/'`
  296. esac
  297. host_cpu=`echo $host | sed 's/^([^-]*)-([^-]*)-(.*)$/1/'`
  298. host_vendor=`echo $host | sed 's/^([^-]*)-([^-]*)-(.*)$/2/'`
  299. host_os=`echo $host | sed 's/^([^-]*)-([^-]*)-(.*)$/3/'`
  300. case "$host_os" in
  301. aix3*)
  302.   # AIX sometimes has problems with the GCC collect2 program.  For some
  303.   # reason, if we set the COLLECT_NAMES environment variable, the problems
  304.   # vanish in a puff of smoke.
  305.   if test "${COLLECT_NAMES+set}" != set; then
  306.     COLLECT_NAMES=
  307.     export COLLECT_NAMES
  308.   fi
  309.   ;;
  310. esac
  311. # Determine commands to create old-style static archives.
  312. old_archive_cmds='$AR cru $oldlib$oldobjs'
  313. old_postinstall_cmds='chmod 644 $oldlib'
  314. old_postuninstall_cmds=
  315. # Set a sane default for `AR'.
  316. test -z "$AR" && AR=ar
  317. # If RANLIB is not set, then run the test.
  318. if test "${RANLIB+set}" != "set"; then
  319.   result=no
  320.   echo $ac_n "checking for ranlib... $ac_c" 1>&6
  321.   IFS="${IFS=  }"; save_ifs="$IFS"; IFS="${IFS}:"
  322.   for dir in $PATH; do
  323.     test -z "$dir" && dir=.
  324.     if test -f $dir/ranlib; then
  325.       RANLIB="ranlib"
  326.       result="ranlib"
  327.       break
  328.     fi
  329.   done
  330.   IFS="$save_ifs"
  331.   echo "$ac_t$result" 1>&6
  332. fi
  333. if test -n "$RANLIB"; then
  334.   old_archive_cmds="$old_archive_cmds;$RANLIB $oldlib"
  335.   old_postinstall_cmds="$RANLIB $oldlib;$old_postinstall_cmds"
  336. fi
  337. # Check to see if we are using GCC.
  338. if test "$with_gcc" != yes || test -z "$CC"; then
  339.   # If CC is not set, then try to find GCC or a usable CC.
  340.   if test -z "$CC"; then
  341.     echo $ac_n "checking for gcc... $ac_c" 1>&6
  342.     IFS="${IFS=  }"; save_ifs="$IFS"; IFS="${IFS}:"
  343.     for dir in $PATH; do
  344.       IFS="$save_ifs"
  345.       test -z "$dir" && dir=.
  346.       if test -f $dir/gcc; then
  347. CC="gcc"
  348. break
  349.       fi
  350.     done
  351.     IFS="$save_ifs"
  352.     if test -n "$CC"; then
  353.       echo "$ac_t$CC" 1>&6
  354.     else
  355.       echo "$ac_t"no 1>&6
  356.     fi
  357.   fi
  358.   # Not "gcc", so try "cc", rejecting "/usr/ucb/cc".
  359.   if test -z "$CC"; then
  360.     echo $ac_n "checking for cc... $ac_c" 1>&6
  361.     IFS="${IFS=  }"; save_ifs="$IFS"; IFS="${IFS}:"
  362.     cc_rejected=no
  363.     for dir in $PATH; do
  364.       test -z "$dir" && dir=.
  365.       if test -f $dir/cc; then
  366. if test "$dir/cc" = "/usr/ucb/cc"; then
  367.   cc_rejected=yes
  368.   continue
  369. fi
  370. CC="cc"
  371. break
  372.       fi
  373.     done
  374.     IFS="$save_ifs"
  375.     if test $cc_rejected = yes; then
  376.       # We found a bogon in the path, so make sure we never use it.
  377.       set dummy $CC
  378.       shift
  379.       if test $# -gt 0; then
  380. # We chose a different compiler from the bogus one.
  381. # However, it has the same name, so the bogon will be chosen
  382. # first if we set CC to just the name; use the full file name.
  383. shift
  384. set dummy "$dir/cc" "$@"
  385. shift
  386. CC="$@"
  387.       fi
  388.     fi
  389.     if test -n "$CC"; then
  390.       echo "$ac_t$CC" 1>&6
  391.     else
  392.       echo "$ac_t"no 1>&6
  393.     fi
  394.     if test -z "$CC"; then
  395.       echo "$progname: error: no acceptable cc found in $PATH" 1>&2
  396.       exit 1
  397.     fi
  398.   fi
  399.   # Now see if the compiler is really GCC.
  400.   with_gcc=no
  401.   echo $ac_n "checking whether we are using GNU C... $ac_c" 1>&6
  402.   echo "$progname:462: checking whether we are using GNU C" >&5
  403.   $rm conftest.c
  404.   cat > conftest.c <<EOF
  405. #ifdef __GNUC__
  406.   yes;
  407. #endif
  408. EOF
  409.   if { ac_try='${CC-cc} -E conftest.c'; { (eval echo $progname:470: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
  410.     with_gcc=yes
  411.   fi
  412.   $rm conftest.c
  413.   echo "$ac_t$with_gcc" 1>&6
  414. fi
  415. # Allow CC to be a program name with arguments.
  416. set dummy $CC
  417. compiler="$2"
  418. echo $ac_n "checking for $compiler option to produce PIC... $ac_c" 1>&6
  419. pic_flag=
  420. special_shlib_compile_flags=
  421. wl=
  422. link_static_flag=
  423. no_builtin_flag=
  424. if test "$with_gcc" = yes; then
  425.   wl='-Wl,'
  426.   link_static_flag='-static'
  427.   no_builtin_flag=' -fno-builtin'
  428.   case "$host_os" in
  429.   aix3* | aix4* | irix5* | irix6* | osf3* | osf4*)
  430.     # PIC is the default for these OSes.
  431.     ;;
  432.   os2*)
  433.     # We can build DLLs from non-PIC.
  434.     ;;
  435.   amigaos*)
  436.     # FIXME: we need at least 68020 code to build shared libraries, but
  437.     # adding the `-m68020' flag to GCC prevents building anything better,
  438.     # like `-m68040'.
  439.     pic_flag='-m68020 -resident32 -malways-restore-a4'
  440.     ;;
  441.   *)
  442.     pic_flag='-fPIC'
  443.     ;;
  444.   esac
  445. else
  446.   # PORTME Check for PIC flags for the system compiler.
  447.   case "$host_os" in
  448.   aix3* | aix4*)
  449.     # All AIX code is PIC.
  450.     link_static_flag='-bnso -bI:/lib/syscalls.exp'
  451.     ;;
  452.   hpux9* | hpux10* | hpux11*)
  453.     # Is there a better link_static_flag that works with the bundled CC?
  454.     wl='-Wl,'
  455.     link_static_flag="${wl}-a ${wl}archive"
  456.     pic_flag='+Z'
  457.     ;;
  458.   irix5* | irix6*)
  459.     wl='-Wl,'
  460.     link_static_flag='-non_shared'
  461.     # PIC (with -KPIC) is the default.
  462.     ;;
  463.   os2*)
  464.     # We can build DLLs from non-PIC.
  465.     ;;
  466.   osf3* | osf4*)
  467.     # All OSF/1 code is PIC.
  468.     wl='-Wl,'
  469.     link_static_flag='-non_shared'
  470.     ;;
  471.   sco3.2v5*)
  472.     pic_flag='-Kpic'
  473.     link_static_flag='-dn'
  474.     special_shlib_compile_flags='-belf'
  475.     ;;
  476.   solaris2*)
  477.     pic_flag='-KPIC'
  478.     link_static_flag='-Bstatic'
  479.     wl='-Wl,'
  480.     ;;
  481.   sunos4*)
  482.     pic_flag='-PIC'
  483.     link_static_flag='-Bstatic'
  484.     wl='-Qoption ld '
  485.     ;;
  486.   sysv4.2uw2*)
  487.     pic_flag='-KPIC'
  488.     link_static_flag='-Bstatic'
  489.     wl='-Wl,'
  490.     ;;
  491.   uts4*)
  492.     pic_flag='-pic'
  493.     link_static_flag='-Bstatic'
  494.     ;;
  495.   *)
  496.     can_build_shared=no
  497.     ;;
  498.   esac
  499. fi
  500. if test -n "$pic_flag"; then
  501.   echo "$ac_t$pic_flag" 1>&6
  502.   # Check to make sure the pic_flag actually works.
  503.   echo $ac_n "checking if $compiler PIC flag $pic_flag works... $ac_c" 1>&6
  504.   $rm conftest*
  505.   echo "int some_variable = 0;" > conftest.c
  506.   save_CFLAGS="$CFLAGS"
  507.   CFLAGS="$CFLAGS $pic_flag -DPIC"
  508.   echo "$progname:585: checking if $compiler PIC flag $pic_flag works" >&5
  509.   if { (eval echo $progname:586: "$ac_compile") 1>&5; (eval $ac_compile) 2>conftest.err; } && test -s conftest.o; then
  510.     # Append any warnings to the config.log.
  511.     cat conftest.err 1>&5
  512.     # On HP-UX, both CC and GCC only warn that PIC is supported... then they
  513.     # create non-PIC objects.  So, if there were any warnings, we assume that
  514.     # PIC is not supported.
  515.     if test -s conftest.err; then
  516.       echo "$ac_t"no 1>&6
  517.       can_build_shared=no
  518.       pic_flag=
  519.     else
  520.       echo "$ac_t"yes 1>&6
  521.       pic_flag=" $pic_flag"
  522.     fi
  523.   else
  524.     # Append any errors to the config.log.
  525.     cat conftest.err 1>&5
  526.     can_build_shared=no
  527.     pic_flag=
  528.     echo "$ac_t"no 1>&6
  529.   fi
  530.   CFLAGS="$save_CFLAGS"
  531.   $rm conftest*
  532. else
  533.   echo "$ac_t"none 1>&6
  534. fi
  535. # Check for any special shared library compilation flags.
  536. if test -n "$special_shlib_compile_flags"; then
  537.   echo "$progname: warning: `$CC' requires `$special_shlib_compile_flags' to build shared libraries" 1>&2
  538.   if echo "$old_CC $old_CFLAGS " | egrep -e "[  ]$special_shlib_compile_flags[  ]" >/dev/null; then :
  539.   else
  540.     echo "$progname: add `$special_shlib_compile_flags' to the CC or CFLAGS env variable and reconfigure" 1>&2
  541.     can_build_shared=no
  542.   fi
  543. fi
  544. echo $ac_n "checking if $compiler static flag $link_static_flag works... $ac_c" 1>&6
  545. $rm conftest*
  546. echo 'main(){return(0);}' > conftest.c
  547. save_LDFLAGS="$LDFLAGS"
  548. LDFLAGS="$LDFLAGS $link_static_flag"
  549. echo "$progname:629: checking if $compiler static flag $link_static_flag works" >&5
  550. if { (eval echo $progname:630: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  551.   echo "$ac_t$link_static_flag" 1>&6
  552. else
  553.   echo "$ac_t"none 1>&6
  554.   link_static_flag=
  555. fi
  556. LDFLAGS="$save_LDFLAGS"
  557. $rm conftest*
  558. if test -z "$LN_S"; then
  559.   # Check to see if we can use ln -s, or we need hard links.
  560.   echo $ac_n "checking whether ln -s works... $ac_c" 1>&6
  561.   $rm conftestdata
  562.   if ln -s X conftestdata 2>/dev/null; then
  563.     $rm conftestdata
  564.     LN_S="ln -s"
  565.   else
  566.     LN_S=ln
  567.   fi
  568.   if test "$LN_S" = "ln -s"; then
  569.     echo "$ac_t"yes 1>&6
  570.   else
  571.     echo "$ac_t"no 1>&6
  572.   fi
  573. fi
  574. # Make sure LD is an absolute path.
  575. if test -z "$LD"; then
  576.   ac_prog=ld
  577.   if test "$with_gcc" = yes; then
  578.     # Check if gcc -print-prog-name=ld gives a path.
  579.     echo $ac_n "checking for ld used by GCC... $ac_c" 1>&6
  580.     echo "$progname:662: checking for ld used by GCC" >&5
  581.     ac_prog=`($CC -print-prog-name=ld) 2>&5`
  582.     case "$ac_prog" in
  583.     # Accept absolute paths.
  584.     /* | [A-Za-z]:[/\]*)
  585.       test -z "$LD" && LD="$ac_prog"
  586.       ;;
  587.     "")
  588.       # If it fails, then pretend we are not using GCC.
  589.       ac_prog=ld
  590.       ;;
  591.     *)
  592.       # If it is relative, then search for the first ld in PATH.
  593.       with_gnu_ld=unknown
  594.       ;;
  595.     esac
  596.   elif test "$with_gnu_ld" = yes; then
  597.     echo $ac_n "checking for GNU ld... $ac_c" 1>&6
  598.     echo "$progname:680: checking for GNU ld" >&5
  599.   else
  600.     echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6
  601.     echo "$progname:683: checking for non-GNU ld" >&5
  602.   fi
  603.   if test -z "$LD"; then
  604.     IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  605.     for ac_dir in $PATH; do
  606.       test -z "$ac_dir" && ac_dir=.
  607.       if test -f "$ac_dir/$ac_prog"; then
  608. LD="$ac_dir/$ac_prog"
  609. # Check to see if the program is GNU ld.  I'd rather use --version,
  610. # but apparently some GNU ld's only accept -v.
  611. # Break only if it was the GNU/non-GNU ld that we prefer.
  612. if "$LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
  613.   test "$with_gnu_ld" != no && break
  614. else
  615.   test "$with_gnu_ld" != yes && break
  616. fi
  617.       fi
  618.     done
  619.     IFS="$ac_save_ifs"
  620.   fi
  621.   if test -n "$LD"; then
  622.     echo "$ac_t$LD" 1>&6
  623.   else
  624.     echo "$ac_t"no 1>&6
  625.   fi
  626.   if test -z "$LD"; then
  627.     echo "$progname: error: no acceptable ld found in $PATH" 1>&2
  628.     exit 1
  629.   fi
  630. fi
  631. # Check to see if it really is or is not GNU ld.
  632. echo $ac_n "checking if the linker ($LD) is GNU ld... $ac_c" 1>&6
  633. # I'd rather use --version here, but apparently some GNU ld's only accept -v.
  634. if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
  635.   with_gnu_ld=yes
  636. else
  637.   with_gnu_ld=no
  638. fi
  639. echo "$ac_t$with_gnu_ld" 1>&6
  640. # See if the linker supports building shared libraries.
  641. echo $ac_n "checking whether the linker ($LD) supports shared libraries... $ac_c" 1>&6
  642. allow_undefined_flag=
  643. no_undefined_flag=
  644. archive_cmds=
  645. old_archive_from_new_cmds=
  646. export_dynamic_flag_spec=
  647. whole_archive_flag_spec=
  648. hardcode_libdir_flag_spec=
  649. hardcode_libdir_separator=
  650. hardcode_direct=no
  651. hardcode_minus_L=no
  652. hardcode_shlibpath_var=unsupported
  653. runpath_var=
  654. ld_shlibs=yes
  655. if test "$with_gnu_ld" = yes; then
  656.   # See if GNU ld supports shared libraries.
  657.   case "$host_os" in
  658.   amigaos*)
  659.     archive_cmds='$rm $objdir/a2ixlibrary.data;$echo "#define NAME $libname" > $objdir/a2ixlibrary.data;$echo "#define LIBRARY_ID 1" >> $objdir/a2ixlibrary.data;$echo "#define VERSION $major" >> $objdir/a2ixlibrary.data;$echo "#define REVISION $revision" >> $objdir/a2ixlibrary.data;$AR cru $lib$libobjs;$RANLIB $lib;(cd $objdir && a2ixlibrary -32)'
  660.     hardcode_libdir_flag_spec='-L$libdir'
  661.     hardcode_minus_L=yes
  662.     ;;
  663.   sunos4*)
  664.     archive_cmds='$LD -assert pure-text -Bstatic -o $lib$libobjs'
  665.     hardcode_direct=yes
  666.     hardcode_minus_L=yes
  667.     hardcode_shlibpath_var=no
  668.     ;;
  669.   *)
  670.     if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
  671.       archive_cmds='$CC -shared ${wl}-soname $wl$soname -o $lib$libobjs'
  672.     else
  673.       ld_shlibs=no
  674.     fi
  675.     ;;
  676.   esac
  677.   if test "$ld_shlibs" = yes; then
  678.     runpath_var=LD_RUN_PATH
  679.     hardcode_libdir_flag_spec='${wl}--rpath ${wl}$libdir'
  680.     export_dynamic_flag_spec='${wl}--export-dynamic'
  681.     whole_archive_flag_spec='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
  682.   fi
  683. else
  684.   # PORTME fill in a description of your system's linker (not GNU ld)
  685.   case "$host_os" in
  686.   aix3*)
  687.     allow_undefined_flag=unsupported
  688.     archive_cmds='$NM$libobjs | $global_symbol_pipe | sed '''s/.* //''' > $lib.exp;$LD -o $objdir/$soname$libobjs -bE:$lib.exp -T512 -H512 -bM:SRE;$AR cru $lib $objdir/$soname'
  689.     # Note: this linker hardcodes the directories in LIBPATH if there
  690.     # are no directories specified by -L.
  691.     hardcode_minus_L=yes
  692.     if test "$with_gcc" = yes && test -z "$link_static_flag"; then
  693.       # Neither direct hardcoding nor static linking is supported with a
  694.       # broken collect2.
  695.       hardcode_direct=unsupported
  696.     fi
  697.     ;;
  698.   aix4*)
  699.     allow_undefined_flag=unsupported
  700.     archive_cmds='$NM$libobjs | $global_symbol_pipe | sed '''s/.* //''' > $lib.exp;$CC -o $objdir/$soname$libobjs ${wl}-bE:$lib.exp ${wl}-bM:SRE ${wl}-bnoentry;$AR cru $lib $objdir/$soname'
  701.     hardcode_direct=yes
  702.     hardcode_minus_L=yes
  703.     ;;
  704.   amigaos*)
  705.     archive_cmds='$rm $objdir/a2ixlibrary.data;$echo "#define NAME $libname" > $objdir/a2ixlibrary.data;$echo "#define LIBRARY_ID 1" >> $objdir/a2ixlibrary.data;$echo "#define VERSION $major" >> $objdir/a2ixlibrary.data;$echo "#define REVISION $revision" >> $objdir/a2ixlibrary.data;$AR cru $lib$libobjs;$RANLIB $lib;(cd $objdir && a2ixlibrary -32)'
  706.     hardcode_libdir_flag_spec='-L$libdir'
  707.     hardcode_minus_L=yes
  708.     ;;
  709.   # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
  710.   # support.  Future versions do this automatically, but an explicit c++rt0.o
  711.   # does not break anything, and helps significantly (at the cost of a little
  712.   # extra space).
  713.   freebsd2.2*)
  714.     archive_cmds='$LD -Bshareable -o $lib$libobjs /usr/lib/c++rt0.o'
  715.     hardcode_libdir_flag_spec='-R$libdir'
  716.     hardcode_direct=yes
  717.     hardcode_minus_L=yes
  718.     hardcode_shlibpath_var=no
  719.     ;;
  720.   # Unfortunately, older versions of FreeBSD 2 do not have this feature.
  721.   freebsd2*)
  722.     archive_cmds='$LD -Bshareable -o $lib$libobjs'
  723.     hardcode_direct=yes
  724.     hardcode_minus_L=yes
  725.     hardcode_shlibpath_var=no
  726.     ;;
  727.   # FreeBSD 3, at last, uses gcc -shared to do shared libraries.
  728.   freebsd3*)
  729.     archive_cmds='$CC -shared -o $lib$libobjs'
  730.     hardcode_libdir_flag_spec='-R$libdir'
  731.     hardcode_direct=yes
  732.     hardcode_minus_L=no
  733.     hardcode_shlibpath_var=no
  734.     ;;
  735.   hpux9*)
  736.     archive_cmds='$rm $objdir/$soname;$LD -b +s +b $install_libdir -o $objdir/$soname$libobjs;mv $objdir/$soname $lib'
  737.     hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
  738.     hardcode_direct=yes
  739.     hardcode_minus_L=yes
  740.     export_dynamic_flag_spec='${wl}-E'
  741.     ;;
  742.   hpux10* | hpux11*)
  743.     archive_cmds='$LD -b +h $soname +s +b $install_libdir -o $lib$libobjs'
  744.     hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
  745.     hardcode_direct=yes
  746.     hardcode_minus_L=yes
  747.     export_dynamic_flag_spec='${wl}-E'
  748.     ;;
  749.   irix5* | irix6*)
  750.     if test "$with_gcc" = yes; then
  751.       archive_cmds='$CC -shared -o $lib ${wl}-soname ${wl}$soname ${wl}-set_version ${wl}$verstring$libobjs'
  752.     else
  753.       archive_cmds='$LD -shared -o $lib -soname $soname -set_version $verstring$libobjs'
  754.     fi
  755.     hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  756.     ;;
  757.   netbsd*)
  758.     # Tested with NetBSD 1.2 ld
  759.     archive_cmds='$LD -Bshareable -o $lib$libobjs'
  760.     hardcode_libdir_flag_spec='-R$libdir'
  761.     hardcode_direct=yes
  762.     hardcode_shlibpath_var=no
  763.     ;;
  764.   openbsd*)
  765.     archive_cmds='$LD -Bshareable -o $lib$libobjs'
  766.     hardcode_libdir_flag_spec='-R$libdir'
  767.     hardcode_direct=yes
  768.     hardcode_shlibpath_var=no
  769.     ;;
  770.   os2*)
  771.     hardcode_libdir_flag_spec='-L$libdir'
  772.     hardcode_minus_L=yes
  773.     allow_undefined_flag=unsupported
  774.     archive_cmds='$echo "LIBRARY $libname INITINSTANCE" > $objdir/$libname.def;$echo "DESCRIPTION "$libname"" >> $objdir/$libname.def;$echo DATA >> $objdir/$libname.def;$echo " SINGLE NONSHARED" >> $objdir/$libname.def;$echo EXPORTS >> $objdir/$libname.def;emxexp$libobjs >> $objdir/$libname.def;$CC -Zdll -Zcrtdll -o $lib$libobjs $objdir/$libname.def'
  775.     old_archive_from_new_cmds='emximp -o $objdir/$libname.a $objdir/$libname.def'
  776.     ;;
  777.   osf3* | osf4*)
  778.     allow_undefined_flag=' -expect_unresolved *'
  779.     archive_cmds='$LD -shared${allow_undefined_flag} -o $lib -soname $soname -set_version $verstring$libobjs$deplibs'
  780.     hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  781.     hardcode_libdir_separator=:
  782.     ;;
  783.   sco3.2v5*)
  784.     archive_cmds='$LD -G -o $lib$libobjs'
  785.     hardcode_direct=yes
  786.     ;;
  787.   solaris2*)
  788.     no_undefined_flag=' -z text'
  789.     archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib$libobjs'
  790.     hardcode_libdir_flag_spec='-R$libdir'
  791.     hardcode_shlibpath_var=no
  792.     # Solaris 2 before 2.5 hardcodes -L paths.
  793.     case "$host_os" in
  794.     solaris2.[0-4]*)
  795.       hardcode_minus_L=yes
  796.       ;;
  797.     esac
  798.     ;;
  799.   sunos4*)
  800.     archive_cmds='$LD -assert pure-text -Bstatic -o $lib$libobjs'
  801.     hardcode_libdir_flag_spec='-L$libdir'
  802.     hardcode_direct=yes
  803.     hardcode_minus_L=yes
  804.     hardcode_shlibpath_var=no
  805.     ;;
  806.   uts4*)
  807.     archive_cmds='$LD -G -h $soname -o $lib$libobjs'
  808.     hardcode_libdir_flag_spec='-L$libdir'
  809.     hardcode_direct=no
  810.     hardcode_minus_L=no
  811.     hardcode_shlibpath_var=no
  812.     ;;
  813.   *)
  814.     ld_shlibs=no
  815.     can_build_shared=no
  816.     ;;
  817.   esac
  818. fi
  819. echo "$ac_t$ld_shlibs" 1>&6
  820. if test -z "$NM"; then
  821.   echo $ac_n "checking for BSD-compatible nm... $ac_c" 1>&6
  822.   case "$NM" in
  823.   /* | [A-Za-z]:[/\]*) ;; # Let the user override the test with a path.
  824.   *)
  825.     IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
  826.     for ac_dir in /usr/ucb /usr/ccs/bin $PATH /bin; do
  827.       test -z "$ac_dir" && ac_dir=.
  828.       if test -f $ac_dir/nm; then
  829.         # Check to see if the nm accepts a BSD-compat flag.
  830.         # Adding the `sed 1q' prevents false positives on HP-UX, which says:
  831.         #   nm: unknown option "B" ignored
  832.         if ($ac_dir/nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
  833.           NM="$ac_dir/nm -B"
  834.         elif ($ac_dir/nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
  835.           NM="$ac_dir/nm -p"
  836. else
  837.           NM="$ac_dir/nm"
  838. fi
  839.         break
  840.       fi
  841.     done
  842.     IFS="$ac_save_ifs"
  843.     test -z "$NM" && NM=nm
  844.     ;;
  845.   esac
  846.   echo "$ac_t$NM" 1>&6
  847. fi
  848. # Check for command to grab the raw symbol name followed by C symbol from nm.
  849. echo $ac_n "checking command to parse $NM output... $ac_c" 1>&6
  850. # These are sane defaults that work on at least a few old systems.
  851. # [They come from Ultrix.  What could be older than Ultrix?!! ;)]
  852. # Character class describing NM global symbol codes.
  853. symcode='[BCDEGRSTU]'
  854. # Regexp to match symbols that can be accessed directly from C.
  855. sympat='([_A-Za-z][_A-Za-z0-9]*)'
  856. # Transform the above into a raw symbol and a C symbol.
  857. symxfrm='1 1'
  858. # Define system-specific variables.
  859. case "$host_os" in
  860. aix*)
  861.   symcode='[BCDTU]'
  862.   ;;
  863. irix*)
  864.   # Cannot use undefined symbols on IRIX because inlined functions mess us up.
  865.   symcode='[BCDEGRST]'
  866.   ;;
  867. solaris2*)
  868.   symcode='[BDTU]'
  869.   ;;
  870. esac
  871. # If we're using GNU nm, then use its standard symbol codes.
  872. if $NM -V 2>&1 | egrep '(GNU|with BFD)' > /dev/null; then
  873.   symcode='[ABCDGISTUW]'
  874. fi
  875. # Write the raw and C identifiers.
  876. global_symbol_pipe="sed -n -e 's/^.* $symcode $sympat$/$symxfrm/p'"
  877. # Check to see that the pipe works correctly.
  878. pipe_works=no
  879. $rm conftest*
  880. cat > conftest.c <<EOF
  881. #ifdef __cplusplus
  882. extern "C" {
  883. #endif
  884. char nm_test_var;
  885. void nm_test_func(){}
  886. #ifdef __cplusplus
  887. }
  888. #endif
  889. main(){nm_test_var='a';nm_test_func();return(0);}
  890. EOF
  891. echo "$progname:1013: checking if global_symbol_pipe works" >&5
  892. if { (eval echo $progname:1014: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; } && test -s conftest.o; then
  893.   # Now try to grab the symbols.
  894.   nlist=conftest.nm
  895.   if { echo "$progname:1017: eval "$NM conftest.o | $global_symbol_pipe > $nlist"" >&5; eval "$NM conftest.o | $global_symbol_pipe > $nlist 2>&5"; } && test -s "$nlist"; then
  896.     # Try sorting and uniquifying the output.
  897.     if sort "$nlist" | uniq > "$nlist"T; then
  898.       mv -f "$nlist"T "$nlist"
  899.       wcout=`wc "$nlist" 2>/dev/null`
  900.       count=`$echo "X$wcout" | $Xsed -e 's/^[  ]*([0-9][0-9]*).*$/1/'`
  901.       (test "$count" -ge 0) 2>/dev/null || count=-1
  902.     else
  903.       rm -f "$nlist"T
  904.       count=-1
  905.     fi
  906.     # Make sure that we snagged all the symbols we need.
  907.     if egrep ' nm_test_var$' "$nlist" >/dev/null; then
  908.       if egrep ' nm_test_func$' "$nlist" >/dev/null; then
  909. cat <<EOF > conftest.c
  910. #ifdef __cplusplus
  911. extern "C" {
  912. #endif
  913. EOF
  914.         # Now generate the symbol file.
  915.         sed 's/^.* (.*)$/extern char 1;/' < "$nlist" >> conftest.c
  916. cat <<EOF >> conftest.c
  917. #if defined (__STDC__) && __STDC__
  918. # define __ptr_t void *
  919. #else
  920. # define __ptr_t char *
  921. #endif
  922. /* The number of symbols in dld_preloaded_symbols, -1 if unsorted. */
  923. int dld_preloaded_symbol_count = $count;
  924. /* The mapping between symbol names and symbols. */
  925. struct {
  926.   char *name;
  927.   __ptr_t address;
  928. }
  929. dld_preloaded_symbols[] =
  930. {
  931. EOF
  932.         sed 's/^(.*) (.*)$/  {"1", (__ptr_t) &2},/' < "$nlist" >> conftest.c
  933.         cat <<EOF >> conftest.c
  934.   {0, (__ptr_t) 0}
  935. };
  936. #ifdef __cplusplus
  937. }
  938. #endif
  939. EOF
  940.         # Now try linking the two files.
  941.         mv conftest.o conftestm.o
  942. save_LIBS="$LIBS"
  943. save_CFLAGS="$CFLAGS"
  944.         LIBS='conftestm.o'
  945. CFLAGS="$CFLAGS$no_builtin_flag"
  946.         if { (eval echo $progname:1075: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  947.           pipe_works=yes
  948.         else
  949.           echo "$progname: failed program was:" >&5
  950.           cat conftest.c >&5
  951.         fi
  952.         LIBS="$save_LIBS"
  953.       else
  954.         echo "cannot find nm_test_func in $nlist" >&5
  955.       fi
  956.     else
  957.       echo "cannot find nm_test_var in $nlist" >&5
  958.     fi
  959.   else
  960.     echo "cannot run $global_symbol_pipe" >&5
  961.   fi
  962. else
  963.   echo "$progname: failed program was:" >&5
  964.   cat conftest.c >&5
  965. fi
  966. $rm conftest*
  967. # Do not use the global_symbol_pipe unless it works.
  968. echo "$ac_t$pipe_works" 1>&6
  969. test "$pipe_works" = yes || global_symbol_pipe=
  970. # Check hardcoding attributes.
  971. echo $ac_n "checking how to hardcode library paths into programs... $ac_c" 1>&6
  972. hardcode_action=
  973. if test -n "$hardcode_libdir_flag_spec" || 
  974.    test -n "$runpath_var"; then
  975.   # We can hardcode non-existant directories.
  976.   if test "$hardcode_direct" != no && 
  977.      test "$hardcode_minus_L" != no && 
  978.      test "$hardcode_shlibpath_var" != no; then
  979.     # Linking always hardcodes the temporary library directory.
  980.     hardcode_action=relink
  981.   else
  982.     # We can link without hardcoding, and we can hardcode nonexisting dirs.
  983.     hardcode_action=immediate
  984.   fi
  985. else
  986.   # We cannot hardcode anything, or else we can only hardcode existing
  987.   # directories.
  988.   hardcode_action=unsupported
  989. fi
  990. echo "$ac_t$hardcode_action" 1>&6
  991. reload_flag=
  992. reload_cmds='$LD$reload_flag -o $output$reload_objs'
  993. echo $ac_n "checking for $LD option to reload object files... $ac_c" 1>&6
  994. # PORTME Some linkers may need a different reload flag.
  995. reload_flag='-r'
  996. echo "$ac_t$reload_flag" 1>&6
  997. test -n "$reload_flag" && reload_flag=" $reload_flag"
  998. # PORTME Fill in your ld.so characteristics
  999. library_names_spec=
  1000. libname_spec='lib$name'
  1001. soname_spec=
  1002. postinstall_cmds=
  1003. postuninstall_cmds=
  1004. finish_cmds=
  1005. finish_eval=
  1006. shlibpath_var=
  1007. version_type=none
  1008. dynamic_linker="$host_os ld.so"
  1009. echo $ac_n "checking dynamic linker characteristics... $ac_c" 1>&6
  1010. case "$host_os" in
  1011. aix3* | aix4*)
  1012.   version_type=linux
  1013.   library_names_spec='${libname}${release}.so$versuffix $libname.a'
  1014.   shlibpath_var=LIBPATH
  1015.   # AIX has no versioning support, so we append a major version to the name.
  1016.   soname_spec='${libname}${release}.so$major'
  1017.   ;;
  1018. amigaos*)
  1019.   library_names_spec='$libname.ixlibrary $libname.a'
  1020.   # Create ${libname}_ixlibrary.a entries in /sys/libs.
  1021.   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'
  1022.   ;;
  1023. freebsd2* | freebsd3*)
  1024.   version_type=sunos
  1025.   library_names_spec='${libname}${release}.so$versuffix $libname.so'
  1026.   finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir'
  1027.   shlibpath_var=LD_LIBRARY_PATH
  1028.   ;;
  1029. gnu*)
  1030.   version_type=linux
  1031.   library_names_spec='${libname}${release}.so$versuffix ${libname}.so'
  1032.   shlibpath_var=LD_LIBRARY_PATH
  1033.   ;;
  1034. hpux9* | hpux10* | hpux11*)
  1035.   # Give a soname corresponding to the major version so that dld.sl refuses to
  1036.   # link against other versions.
  1037.   dynamic_linker="$host_os dld.sl"
  1038.   version_type=sunos
  1039.   shlibpath_var=SHLIB_PATH
  1040.   library_names_spec='${libname}${release}.sl$versuffix ${libname}${release}.sl$major $libname.sl'
  1041.   soname_spec='${libname}${release}.sl$major'
  1042.   # HP-UX runs *really* slowly unless shared libraries are mode 555.
  1043.   postinstall_cmds='chmod 555 $lib'
  1044.   ;;
  1045. irix5* | irix6*)
  1046.   version_type=osf
  1047.   soname_spec='${libname}${release}.so'
  1048.   library_names_spec='${libname}${release}.so$versuffix $libname.so'
  1049.   shlibpath_var=LD_LIBRARY_PATH
  1050.   ;;
  1051. # No shared lib support for Linux oldld, aout, or coff.
  1052. linux-gnuoldld* | linux-gnuaout* | linux-gnucoff*)
  1053.   dynamic_linker=no
  1054.   ;;
  1055. # This must be Linux ELF.
  1056. linux-gnu*)
  1057.   version_type=linux
  1058.   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
  1059.   soname_spec='${libname}${release}.so$major'
  1060.   finish_cmds='PATH="$PATH:/sbin" ldconfig -n $libdir'
  1061.   shlibpath_var=LD_LIBRARY_PATH
  1062.   if test -f /lib/ld.so.1; then
  1063.     dynamic_linker='GNU ld.so'
  1064.   else
  1065.     # Only the GNU ld.so supports shared libraries on MkLinux.
  1066.     case "$host_cpu" in
  1067.     powerpc*) dynamic_linker=no ;;
  1068.     *) dynamic_linker='Linux ld.so' ;;
  1069.     esac
  1070.   fi
  1071.   ;;
  1072. netbsd* | openbsd*)
  1073.   version_type=sunos
  1074.   library_names_spec='${libname}${release}.so$versuffix'
  1075.   finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir'
  1076.   shlibpath_var=LD_LIBRARY_PATH
  1077.   ;;
  1078. os2*)
  1079.   libname_spec='$name'
  1080.   library_names_spec='$libname.dll $libname.a'
  1081.   dynamic_linker='OS/2 ld.exe'
  1082.   shlibpath_var=LIBPATH
  1083.   ;;
  1084. osf3* | osf4*)
  1085.   version_type=osf
  1086.   soname_spec='${libname}${release}.so'
  1087.   library_names_spec='${libname}${release}.so$versuffix $libname.so'
  1088.   shlibpath_var=LD_LIBRARY_PATH
  1089.   ;;
  1090. sco3.2v5*)
  1091.   version_type=osf
  1092.   soname_spec='${libname}${release}.so$major'
  1093.   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
  1094.   shlibpath_var=LD_LIBRARY_PATH
  1095.   ;;
  1096. solaris2*)
  1097.   version_type=linux
  1098.   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
  1099.   soname_spec='${libname}${release}.so$major'
  1100.   shlibpath_var=LD_LIBRARY_PATH
  1101.   # ldd complains unless libraries are executable
  1102.   postinstall_cmds='chmod +x $lib'
  1103.   ;;
  1104. sunos4*)
  1105.   version_type=sunos
  1106.   library_names_spec='${libname}${release}.so$versuffix'
  1107.   finish_cmds='PATH="$PATH:/usr/etc" ldconfig $libdir'
  1108.   shlibpath_var=LD_LIBRARY_PATH
  1109.   ;;
  1110. sysv4.2uw2*)
  1111.   version_type=linux
  1112.   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
  1113.   soname_spec='${libname}${release}.so$major'
  1114.   shlibpath_var=LD_LIBRARY_PATH
  1115.   ;;
  1116. uts4*)
  1117.   version_type=linux
  1118.   library_names_spec='${libname}${release}.so$versuffix ${libname}${release}.so$major $libname.so'
  1119.   soname_spec='${libname}${release}.so$major'
  1120.   shlibpath_var=LD_LIBRARY_PATH
  1121.   ;;
  1122. *)
  1123.   dynamic_linker=no
  1124.   ;;
  1125. esac
  1126. echo "$ac_t$dynamic_linker"
  1127. test "$dynamic_linker" = no && can_build_shared=no
  1128. # Report the final consequences.
  1129. echo "checking if libtool supports shared libraries... $can_build_shared" 1>&6
  1130. echo $ac_n "checking whether to build shared libraries... $ac_c" 1>&6
  1131. test "$can_build_shared" = "no" && enable_shared=no
  1132. # On AIX, shared libraries and static libraries use the same namespace, and
  1133. # are all built from PIC.
  1134. case "$host_os" in
  1135. aix*)
  1136.   test "$enable_shared" = yes && enable_static=no
  1137.   if test -n "$RANLIB"; then
  1138.     archive_cmds="$archive_cmds;$RANLIB $lib"
  1139.     postinstall_cmds='$RANLIB $lib'
  1140.   fi
  1141.   ;;
  1142. esac
  1143. echo "$ac_t$enable_shared" 1>&6
  1144. # Make sure either enable_shared or enable_static is yes.
  1145. test "$enable_shared" = yes || enable_static=yes
  1146. echo "checking whether to build static libraries... $enable_static" 1>&6
  1147. echo $ac_n "checking for objdir... $ac_c" 1>&6
  1148. rm -f .libs 2>/dev/null
  1149. mkdir .libs 2>/dev/null
  1150. if test -d .libs; then
  1151.   objdir=.libs
  1152. else
  1153.   # MS-DOS does not allow filenames that begin with a dot.
  1154.   objdir=_libs
  1155. fi
  1156. rmdir .libs 2>/dev/null
  1157. echo "$ac_t$objdir" 1>&6
  1158. # Copy echo and quote the copy, instead of the original, because it is
  1159. # used later.
  1160. ltecho="$echo"
  1161. # Now quote all the things that may contain metacharacters.
  1162. for var in ltecho old_CC old_CFLAGS old_CPPFLAGS old_LD old_NM old_RANLIB 
  1163.   old_LN_S AR CC LD LN_S NM reload_flag reload_cmds wl pic_flag 
  1164.   link_static_flag no_builtin_flag export_dynamic_flag_spec 
  1165.   whole_archive_flag_spec libname_spec library_names_spec soname_spec RANLIB 
  1166.   old_archive_cmds old_archive_from_new_cmds old_postinstall_cmds 
  1167.   old_postuninstall_cmds archive_cmds postinstall_cmds postuninstall_cmds 
  1168.   allow_undefined_flag no_undefined_flag 
  1169.   finish_cmds finish_eval global_symbol_pipe 
  1170.   hardcode_libdir_flag_spec hardcode_libdir_separator; do
  1171.   case "$var" in
  1172.   reload_cmds | old_archive_cmds | old_archive_from_new_cmds | 
  1173.   old_postinstall_cmds | old_postuninstall_cmds | archive_cmds | 
  1174.   postinstall_cmds | postuninstall_cmds | finish_cmds)
  1175.     # Double-quote double-evaled strings.
  1176.     eval "$var=`$echo "X$$var" | $Xsed -e "$double_quote_subst" -e "$sed_quote_subst"`"
  1177.     ;;
  1178.   *)
  1179.     eval "$var=`$echo "X$$var" | $Xsed -e "$sed_quote_subst"`"
  1180.     ;;
  1181.   esac
  1182. done
  1183. trap "$rm "$ofile"; exit 1" 1 2 15
  1184. echo "creating $ofile"
  1185. $rm "$ofile"
  1186. cat <<EOF > "$ofile"
  1187. #! $SHELL
  1188. # `$echo "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
  1189. # Generated automatically by $PROGRAM - GNU $PACKAGE $VERSION
  1190. # NOTE: Changes made to this file will be lost: look at ltconfig or ltmain.sh.
  1191. #
  1192. # Copyright (C) 1996-1998 Free Software Foundation, Inc.
  1193. # Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
  1194. #
  1195. # This program is free software; you can redistribute it and/or modify
  1196. # it under the terms of the GNU General Public License as published by
  1197. # the Free Software Foundation; either version 2 of the License, or
  1198. # (at your option) any later version.
  1199. #
  1200. # This program is distributed in the hope that it will be useful, but
  1201. # WITHOUT ANY WARRANTY; without even the implied warranty of
  1202. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  1203. # General Public License for more details.
  1204. #
  1205. # You should have received a copy of the GNU General Public License
  1206. # along with this program; if not, write to the Free Software
  1207. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  1208. #
  1209. # As a special exception to the GNU General Public License, if you
  1210. # distribute this file as part of a program that contains a
  1211. # configuration script generated by Autoconf, you may include it under
  1212. # the same distribution terms that you use for the rest of that program.
  1213. # Sed that helps us avoid accidentally triggering echo(1) options like -n.
  1214. Xsed="sed -e s/^X//"
  1215. # The HP-UX ksh and POSIX shell print the target directory to stdout
  1216. # if CDPATH is set.
  1217. if test "${CDPATH+set}" = set; then CDPATH=; export CDPATH; fi
  1218. ### BEGIN LIBTOOL CONFIG
  1219. # Libtool was configured as follows, on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  1220. #
  1221. # CC="$old_CC" CFLAGS="$old_CFLAGS" CPPFLAGS="$old_CPPFLAGS" \
  1222. # LD="$old_LD" NM="$old_NM" RANLIB="$old_RANLIB" LN_S="$old_LN_S" \
  1223. #   $0$ltconfig_args
  1224. #
  1225. # Compiler and other test output produced by $progname, useful for
  1226. # debugging $progname, is in ./config.log if it exists.
  1227. # The version of $progname that generated this script.
  1228. LTCONFIG_VERSION="$VERSION"
  1229. # Shell to use when invoking shell scripts.
  1230. SHELL="$SHELL"
  1231. # Whether or not to build shared libraries.
  1232. build_libtool_libs=$enable_shared
  1233. # Whether or not to build static libraries.
  1234. build_old_libs=$enable_static
  1235. # The host system.
  1236. host_alias="$host_alias"
  1237. host="$host"
  1238. # An echo program that does not interpret backslashes.
  1239. echo="$ltecho"
  1240. # The archiver.
  1241. AR="$AR"
  1242. # The default C compiler.
  1243. CC="$CC"
  1244. # The linker used to build libraries.
  1245. LD="$LD"
  1246. # Whether we need hard or soft links.
  1247. LN_S="$LN_S"
  1248. # A BSD-compatible nm program.
  1249. NM="$NM"
  1250. # The name of the directory that contains temporary libtool files.
  1251. objdir="$objdir"
  1252. # How to create reloadable object files.
  1253. reload_flag="$reload_flag"
  1254. reload_cmds="$reload_cmds"
  1255. # How to pass a linker flag through the compiler.
  1256. wl="$wl"
  1257. # Additional compiler flags for building library objects.
  1258. pic_flag="$pic_flag"
  1259. # Compiler flag to prevent dynamic linking.
  1260. link_static_flag="$link_static_flag"
  1261. # Compiler flag to turn off builtin functions.
  1262. no_builtin_flag="$no_builtin_flag"
  1263. # Compiler flag to allow reflexive dlopens.
  1264. export_dynamic_flag_spec="$export_dynamic_flag_spec"
  1265. # Compiler flag to generate shared objects directly from archives.
  1266. whole_archive_flag_spec="$whole_archive_flag_spec"
  1267. # Library versioning type.
  1268. version_type=$version_type
  1269. # Format of library name prefix.
  1270. libname_spec="$libname_spec"
  1271. # List of archive names.  First name is the real one, the rest are links.
  1272. # The last name is the one that the linker finds with -lNAME.
  1273. library_names_spec="$library_names_spec"
  1274. # The coded name of the library, if different from the real name.
  1275. soname_spec="$soname_spec"
  1276. # Commands used to build and install an old-style archive.
  1277. RANLIB="$RANLIB"
  1278. old_archive_cmds="$old_archive_cmds"
  1279. old_postinstall_cmds="$old_postinstall_cmds"
  1280. old_postuninstall_cmds="$old_postuninstall_cmds"
  1281. # Create an old-style archive from a shared archive.
  1282. old_archive_from_new_cmds="$old_archive_from_new_cmds"
  1283. # Commands used to build and install a shared archive.
  1284. archive_cmds="$archive_cmds"
  1285. postinstall_cmds="$postinstall_cmds"
  1286. postuninstall_cmds="$postuninstall_cmds"
  1287. # Flag that allows shared libraries with undefined symbols to be built.
  1288. allow_undefined_flag="$allow_undefined_flag"
  1289. # Flag that forces no undefined symbols.
  1290. no_undefined_flag="$no_undefined_flag"
  1291. # Commands used to finish a libtool library installation in a directory.
  1292. finish_cmds="$finish_cmds"
  1293. # Same as above, but a single script fragment to be evaled but not shown.
  1294. finish_eval="$finish_eval"
  1295. # Take the output of nm and produce a listing of raw symbols and C names.
  1296. global_symbol_pipe="$global_symbol_pipe"
  1297. # This is the shared library runtime path variable.
  1298. runpath_var=$runpath_var
  1299. # This is the shared library path variable.
  1300. shlibpath_var=$shlibpath_var
  1301. # How to hardcode a shared library path into an executable.
  1302. hardcode_action=$hardcode_action
  1303. # Flag to hardcode $libdir into a binary during linking.
  1304. # This must work even if $libdir does not exist.
  1305. hardcode_libdir_flag_spec="$hardcode_libdir_flag_spec"
  1306. # Whether we need a single -rpath flag with a separated argument.
  1307. hardcode_libdir_separator="$hardcode_libdir_separator"
  1308. # Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
  1309. # resulting binary.
  1310. hardcode_direct=$hardcode_direct
  1311. # Set to yes if using the -LDIR flag during linking hardcodes DIR into the
  1312. # resulting binary.
  1313. hardcode_minus_L=$hardcode_minus_L
  1314. # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
  1315. # the resulting binary.
  1316. hardcode_shlibpath_var=$hardcode_shlibpath_var
  1317. EOF
  1318. case "$host_os" in
  1319. aix3*)
  1320.   cat <<EOF >> "$ofile"
  1321. # AIX sometimes has problems with the GCC collect2 program.  For some
  1322. # reason, if we set the COLLECT_NAMES environment variable, the problems
  1323. # vanish in a puff of smoke.
  1324. if test "${COLLECT_NAMES+set}" != set; then
  1325.   COLLECT_NAMES=
  1326.   export COLLECT_NAMES
  1327. fi
  1328. EOF
  1329.   ;;
  1330. esac
  1331. echo '### END LIBTOOL CONFIG' >> "$ofile"
  1332. echo >> "$ofile"
  1333. # Append the ltmain.sh script.
  1334. cat "$ltmain" >> "$ofile" || (rm -f "$ofile"; exit 1)
  1335. chmod +x "$ofile"
  1336. exit 0
  1337. # Local Variables:
  1338. # mode:shell-script
  1339. # sh-indentation:2
  1340. # End: