home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / ImageMagick-4.0.6.tar.gz / ImageMagick-4.0.6.tar / ImageMagick-4.0.6 / ltconfig < prev    next >
Text File  |  1998-04-19  |  45KB  |  1,546 lines

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