configure
上传用户:tjescc
上传日期:2021-02-23
资源大小:419k
文件大小:276k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. # Guess values for system-dependent variables and create Makefiles.
  3. # Generated automatically using autoconf version 2.13 
  4. # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
  5. #
  6. # This configure script is free software; the Free Software Foundation
  7. # gives unlimited permission to copy, distribute and modify it.
  8. # Defaults:
  9. ac_help=
  10. ac_default_prefix=/usr/local
  11. # Any additions from configure.in:
  12. ac_default_prefix="/usr/local"
  13. ac_help="$ac_help
  14.   --enable-gccpipe   use "gcc -pipe" for compilation, where possible"
  15. ac_help="$ac_help
  16.   --enable-shared[=PKGS]  build shared libraries [default=yes]"
  17. ac_help="$ac_help
  18.   --enable-static[=PKGS]  build static libraries [default=yes]"
  19. ac_help="$ac_help
  20.   --enable-fast-install[=PKGS]  optimize for fast installation [default=yes]"
  21. ac_help="$ac_help
  22.   --with-gnu-ld           assume the C compiler uses GNU ld [default=no]"
  23. # Find the correct PATH separator.  Usually this is `:', but
  24. # DJGPP uses `;' like DOS.
  25. if test "X${PATH_SEPARATOR+set}" != Xset; then
  26.   UNAME=${UNAME-`uname 2>/dev/null`}
  27.   case X$UNAME in
  28.     *-DOS) lt_cv_sys_path_separator=';' ;;
  29.     *)     lt_cv_sys_path_separator=':' ;;
  30.   esac
  31.   PATH_SEPARATOR=$lt_cv_sys_path_separator
  32. fi
  33. # Check that we are running under the correct shell.
  34. SHELL=${CONFIG_SHELL-/bin/sh}
  35. case X$ECHO in
  36. X*--fallback-echo)
  37.   # Remove one level of quotation (which was required for Make).
  38.   ECHO=`echo "$ECHO" | sed 's,\\$\$0,'$0','`
  39.   ;;
  40. esac
  41. echo=${ECHO-echo}
  42. if test "X$1" = X--no-reexec; then
  43.   # Discard the --no-reexec flag, and continue.
  44.   shift
  45. elif test "X$1" = X--fallback-echo; then
  46.   # Avoid inline document here, it may be left over
  47.   :
  48. elif test "X`($echo 't') 2>/dev/null`" = 'Xt'; then
  49.   # Yippee, $echo works!
  50.   :
  51. else
  52.   # Restart under the correct shell.
  53.   exec $SHELL "$0" --no-reexec ${1+"$@"}
  54. fi
  55. if test "X$1" = X--fallback-echo; then
  56.   # used as fallback echo
  57.   shift
  58.   cat <<EOF
  59. EOF
  60.   exit 0
  61. fi
  62. # The HP-UX ksh and POSIX shell print the target directory to stdout
  63. # if CDPATH is set.
  64. if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
  65. if test -z "$ECHO"; then
  66. if test "X${echo_test_string+set}" != Xset; then
  67. # find a string as large as possible, as long as the shell can cope with it
  68.   for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do
  69.     # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
  70.     if (echo_test_string="`eval $cmd`") 2>/dev/null &&
  71.        echo_test_string="`eval $cmd`" &&
  72.        (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
  73.     then
  74.       break
  75.     fi
  76.   done
  77. fi
  78. if test "X`($echo 't') 2>/dev/null`" = 'Xt' &&
  79.    echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
  80.    test "X$echo_testing_string" = "X$echo_test_string"; then
  81.   :
  82. else
  83.   # The Solaris, AIX, and Digital Unix default echo programs unquote
  84.   # backslashes.  This makes it impossible to quote backslashes using
  85.   #   echo "$something" | sed 's/\/\\/g'
  86.   #
  87.   # So, first we look for a working echo in the user's PATH.
  88.   IFS="${IFS=  }"; save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  89.   for dir in $PATH /usr/ucb; do
  90.     if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
  91.        test "X`($dir/echo 't') 2>/dev/null`" = 'Xt' &&
  92.        echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
  93.        test "X$echo_testing_string" = "X$echo_test_string"; then
  94.       echo="$dir/echo"
  95.       break
  96.     fi
  97.   done
  98.   IFS="$save_ifs"
  99.   if test "X$echo" = Xecho; then
  100.     # We didn't find a better echo, so look for alternatives.
  101.     if test "X`(print -r 't') 2>/dev/null`" = 'Xt' &&
  102.        echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
  103.        test "X$echo_testing_string" = "X$echo_test_string"; then
  104.       # This shell has a builtin print -r that does the trick.
  105.       echo='print -r'
  106.     elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
  107.  test "X$CONFIG_SHELL" != X/bin/ksh; then
  108.       # If we have ksh, try running configure again with it.
  109.       ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
  110.       export ORIGINAL_CONFIG_SHELL
  111.       CONFIG_SHELL=/bin/ksh
  112.       export CONFIG_SHELL
  113.       exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"}
  114.     else
  115.       # Try using printf.
  116.       echo='printf %sn'
  117.       if test "X`($echo 't') 2>/dev/null`" = 'Xt' &&
  118.  echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
  119.  test "X$echo_testing_string" = "X$echo_test_string"; then
  120. # Cool, printf works
  121. :
  122.       elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo 't') 2>/dev/null` &&
  123.    test "X$echo_testing_string" = 'Xt' &&
  124.    echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
  125.    test "X$echo_testing_string" = "X$echo_test_string"; then
  126. CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
  127. export CONFIG_SHELL
  128. SHELL="$CONFIG_SHELL"
  129. export SHELL
  130. echo="$CONFIG_SHELL $0 --fallback-echo"
  131.       elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo 't') 2>/dev/null` &&
  132.    test "X$echo_testing_string" = 'Xt' &&
  133.    echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
  134.    test "X$echo_testing_string" = "X$echo_test_string"; then
  135. echo="$CONFIG_SHELL $0 --fallback-echo"
  136.       else
  137. # maybe with a smaller string...
  138. prev=:
  139. for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do
  140.   if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
  141.   then
  142.     break
  143.   fi
  144.   prev="$cmd"
  145. done
  146. if test "$prev" != 'sed 50q "$0"'; then
  147.   echo_test_string=`eval $prev`
  148.   export echo_test_string
  149.   exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"}
  150. else
  151.   # Oops.  We lost completely, so just stick with echo.
  152.   echo=echo
  153. fi
  154.       fi
  155.     fi
  156.   fi
  157. fi
  158. fi
  159. # Copy echo and quote the copy suitably for passing to libtool from
  160. # the Makefile, instead of quoting the original, which is used later.
  161. ECHO=$echo
  162. if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then
  163.    ECHO="$CONFIG_SHELL \$$0 --fallback-echo"
  164. fi
  165. ac_help="$ac_help
  166.   --disable-libtool-lock  avoid locking (might break parallel builds)"
  167. ac_help="$ac_help
  168.   --with-pic              try to use only PIC/non-PIC objects [default=use both]"
  169. ac_help="$ac_help
  170.   --enable-release   set the compiler flags to -O6"
  171. ac_help="$ac_help
  172.   --enable-debug-store Warn the user if a plugin has too many CVE/BID/XRefs"
  173. ac_help="$ac_help
  174.   --enable-bpf-sharing share one BPF among processes (see README.BPF)"
  175. ac_help="$ac_help
  176.   --enable-debug-ssl   makes OpenSSL produce verbose output"
  177. ac_help="$ac_help
  178.   --enable-nessuspcap   use the libpcap that comes with this package"
  179. ac_help="$ac_help
  180.   --enable-debug   set the compiler flags to -g"
  181. ac_help="$ac_help
  182.  --enable-cipher   crypts the client - server communication"
  183. ac_help="$ac_help
  184.   --with-ssl=[DIR]        enable SSL support using libraries in DIR"
  185. ac_help="$ac_help
  186.   --with-egd=/path   specifies the path to the EGD socket"
  187. ac_help="$ac_help
  188.   --enable-getoptlong   force using/disbling the internal GNU getopt package"
  189. ac_help="$ac_help
  190.   --enable-ptmx   force using/disabling the /dev/ptmx multiplexer"
  191. ac_help="$ac_help
  192.   --enable-openpty   if present, use/disable openpty for creating ptys"
  193. # Initialize some variables set by options.
  194. # The variables have the same names as the options, with
  195. # dashes changed to underlines.
  196. build=NONE
  197. cache_file=./config.cache
  198. exec_prefix=NONE
  199. host=NONE
  200. no_create=
  201. nonopt=NONE
  202. no_recursion=
  203. prefix=NONE
  204. program_prefix=NONE
  205. program_suffix=NONE
  206. program_transform_name=s,x,x,
  207. silent=
  208. site=
  209. srcdir=
  210. target=NONE
  211. verbose=
  212. x_includes=NONE
  213. x_libraries=NONE
  214. bindir='${exec_prefix}/bin'
  215. sbindir='${exec_prefix}/sbin'
  216. libexecdir='${exec_prefix}/libexec'
  217. datadir='${prefix}/share'
  218. sysconfdir='${prefix}/etc'
  219. sharedstatedir='${prefix}/com'
  220. localstatedir='${prefix}/var'
  221. libdir='${exec_prefix}/lib'
  222. includedir='${prefix}/include'
  223. oldincludedir='/usr/include'
  224. infodir='${prefix}/info'
  225. mandir='${prefix}/man'
  226. # Initialize some other variables.
  227. subdirs=
  228. MFLAGS= MAKEFLAGS=
  229. SHELL=${CONFIG_SHELL-/bin/sh}
  230. # Maximum number of lines to put in a shell here document.
  231. ac_max_here_lines=12
  232. ac_prev=
  233. for ac_option
  234. do
  235.   # If the previous option needs an argument, assign it.
  236.   if test -n "$ac_prev"; then
  237.     eval "$ac_prev=$ac_option"
  238.     ac_prev=
  239.     continue
  240.   fi
  241.   case "$ac_option" in
  242.   -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  243.   *) ac_optarg= ;;
  244.   esac
  245.   # Accept the important Cygnus configure options, so we can diagnose typos.
  246.   case "$ac_option" in
  247.   -bindir | --bindir | --bindi | --bind | --bin | --bi)
  248.     ac_prev=bindir ;;
  249.   -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
  250.     bindir="$ac_optarg" ;;
  251.   -build | --build | --buil | --bui | --bu)
  252.     ac_prev=build ;;
  253.   -build=* | --build=* | --buil=* | --bui=* | --bu=*)
  254.     build="$ac_optarg" ;;
  255.   -cache-file | --cache-file | --cache-fil | --cache-fi 
  256.   | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  257.     ac_prev=cache_file ;;
  258.   -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* 
  259.   | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  260.     cache_file="$ac_optarg" ;;
  261.   -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
  262.     ac_prev=datadir ;;
  263.   -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* 
  264.   | --da=*)
  265.     datadir="$ac_optarg" ;;
  266.   -disable-* | --disable-*)
  267.     ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
  268.     # Reject names that are not valid shell variable names.
  269.     if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
  270.       { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  271.     fi
  272.     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  273.     eval "enable_${ac_feature}=no" ;;
  274.   -enable-* | --enable-*)
  275.     ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
  276.     # Reject names that are not valid shell variable names.
  277.     if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
  278.       { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
  279.     fi
  280.     ac_feature=`echo $ac_feature| sed 's/-/_/g'`
  281.     case "$ac_option" in
  282.       *=*) ;;
  283.       *) ac_optarg=yes ;;
  284.     esac
  285.     eval "enable_${ac_feature}='$ac_optarg'" ;;
  286.   -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi 
  287.   | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- 
  288.   | --exec | --exe | --ex)
  289.     ac_prev=exec_prefix ;;
  290.   -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* 
  291.   | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* 
  292.   | --exec=* | --exe=* | --ex=*)
  293.     exec_prefix="$ac_optarg" ;;
  294.   -gas | --gas | --ga | --g)
  295.     # Obsolete; use --with-gas.
  296.     with_gas=yes ;;
  297.   -help | --help | --hel | --he)
  298.     # Omit some internal or obsolete options to make the list less imposing.
  299.     # This message is too long to be a string in the A/UX 3.1 sh.
  300.     cat << EOF
  301. Usage: configure [options] [host]
  302. Options: [defaults in brackets after descriptions]
  303. Configuration:
  304.   --cache-file=FILE       cache test results in FILE
  305.   --help                  print this message
  306.   --no-create             do not create output files
  307.   --quiet, --silent       do not print `checking...' messages
  308.   --version               print the version of autoconf that created configure
  309. Directory and file names:
  310.   --prefix=PREFIX         install architecture-independent files in PREFIX
  311.                           [$ac_default_prefix]
  312.   --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
  313.                           [same as prefix]
  314.   --bindir=DIR            user executables in DIR [EPREFIX/bin]
  315.   --sbindir=DIR           system admin executables in DIR [EPREFIX/sbin]
  316.   --libexecdir=DIR        program executables in DIR [EPREFIX/libexec]
  317.   --datadir=DIR           read-only architecture-independent data in DIR
  318.                           [PREFIX/share]
  319.   --sysconfdir=DIR        read-only single-machine data in DIR [PREFIX/etc]
  320.   --sharedstatedir=DIR    modifiable architecture-independent data in DIR
  321.                           [PREFIX/com]
  322.   --localstatedir=DIR     modifiable single-machine data in DIR [PREFIX/var]
  323.   --libdir=DIR            object code libraries in DIR [EPREFIX/lib]
  324.   --includedir=DIR        C header files in DIR [PREFIX/include]
  325.   --oldincludedir=DIR     C header files for non-gcc in DIR [/usr/include]
  326.   --infodir=DIR           info documentation in DIR [PREFIX/info]
  327.   --mandir=DIR            man documentation in DIR [PREFIX/man]
  328.   --srcdir=DIR            find the sources in DIR [configure dir or ..]
  329.   --program-prefix=PREFIX prepend PREFIX to installed program names
  330.   --program-suffix=SUFFIX append SUFFIX to installed program names
  331.   --program-transform-name=PROGRAM
  332.                           run sed PROGRAM on installed program names
  333. EOF
  334.     cat << EOF
  335. Host type:
  336.   --build=BUILD           configure for building on BUILD [BUILD=HOST]
  337.   --host=HOST             configure for HOST [guessed]
  338.   --target=TARGET         configure for TARGET [TARGET=HOST]
  339. Features and packages:
  340.   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  341.   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  342.   --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  343.   --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  344.   --x-includes=DIR        X include files are in DIR
  345.   --x-libraries=DIR       X library files are in DIR
  346. EOF
  347.     if test -n "$ac_help"; then
  348.       echo "--enable and --with options recognized:$ac_help"
  349.     fi
  350.     exit 0 ;;
  351.   -host | --host | --hos | --ho)
  352.     ac_prev=host ;;
  353.   -host=* | --host=* | --hos=* | --ho=*)
  354.     host="$ac_optarg" ;;
  355.   -includedir | --includedir | --includedi | --included | --include 
  356.   | --includ | --inclu | --incl | --inc)
  357.     ac_prev=includedir ;;
  358.   -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* 
  359.   | --includ=* | --inclu=* | --incl=* | --inc=*)
  360.     includedir="$ac_optarg" ;;
  361.   -infodir | --infodir | --infodi | --infod | --info | --inf)
  362.     ac_prev=infodir ;;
  363.   -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
  364.     infodir="$ac_optarg" ;;
  365.   -libdir | --libdir | --libdi | --libd)
  366.     ac_prev=libdir ;;
  367.   -libdir=* | --libdir=* | --libdi=* | --libd=*)
  368.     libdir="$ac_optarg" ;;
  369.   -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec 
  370.   | --libexe | --libex | --libe)
  371.     ac_prev=libexecdir ;;
  372.   -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* 
  373.   | --libexe=* | --libex=* | --libe=*)
  374.     libexecdir="$ac_optarg" ;;
  375.   -localstatedir | --localstatedir | --localstatedi | --localstated 
  376.   | --localstate | --localstat | --localsta | --localst 
  377.   | --locals | --local | --loca | --loc | --lo)
  378.     ac_prev=localstatedir ;;
  379.   -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* 
  380.   | --localstate=* | --localstat=* | --localsta=* | --localst=* 
  381.   | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
  382.     localstatedir="$ac_optarg" ;;
  383.   -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
  384.     ac_prev=mandir ;;
  385.   -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
  386.     mandir="$ac_optarg" ;;
  387.   -nfp | --nfp | --nf)
  388.     # Obsolete; use --without-fp.
  389.     with_fp=no ;;
  390.   -no-create | --no-create | --no-creat | --no-crea | --no-cre 
  391.   | --no-cr | --no-c)
  392.     no_create=yes ;;
  393.   -no-recursion | --no-recursion | --no-recursio | --no-recursi 
  394.   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
  395.     no_recursion=yes ;;
  396.   -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded 
  397.   | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc 
  398.   | --oldin | --oldi | --old | --ol | --o)
  399.     ac_prev=oldincludedir ;;
  400.   -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* 
  401.   | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* 
  402.   | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
  403.     oldincludedir="$ac_optarg" ;;
  404.   -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  405.     ac_prev=prefix ;;
  406.   -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  407.     prefix="$ac_optarg" ;;
  408.   -program-prefix | --program-prefix | --program-prefi | --program-pref 
  409.   | --program-pre | --program-pr | --program-p)
  410.     ac_prev=program_prefix ;;
  411.   -program-prefix=* | --program-prefix=* | --program-prefi=* 
  412.   | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  413.     program_prefix="$ac_optarg" ;;
  414.   -program-suffix | --program-suffix | --program-suffi | --program-suff 
  415.   | --program-suf | --program-su | --program-s)
  416.     ac_prev=program_suffix ;;
  417.   -program-suffix=* | --program-suffix=* | --program-suffi=* 
  418.   | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  419.     program_suffix="$ac_optarg" ;;
  420.   -program-transform-name | --program-transform-name 
  421.   | --program-transform-nam | --program-transform-na 
  422.   | --program-transform-n | --program-transform- 
  423.   | --program-transform | --program-transfor 
  424.   | --program-transfo | --program-transf 
  425.   | --program-trans | --program-tran 
  426.   | --progr-tra | --program-tr | --program-t)
  427.     ac_prev=program_transform_name ;;
  428.   -program-transform-name=* | --program-transform-name=* 
  429.   | --program-transform-nam=* | --program-transform-na=* 
  430.   | --program-transform-n=* | --program-transform-=* 
  431.   | --program-transform=* | --program-transfor=* 
  432.   | --program-transfo=* | --program-transf=* 
  433.   | --program-trans=* | --program-tran=* 
  434.   | --progr-tra=* | --program-tr=* | --program-t=*)
  435.     program_transform_name="$ac_optarg" ;;
  436.   -q | -quiet | --quiet | --quie | --qui | --qu | --q 
  437.   | -silent | --silent | --silen | --sile | --sil)
  438.     silent=yes ;;
  439.   -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
  440.     ac_prev=sbindir ;;
  441.   -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* 
  442.   | --sbi=* | --sb=*)
  443.     sbindir="$ac_optarg" ;;
  444.   -sharedstatedir | --sharedstatedir | --sharedstatedi 
  445.   | --sharedstated | --sharedstate | --sharedstat | --sharedsta 
  446.   | --sharedst | --shareds | --shared | --share | --shar 
  447.   | --sha | --sh)
  448.     ac_prev=sharedstatedir ;;
  449.   -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* 
  450.   | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* 
  451.   | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* 
  452.   | --sha=* | --sh=*)
  453.     sharedstatedir="$ac_optarg" ;;
  454.   -site | --site | --sit)
  455.     ac_prev=site ;;
  456.   -site=* | --site=* | --sit=*)
  457.     site="$ac_optarg" ;;
  458.   -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  459.     ac_prev=srcdir ;;
  460.   -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  461.     srcdir="$ac_optarg" ;;
  462.   -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf 
  463.   | --syscon | --sysco | --sysc | --sys | --sy)
  464.     ac_prev=sysconfdir ;;
  465.   -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* 
  466.   | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
  467.     sysconfdir="$ac_optarg" ;;
  468.   -target | --target | --targe | --targ | --tar | --ta | --t)
  469.     ac_prev=target ;;
  470.   -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  471.     target="$ac_optarg" ;;
  472.   -v | -verbose | --verbose | --verbos | --verbo | --verb)
  473.     verbose=yes ;;
  474.   -version | --version | --versio | --versi | --vers)
  475.     echo "configure generated by autoconf version 2.13"
  476.     exit 0 ;;
  477.   -with-* | --with-*)
  478.     ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
  479.     # Reject names that are not valid shell variable names.
  480.     if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
  481.       { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  482.     fi
  483.     ac_package=`echo $ac_package| sed 's/-/_/g'`
  484.     case "$ac_option" in
  485.       *=*) ;;
  486.       *) ac_optarg=yes ;;
  487.     esac
  488.     eval "with_${ac_package}='$ac_optarg'" ;;
  489.   -without-* | --without-*)
  490.     ac_package=`echo $ac_option|sed -e 's/-*without-//'`
  491.     # Reject names that are not valid shell variable names.
  492.     if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
  493.       { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
  494.     fi
  495.     ac_package=`echo $ac_package| sed 's/-/_/g'`
  496.     eval "with_${ac_package}=no" ;;
  497.   --x)
  498.     # Obsolete; use --with-x.
  499.     with_x=yes ;;
  500.   -x-includes | --x-includes | --x-include | --x-includ | --x-inclu 
  501.   | --x-incl | --x-inc | --x-in | --x-i)
  502.     ac_prev=x_includes ;;
  503.   -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* 
  504.   | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  505.     x_includes="$ac_optarg" ;;
  506.   -x-libraries | --x-libraries | --x-librarie | --x-librari 
  507.   | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  508.     ac_prev=x_libraries ;;
  509.   -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* 
  510.   | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  511.     x_libraries="$ac_optarg" ;;
  512.   -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
  513.     ;;
  514.   *)
  515.     if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
  516.       echo "configure: warning: $ac_option: invalid host type" 1>&2
  517.     fi
  518.     if test "x$nonopt" != xNONE; then
  519.       { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
  520.     fi
  521.     nonopt="$ac_option"
  522.     ;;
  523.   esac
  524. done
  525. if test -n "$ac_prev"; then
  526.   { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
  527. fi
  528. trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
  529. # File descriptor usage:
  530. # 0 standard input
  531. # 1 file creation
  532. # 2 errors and warnings
  533. # 3 some systems may open it to /dev/tty
  534. # 4 used on the Kubota Titan
  535. # 6 checking for... messages and results
  536. # 5 compiler messages saved in config.log
  537. if test "$silent" = yes; then
  538.   exec 6>/dev/null
  539. else
  540.   exec 6>&1
  541. fi
  542. exec 5>./config.log
  543. echo "
  544. This file contains any messages produced by compilers while
  545. running configure, to aid debugging if configure makes a mistake.
  546. " 1>&5
  547. # Strip out --no-create and --no-recursion so they do not pile up.
  548. # Also quote any args containing shell metacharacters.
  549. ac_configure_args=
  550. for ac_arg
  551. do
  552.   case "$ac_arg" in
  553.   -no-create | --no-create | --no-creat | --no-crea | --no-cre 
  554.   | --no-cr | --no-c) ;;
  555.   -no-recursion | --no-recursion | --no-recursio | --no-recursi 
  556.   | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
  557.   *" "*|*" "*|*[[]~#$^&*(){}\|;<>?]*)
  558.   ac_configure_args="$ac_configure_args '$ac_arg'" ;;
  559.   *) ac_configure_args="$ac_configure_args $ac_arg" ;;
  560.   esac
  561. done
  562. # NLS nuisances.
  563. # Only set these to C if already set.  These must not be set unconditionally
  564. # because not all systems understand e.g. LANG=C (notably SCO).
  565. # Fixing LC_MESSAGES prevents Solaris sh from translating var values in `set'!
  566. # Non-C LC_CTYPE values break the ctype check.
  567. if test "${LANG+set}"   = set; then LANG=C;   export LANG;   fi
  568. if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
  569. if test "${LC_MESSAGES+set}" = set; then LC_MESSAGES=C; export LC_MESSAGES; fi
  570. if test "${LC_CTYPE+set}"    = set; then LC_CTYPE=C;    export LC_CTYPE;    fi
  571. # confdefs.h avoids OS command line length limits that DEFS can exceed.
  572. rm -rf conftest* confdefs.h
  573. # AIX cpp loses on an empty file, so make sure it contains at least a newline.
  574. echo > confdefs.h
  575. # A filename unique to this package, relative to the directory that
  576. # configure is in, which we can look for to find out if srcdir is correct.
  577. ac_unique_file=.root-dir
  578. # Find the source files, if location was not specified.
  579. if test -z "$srcdir"; then
  580.   ac_srcdir_defaulted=yes
  581.   # Try the directory containing this script, then its parent.
  582.   ac_prog=$0
  583.   ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
  584.   test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
  585.   srcdir=$ac_confdir
  586.   if test ! -r $srcdir/$ac_unique_file; then
  587.     srcdir=..
  588.   fi
  589. else
  590.   ac_srcdir_defaulted=no
  591. fi
  592. if test ! -r $srcdir/$ac_unique_file; then
  593.   if test "$ac_srcdir_defaulted" = yes; then
  594.     { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
  595.   else
  596.     { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
  597.   fi
  598. fi
  599. srcdir=`echo "${srcdir}" | sed 's%([^/])/*$%1%'`
  600. # Prefer explicitly selected file to automatically selected ones.
  601. if test -z "$CONFIG_SITE"; then
  602.   if test "x$prefix" != xNONE; then
  603.     CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
  604.   else
  605.     CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
  606.   fi
  607. fi
  608. for ac_site_file in $CONFIG_SITE; do
  609.   if test -r "$ac_site_file"; then
  610.     echo "loading site script $ac_site_file"
  611.     . "$ac_site_file"
  612.   fi
  613. done
  614. if test -r "$cache_file"; then
  615.   echo "loading cache $cache_file"
  616.   . $cache_file
  617. else
  618.   echo "creating cache $cache_file"
  619.   > $cache_file
  620. fi
  621. ac_ext=c
  622. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  623. ac_cpp='$CPP $CPPFLAGS'
  624. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  625. ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  626. cross_compiling=$ac_cv_prog_cc_cross
  627. ac_exeext=
  628. ac_objext=o
  629. if (echo "testingc"; echo 1,2,3) | grep c >/dev/null; then
  630.   # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
  631.   if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
  632.     ac_n= ac_c='
  633. ' ac_t=' '
  634.   else
  635.     ac_n=-n ac_c= ac_t=
  636.   fi
  637. else
  638.   ac_n= ac_c='c' ac_t=
  639. fi
  640. # From configure.in Revision: 1.141.2.3 
  641. PWDD=`pwd`
  642. VERSION=`cat VERSION`
  643. save_IFS="${IFS}"
  644. IFS=.
  645. read NESSUS_MAJOR NESSUS_MINOR NESSUS_PATCH NESSUS_RC <VERSION
  646. IFS="${save_IFS}"
  647. NESSUS_DATE="`date '+%b %d, %Y'`"
  648. expr 0 + $NESSUS_MAJOR + $NESSUS_MINOR + $NESSUS_PATCH + 0 >/dev/null ||
  649. { echo "configure: error:  *** Panic: Corrupt version file" 1>&2; exit 1; }
  650. version=$NESSUS_MAJOR.$NESSUS_MINOR.$NESSUS_PATCH
  651. NESSUS_SUPER=`expr $NESSUS_MAJOR + $NESSUS_MINOR`
  652. ac_ext=c
  653. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  654. ac_cpp='$CPP $CPPFLAGS'
  655. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  656. ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  657. cross_compiling=$ac_cv_prog_cc_cross
  658. use_cipher=yes
  659. GCC_NO_PIPE=no
  660. # Check whether --enable-gccpipe or --disable-gccpipe was given.
  661. if test "${enable_gccpipe+set}" = set; then
  662.   enableval="$enable_gccpipe"
  663.   case  $enable_gccpipe in
  664.  n*|N*) GCC_NO_PIPE=yes ;;
  665.  y*|Y*) unset GCC_NO_PIPE ;;
  666. esac
  667. fi
  668. test x$GCC_NO_PIPE = xno && unset GCC_NO_PIPE
  669. # Extract the first word of "gcc", so it can be a program name with args.
  670. set dummy gcc; ac_word=$2
  671. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  672. echo "configure:767: checking for $ac_word" >&5
  673. if eval "test "`echo '$''{'ac_cv_prog_CC'+set}'`" = set"; then
  674.   echo $ac_n "(cached) $ac_c" 1>&6
  675. else
  676.   if test -n "$CC"; then
  677.   ac_cv_prog_CC="$CC" # Let the user override the test.
  678. else
  679.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  680.   ac_dummy="$PATH"
  681.   for ac_dir in $ac_dummy; do
  682.     test -z "$ac_dir" && ac_dir=.
  683.     if test -f $ac_dir/$ac_word; then
  684.       ac_cv_prog_CC="gcc"
  685.       break
  686.     fi
  687.   done
  688.   IFS="$ac_save_ifs"
  689. fi
  690. fi
  691. CC="$ac_cv_prog_CC"
  692. if test -n "$CC"; then
  693.   echo "$ac_t""$CC" 1>&6
  694. else
  695.   echo "$ac_t""no" 1>&6
  696. fi
  697. if test -z "$CC"; then
  698.   # Extract the first word of "cc", so it can be a program name with args.
  699. set dummy cc; ac_word=$2
  700. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  701. echo "configure:797: checking for $ac_word" >&5
  702. if eval "test "`echo '$''{'ac_cv_prog_CC'+set}'`" = set"; then
  703.   echo $ac_n "(cached) $ac_c" 1>&6
  704. else
  705.   if test -n "$CC"; then
  706.   ac_cv_prog_CC="$CC" # Let the user override the test.
  707. else
  708.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  709.   ac_prog_rejected=no
  710.   ac_dummy="$PATH"
  711.   for ac_dir in $ac_dummy; do
  712.     test -z "$ac_dir" && ac_dir=.
  713.     if test -f $ac_dir/$ac_word; then
  714.       if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
  715.         ac_prog_rejected=yes
  716. continue
  717.       fi
  718.       ac_cv_prog_CC="cc"
  719.       break
  720.     fi
  721.   done
  722.   IFS="$ac_save_ifs"
  723. if test $ac_prog_rejected = yes; then
  724.   # We found a bogon in the path, so make sure we never use it.
  725.   set dummy $ac_cv_prog_CC
  726.   shift
  727.   if test $# -gt 0; then
  728.     # We chose a different compiler from the bogus one.
  729.     # However, it has the same basename, so the bogon will be chosen
  730.     # first if we set CC to just the basename; use the full file name.
  731.     shift
  732.     set dummy "$ac_dir/$ac_word" "$@"
  733.     shift
  734.     ac_cv_prog_CC="$@"
  735.   fi
  736. fi
  737. fi
  738. fi
  739. CC="$ac_cv_prog_CC"
  740. if test -n "$CC"; then
  741.   echo "$ac_t""$CC" 1>&6
  742. else
  743.   echo "$ac_t""no" 1>&6
  744. fi
  745.   if test -z "$CC"; then
  746.     case "`uname -s`" in
  747.     *win32* | *WIN32*)
  748.       # Extract the first word of "cl", so it can be a program name with args.
  749. set dummy cl; ac_word=$2
  750. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  751. echo "configure:848: checking for $ac_word" >&5
  752. if eval "test "`echo '$''{'ac_cv_prog_CC'+set}'`" = set"; then
  753.   echo $ac_n "(cached) $ac_c" 1>&6
  754. else
  755.   if test -n "$CC"; then
  756.   ac_cv_prog_CC="$CC" # Let the user override the test.
  757. else
  758.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  759.   ac_dummy="$PATH"
  760.   for ac_dir in $ac_dummy; do
  761.     test -z "$ac_dir" && ac_dir=.
  762.     if test -f $ac_dir/$ac_word; then
  763.       ac_cv_prog_CC="cl"
  764.       break
  765.     fi
  766.   done
  767.   IFS="$ac_save_ifs"
  768. fi
  769. fi
  770. CC="$ac_cv_prog_CC"
  771. if test -n "$CC"; then
  772.   echo "$ac_t""$CC" 1>&6
  773. else
  774.   echo "$ac_t""no" 1>&6
  775. fi
  776.  ;;
  777.     esac
  778.   fi
  779.   test -z "$CC" && { echo "configure: error: no acceptable cc found in $PATH" 1>&2; exit 1; }
  780. fi
  781. echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
  782. echo "configure:880: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
  783. ac_ext=c
  784. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  785. ac_cpp='$CPP $CPPFLAGS'
  786. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  787. ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  788. cross_compiling=$ac_cv_prog_cc_cross
  789. cat > conftest.$ac_ext << EOF
  790. #line 891 "configure"
  791. #include "confdefs.h"
  792. main(){return(0);}
  793. EOF
  794. if { (eval echo configure:896: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  795.   ac_cv_prog_cc_works=yes
  796.   # If we can't run a trivial program, we are probably using a cross compiler.
  797.   if (./conftest; exit) 2>/dev/null; then
  798.     ac_cv_prog_cc_cross=no
  799.   else
  800.     ac_cv_prog_cc_cross=yes
  801.   fi
  802. else
  803.   echo "configure: failed program was:" >&5
  804.   cat conftest.$ac_ext >&5
  805.   ac_cv_prog_cc_works=no
  806. fi
  807. rm -fr conftest*
  808. ac_ext=c
  809. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  810. ac_cpp='$CPP $CPPFLAGS'
  811. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  812. ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  813. cross_compiling=$ac_cv_prog_cc_cross
  814. echo "$ac_t""$ac_cv_prog_cc_works" 1>&6
  815. if test $ac_cv_prog_cc_works = no; then
  816.   { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
  817. fi
  818. echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
  819. echo "configure:922: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
  820. echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
  821. cross_compiling=$ac_cv_prog_cc_cross
  822. echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
  823. echo "configure:927: checking whether we are using GNU C" >&5
  824. if eval "test "`echo '$''{'ac_cv_prog_gcc'+set}'`" = set"; then
  825.   echo $ac_n "(cached) $ac_c" 1>&6
  826. else
  827.   cat > conftest.c <<EOF
  828. #ifdef __GNUC__
  829.   yes;
  830. #endif
  831. EOF
  832. if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:936: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
  833.   ac_cv_prog_gcc=yes
  834. else
  835.   ac_cv_prog_gcc=no
  836. fi
  837. fi
  838. echo "$ac_t""$ac_cv_prog_gcc" 1>&6
  839. if test $ac_cv_prog_gcc = yes; then
  840.   GCC=yes
  841. else
  842.   GCC=
  843. fi
  844. ac_test_CFLAGS="${CFLAGS+set}"
  845. ac_save_CFLAGS="$CFLAGS"
  846. CFLAGS=
  847. echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
  848. echo "configure:955: checking whether ${CC-cc} accepts -g" >&5
  849. if eval "test "`echo '$''{'ac_cv_prog_cc_g'+set}'`" = set"; then
  850.   echo $ac_n "(cached) $ac_c" 1>&6
  851. else
  852.   echo 'void f(){}' > conftest.c
  853. if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
  854.   ac_cv_prog_cc_g=yes
  855. else
  856.   ac_cv_prog_cc_g=no
  857. fi
  858. rm -f conftest*
  859. fi
  860. echo "$ac_t""$ac_cv_prog_cc_g" 1>&6
  861. if test "$ac_test_CFLAGS" = set; then
  862.   CFLAGS="$ac_save_CFLAGS"
  863. elif test $ac_cv_prog_cc_g = yes; then
  864.   if test "$GCC" = yes; then
  865.     CFLAGS="-g -O2"
  866.   else
  867.     CFLAGS="-g"
  868.   fi
  869. else
  870.   if test "$GCC" = yes; then
  871.     CFLAGS="-O2"
  872.   else
  873.     CFLAGS=
  874.   fi
  875. fi
  876. ac_aux_dir=
  877. for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
  878.   if test -f $ac_dir/install-sh; then
  879.     ac_aux_dir=$ac_dir
  880.     ac_install_sh="$ac_aux_dir/install-sh -c"
  881.     break
  882.   elif test -f $ac_dir/install.sh; then
  883.     ac_aux_dir=$ac_dir
  884.     ac_install_sh="$ac_aux_dir/install.sh -c"
  885.     break
  886.   fi
  887. done
  888. if test -z "$ac_aux_dir"; then
  889.   { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
  890. fi
  891. ac_config_guess=$ac_aux_dir/config.guess
  892. ac_config_sub=$ac_aux_dir/config.sub
  893. ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
  894. # Find the correct PATH separator.  Usually this is `:', but
  895. # DJGPP uses `;' like DOS.
  896. if test "X${PATH_SEPARATOR+set}" != Xset; then
  897.   UNAME=${UNAME-`uname 2>/dev/null`}
  898.   case X$UNAME in
  899.     *-DOS) lt_cv_sys_path_separator=';' ;;
  900.     *)     lt_cv_sys_path_separator=':' ;;
  901.   esac
  902.   PATH_SEPARATOR=$lt_cv_sys_path_separator
  903. fi
  904. echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
  905. echo "configure:1018: checking for Cygwin environment" >&5
  906. if eval "test "`echo '$''{'ac_cv_cygwin'+set}'`" = set"; then
  907.   echo $ac_n "(cached) $ac_c" 1>&6
  908. else
  909.   cat > conftest.$ac_ext <<EOF
  910. #line 1023 "configure"
  911. #include "confdefs.h"
  912. int main() {
  913. #ifndef __CYGWIN__
  914. #define __CYGWIN__ __CYGWIN32__
  915. #endif
  916. return __CYGWIN__;
  917. ; return 0; }
  918. EOF
  919. if { (eval echo configure:1034: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  920.   rm -rf conftest*
  921.   ac_cv_cygwin=yes
  922. else
  923.   echo "configure: failed program was:" >&5
  924.   cat conftest.$ac_ext >&5
  925.   rm -rf conftest*
  926.   ac_cv_cygwin=no
  927. fi
  928. rm -f conftest*
  929. rm -f conftest*
  930. fi
  931. echo "$ac_t""$ac_cv_cygwin" 1>&6
  932. CYGWIN=
  933. test "$ac_cv_cygwin" = yes && CYGWIN=yes
  934. echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
  935. echo "configure:1051: checking for mingw32 environment" >&5
  936. if eval "test "`echo '$''{'ac_cv_mingw32'+set}'`" = set"; then
  937.   echo $ac_n "(cached) $ac_c" 1>&6
  938. else
  939.   cat > conftest.$ac_ext <<EOF
  940. #line 1056 "configure"
  941. #include "confdefs.h"
  942. int main() {
  943. return __MINGW32__;
  944. ; return 0; }
  945. EOF
  946. if { (eval echo configure:1063: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  947.   rm -rf conftest*
  948.   ac_cv_mingw32=yes
  949. else
  950.   echo "configure: failed program was:" >&5
  951.   cat conftest.$ac_ext >&5
  952.   rm -rf conftest*
  953.   ac_cv_mingw32=no
  954. fi
  955. rm -f conftest*
  956. rm -f conftest*
  957. fi
  958. echo "$ac_t""$ac_cv_mingw32" 1>&6
  959. MINGW32=
  960. test "$ac_cv_mingw32" = yes && MINGW32=yes
  961. echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
  962. echo "configure:1080: checking how to run the C preprocessor" >&5
  963. # On Suns, sometimes $CPP names a directory.
  964. if test -n "$CPP" && test -d "$CPP"; then
  965.   CPP=
  966. fi
  967. if test -z "$CPP"; then
  968. if eval "test "`echo '$''{'ac_cv_prog_CPP'+set}'`" = set"; then
  969.   echo $ac_n "(cached) $ac_c" 1>&6
  970. else
  971.     # This must be in double quotes, not single quotes, because CPP may get
  972.   # substituted into the Makefile and "${CC-cc}" will confuse make.
  973.   CPP="${CC-cc} -E"
  974.   # On the NeXT, cc -E runs the code through the compiler's parser,
  975.   # not just through cpp.
  976.   cat > conftest.$ac_ext <<EOF
  977. #line 1095 "configure"
  978. #include "confdefs.h"
  979. #include <assert.h>
  980. Syntax Error
  981. EOF
  982. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  983. { (eval echo configure:1101: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  984. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  985. if test -z "$ac_err"; then
  986.   :
  987. else
  988.   echo "$ac_err" >&5
  989.   echo "configure: failed program was:" >&5
  990.   cat conftest.$ac_ext >&5
  991.   rm -rf conftest*
  992.   CPP="${CC-cc} -E -traditional-cpp"
  993.   cat > conftest.$ac_ext <<EOF
  994. #line 1112 "configure"
  995. #include "confdefs.h"
  996. #include <assert.h>
  997. Syntax Error
  998. EOF
  999. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1000. { (eval echo configure:1118: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  1001. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  1002. if test -z "$ac_err"; then
  1003.   :
  1004. else
  1005.   echo "$ac_err" >&5
  1006.   echo "configure: failed program was:" >&5
  1007.   cat conftest.$ac_ext >&5
  1008.   rm -rf conftest*
  1009.   CPP="${CC-cc} -nologo -E"
  1010.   cat > conftest.$ac_ext <<EOF
  1011. #line 1129 "configure"
  1012. #include "confdefs.h"
  1013. #include <assert.h>
  1014. Syntax Error
  1015. EOF
  1016. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1017. { (eval echo configure:1135: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  1018. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  1019. if test -z "$ac_err"; then
  1020.   :
  1021. else
  1022.   echo "$ac_err" >&5
  1023.   echo "configure: failed program was:" >&5
  1024.   cat conftest.$ac_ext >&5
  1025.   rm -rf conftest*
  1026.   CPP=/lib/cpp
  1027. fi
  1028. rm -f conftest*
  1029. fi
  1030. rm -f conftest*
  1031. fi
  1032. rm -f conftest*
  1033.   ac_cv_prog_CPP="$CPP"
  1034. fi
  1035.   CPP="$ac_cv_prog_CPP"
  1036. else
  1037.   ac_cv_prog_CPP="$CPP"
  1038. fi
  1039. echo "$ac_t""$CPP" 1>&6
  1040. # Check whether --enable-shared or --disable-shared was given.
  1041. if test "${enable_shared+set}" = set; then
  1042.   enableval="$enable_shared"
  1043.   p=${PACKAGE-default}
  1044. case $enableval in
  1045. yes) enable_shared=yes ;;
  1046. no) enable_shared=no ;;
  1047. *)
  1048.   enable_shared=no
  1049.   # Look at the argument we got.  We use all the common list separators.
  1050.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
  1051.   for pkg in $enableval; do
  1052.     if test "X$pkg" = "X$p"; then
  1053.       enable_shared=yes
  1054.     fi
  1055.   done
  1056.   IFS="$ac_save_ifs"
  1057.   ;;
  1058. esac
  1059. else
  1060.   enable_shared=yes
  1061. fi
  1062. # Check whether --enable-static or --disable-static was given.
  1063. if test "${enable_static+set}" = set; then
  1064.   enableval="$enable_static"
  1065.   p=${PACKAGE-default}
  1066. case $enableval in
  1067. yes) enable_static=yes ;;
  1068. no) enable_static=no ;;
  1069. *)
  1070.   enable_static=no
  1071.   # Look at the argument we got.  We use all the common list separators.
  1072.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
  1073.   for pkg in $enableval; do
  1074.     if test "X$pkg" = "X$p"; then
  1075.       enable_static=yes
  1076.     fi
  1077.   done
  1078.   IFS="$ac_save_ifs"
  1079.   ;;
  1080. esac
  1081. else
  1082.   enable_static=yes
  1083. fi
  1084. # Check whether --enable-fast-install or --disable-fast-install was given.
  1085. if test "${enable_fast_install+set}" = set; then
  1086.   enableval="$enable_fast_install"
  1087.   p=${PACKAGE-default}
  1088. case $enableval in
  1089. yes) enable_fast_install=yes ;;
  1090. no) enable_fast_install=no ;;
  1091. *)
  1092.   enable_fast_install=no
  1093.   # Look at the argument we got.  We use all the common list separators.
  1094.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
  1095.   for pkg in $enableval; do
  1096.     if test "X$pkg" = "X$p"; then
  1097.       enable_fast_install=yes
  1098.     fi
  1099.   done
  1100.   IFS="$ac_save_ifs"
  1101.   ;;
  1102. esac
  1103. else
  1104.   enable_fast_install=yes
  1105. fi
  1106. # Make sure we can run config.sub.
  1107. if ${CONFIG_SHELL-/bin/sh} $ac_config_sub sun4 >/dev/null 2>&1; then :
  1108. else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
  1109. fi
  1110. echo $ac_n "checking host system type""... $ac_c" 1>&6
  1111. echo "configure:1235: checking host system type" >&5
  1112. host_alias=$host
  1113. case "$host_alias" in
  1114. NONE)
  1115.   case $nonopt in
  1116.   NONE)
  1117.     if host_alias=`${CONFIG_SHELL-/bin/sh} $ac_config_guess`; then :
  1118.     else { echo "configure: error: can not guess host type; you must specify one" 1>&2; exit 1; }
  1119.     fi ;;
  1120.   *) host_alias=$nonopt ;;
  1121.   esac ;;
  1122. esac
  1123. host=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $host_alias`
  1124. host_cpu=`echo $host | sed 's/^([^-]*)-([^-]*)-(.*)$/1/'`
  1125. host_vendor=`echo $host | sed 's/^([^-]*)-([^-]*)-(.*)$/2/'`
  1126. host_os=`echo $host | sed 's/^([^-]*)-([^-]*)-(.*)$/3/'`
  1127. echo "$ac_t""$host" 1>&6
  1128. echo $ac_n "checking build system type""... $ac_c" 1>&6
  1129. echo "configure:1256: checking build system type" >&5
  1130. build_alias=$build
  1131. case "$build_alias" in
  1132. NONE)
  1133.   case $nonopt in
  1134.   NONE) build_alias=$host_alias ;;
  1135.   *) build_alias=$nonopt ;;
  1136.   esac ;;
  1137. esac
  1138. build=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $build_alias`
  1139. build_cpu=`echo $build | sed 's/^([^-]*)-([^-]*)-(.*)$/1/'`
  1140. build_vendor=`echo $build | sed 's/^([^-]*)-([^-]*)-(.*)$/2/'`
  1141. build_os=`echo $build | sed 's/^([^-]*)-([^-]*)-(.*)$/3/'`
  1142. echo "$ac_t""$build" 1>&6
  1143. # Check whether --with-gnu-ld or --without-gnu-ld was given.
  1144. if test "${with_gnu_ld+set}" = set; then
  1145.   withval="$with_gnu_ld"
  1146.   test "$withval" = no || with_gnu_ld=yes
  1147. else
  1148.   with_gnu_ld=no
  1149. fi
  1150. ac_prog=ld
  1151. if test "$GCC" = yes; then
  1152.   # Check if gcc -print-prog-name=ld gives a path.
  1153.   echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6
  1154. echo "configure:1285: checking for ld used by GCC" >&5
  1155.   case $host in
  1156.   *-*-mingw*)
  1157.     # gcc leaves a trailing carriage return which upsets mingw
  1158.     ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '15'` ;;
  1159.   *)
  1160.     ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
  1161.   esac
  1162.   case $ac_prog in
  1163.     # Accept absolute paths.
  1164.     [\/]* | [A-Za-z]:[\/]*)
  1165.       re_direlt='/[^/][^/]*/../'
  1166.       # Canonicalize the path of ld
  1167.       ac_prog=`echo $ac_prog| sed 's%\\%/%g'`
  1168.       while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
  1169. ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
  1170.       done
  1171.       test -z "$LD" && LD="$ac_prog"
  1172.       ;;
  1173.   "")
  1174.     # If it fails, then pretend we aren't using GCC.
  1175.     ac_prog=ld
  1176.     ;;
  1177.   *)
  1178.     # If it is relative, then search for the first ld in PATH.
  1179.     with_gnu_ld=unknown
  1180.     ;;
  1181.   esac
  1182. elif test "$with_gnu_ld" = yes; then
  1183.   echo $ac_n "checking for GNU ld""... $ac_c" 1>&6
  1184. echo "configure:1315: checking for GNU ld" >&5
  1185. else
  1186.   echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6
  1187. echo "configure:1318: checking for non-GNU ld" >&5
  1188. fi
  1189. if eval "test "`echo '$''{'lt_cv_path_LD'+set}'`" = set"; then
  1190.   echo $ac_n "(cached) $ac_c" 1>&6
  1191. else
  1192.   if test -z "$LD"; then
  1193.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  1194.   for ac_dir in $PATH; do
  1195.     test -z "$ac_dir" && ac_dir=.
  1196.     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
  1197.       lt_cv_path_LD="$ac_dir/$ac_prog"
  1198.       # Check to see if the program is GNU ld.  I'd rather use --version,
  1199.       # but apparently some GNU ld's only accept -v.
  1200.       # Break only if it was the GNU/non-GNU ld that we prefer.
  1201.       if "$lt_cv_path_LD" -v 2>&1 < /dev/null | egrep '(GNU|with BFD)' > /dev/null; then
  1202. test "$with_gnu_ld" != no && break
  1203.       else
  1204. test "$with_gnu_ld" != yes && break
  1205.       fi
  1206.     fi
  1207.   done
  1208.   IFS="$ac_save_ifs"
  1209. else
  1210.   lt_cv_path_LD="$LD" # Let the user override the test with a path.
  1211. fi
  1212. fi
  1213. LD="$lt_cv_path_LD"
  1214. if test -n "$LD"; then
  1215.   echo "$ac_t""$LD" 1>&6
  1216. else
  1217.   echo "$ac_t""no" 1>&6
  1218. fi
  1219. test -z "$LD" && { echo "configure: error: no acceptable ld found in $PATH" 1>&2; exit 1; }
  1220. echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6
  1221. echo "configure:1353: checking if the linker ($LD) is GNU ld" >&5
  1222. if eval "test "`echo '$''{'lt_cv_prog_gnu_ld'+set}'`" = set"; then
  1223.   echo $ac_n "(cached) $ac_c" 1>&6
  1224. else
  1225.   # I'd rather use --version here, but apparently some GNU ld's only accept -v.
  1226. if $LD -v 2>&1 </dev/null | egrep '(GNU|with BFD)' 1>&5; then
  1227.   lt_cv_prog_gnu_ld=yes
  1228. else
  1229.   lt_cv_prog_gnu_ld=no
  1230. fi
  1231. fi
  1232. echo "$ac_t""$lt_cv_prog_gnu_ld" 1>&6
  1233. with_gnu_ld=$lt_cv_prog_gnu_ld
  1234. echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6
  1235. echo "configure:1370: checking for $LD option to reload object files" >&5
  1236. if eval "test "`echo '$''{'lt_cv_ld_reload_flag'+set}'`" = set"; then
  1237.   echo $ac_n "(cached) $ac_c" 1>&6
  1238. else
  1239.   lt_cv_ld_reload_flag='-r'
  1240. fi
  1241. echo "$ac_t""$lt_cv_ld_reload_flag" 1>&6
  1242. reload_flag=$lt_cv_ld_reload_flag
  1243. test -n "$reload_flag" && reload_flag=" $reload_flag"
  1244. echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6
  1245. echo "configure:1382: checking for BSD-compatible nm" >&5
  1246. if eval "test "`echo '$''{'lt_cv_path_NM'+set}'`" = set"; then
  1247.   echo $ac_n "(cached) $ac_c" 1>&6
  1248. else
  1249.   if test -n "$NM"; then
  1250.   # Let the user override the test.
  1251.   lt_cv_path_NM="$NM"
  1252. else
  1253.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  1254.   for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
  1255.     test -z "$ac_dir" && ac_dir=.
  1256.     tmp_nm=$ac_dir/${ac_tool_prefix}nm
  1257.     if test -f $tmp_nm || test -f $tmp_nm$ac_exeext ; then
  1258.       # Check to see if the nm accepts a BSD-compat flag.
  1259.       # Adding the `sed 1q' prevents false positives on HP-UX, which says:
  1260.       #   nm: unknown option "B" ignored
  1261.       # Tru64's nm complains that /dev/null is an invalid object file
  1262.       if ($tmp_nm -B /dev/null 2>&1 | sed '1q'; exit 0) | egrep '(/dev/null|Invalid file or object type)' >/dev/null; then
  1263. lt_cv_path_NM="$tmp_nm -B"
  1264. break
  1265.       elif ($tmp_nm -p /dev/null 2>&1 | sed '1q'; exit 0) | egrep /dev/null >/dev/null; then
  1266. lt_cv_path_NM="$tmp_nm -p"
  1267. break
  1268.       else
  1269. lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
  1270. continue # so that we can try to find one that supports BSD flags
  1271.       fi
  1272.     fi
  1273.   done
  1274.   IFS="$ac_save_ifs"
  1275.   test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
  1276. fi
  1277. fi
  1278. NM="$lt_cv_path_NM"
  1279. echo "$ac_t""$NM" 1>&6
  1280. echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6
  1281. echo "configure:1420: checking whether ln -s works" >&5
  1282. if eval "test "`echo '$''{'ac_cv_prog_LN_S'+set}'`" = set"; then
  1283.   echo $ac_n "(cached) $ac_c" 1>&6
  1284. else
  1285.   rm -f conftestdata
  1286. if ln -s X conftestdata 2>/dev/null
  1287. then
  1288.   rm -f conftestdata
  1289.   ac_cv_prog_LN_S="ln -s"
  1290. else
  1291.   ac_cv_prog_LN_S=ln
  1292. fi
  1293. fi
  1294. LN_S="$ac_cv_prog_LN_S"
  1295. if test "$ac_cv_prog_LN_S" = "ln -s"; then
  1296.   echo "$ac_t""yes" 1>&6
  1297. else
  1298.   echo "$ac_t""no" 1>&6
  1299. fi
  1300. echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6
  1301. echo "configure:1441: checking how to recognise dependant libraries" >&5
  1302. if eval "test "`echo '$''{'lt_cv_deplibs_check_method'+set}'`" = set"; then
  1303.   echo $ac_n "(cached) $ac_c" 1>&6
  1304. else
  1305.   lt_cv_file_magic_cmd='$MAGIC_CMD'
  1306. lt_cv_file_magic_test_file=
  1307. lt_cv_deplibs_check_method='unknown'
  1308. # Need to set the preceding variable on all platforms that support
  1309. # interlibrary dependencies.
  1310. # 'none' -- dependencies not supported.
  1311. # `unknown' -- same as none, but documents that we really don't know.
  1312. # 'pass_all' -- all dependencies passed with no checks.
  1313. # 'test_compile' -- check by making test program.
  1314. # 'file_magic [[regex]]' -- check by looking for files in library path
  1315. # which responds to the $file_magic_cmd with a given egrep regex.
  1316. # If you have `file' or equivalent on your system and you're not sure
  1317. # whether `pass_all' will *always* work, you probably want this one.
  1318. case $host_os in
  1319. aix4* | aix5*)
  1320.   lt_cv_deplibs_check_method=pass_all
  1321.   ;;
  1322. beos*)
  1323.   lt_cv_deplibs_check_method=pass_all
  1324.   ;;
  1325. bsdi4*)
  1326.   lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)'
  1327.   lt_cv_file_magic_cmd='/usr/bin/file -L'
  1328.   lt_cv_file_magic_test_file=/shlib/libc.so
  1329.   ;;
  1330. cygwin* | mingw* | pw32*)
  1331.   lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
  1332.   lt_cv_file_magic_cmd='$OBJDUMP -f'
  1333.   ;;
  1334. darwin* | rhapsody*)
  1335.   lt_cv_deplibs_check_method='file_magic Mach-O dynamically linked shared library'
  1336.   lt_cv_file_magic_cmd='/usr/bin/file -L'
  1337.   case "$host_os" in
  1338.   rhapsody* | darwin1.[012])
  1339.     lt_cv_file_magic_test_file=`echo /System/Library/Frameworks/System.framework/Versions/*/System | head -1`
  1340.     ;;
  1341.   *) # Darwin 1.3 on
  1342.     lt_cv_file_magic_test_file='/usr/lib/libSystem.dylib'
  1343.     ;;
  1344.   esac
  1345.   ;;
  1346. freebsd*)
  1347.   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
  1348.     case $host_cpu in
  1349.     i*86 )
  1350.       # Not sure whether the presence of OpenBSD here was a mistake.
  1351.       # Let's accept both of them until this is cleared up.
  1352.       lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[3-9]86 (compact )?demand paged shared library'
  1353.       lt_cv_file_magic_cmd=/usr/bin/file
  1354.       lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
  1355.       ;;
  1356.     esac
  1357.   else
  1358.     lt_cv_deplibs_check_method=pass_all
  1359.   fi
  1360.   ;;
  1361. gnu*)
  1362.   lt_cv_deplibs_check_method=pass_all
  1363.   ;;
  1364. hpux10.20*|hpux11*)
  1365.   lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library'
  1366.   lt_cv_file_magic_cmd=/usr/bin/file
  1367.   lt_cv_file_magic_test_file=/usr/lib/libc.sl
  1368.   ;;
  1369. irix5* | irix6*)
  1370.   case $host_os in
  1371.   irix5*)
  1372.     # this will be overridden with pass_all, but let us keep it just in case
  1373.     lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1"
  1374.     ;;
  1375.   *)
  1376.     case $LD in
  1377.     *-32|*"-32 ") libmagic=32-bit;;
  1378.     *-n32|*"-n32 ") libmagic=N32;;
  1379.     *-64|*"-64 ") libmagic=64-bit;;
  1380.     *) libmagic=never-match;;
  1381.     esac
  1382.     # this will be overridden with pass_all, but let us keep it just in case
  1383.     lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[1234] dynamic lib MIPS - version 1"
  1384.     ;;
  1385.   esac
  1386.   lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*`
  1387.   lt_cv_deplibs_check_method=pass_all
  1388.   ;;
  1389. # This must be Linux ELF.
  1390. linux-gnu*)
  1391.   case $host_cpu in
  1392.   alpha* | hppa* | i*86 | powerpc* | sparc* | ia64* )
  1393.     lt_cv_deplibs_check_method=pass_all ;;
  1394.   *)
  1395.     # glibc up to 2.1.1 does not perform some relocations on ARM
  1396.     lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;;
  1397.   esac
  1398.   lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so`
  1399.   ;;
  1400. netbsd*)
  1401.   if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
  1402.     lt_cv_deplibs_check_method='match_pattern /lib[^/.]+.so.[0-9]+.[0-9]+$'
  1403.   else
  1404.     lt_cv_deplibs_check_method='match_pattern /lib[^/.]+.so$'
  1405.   fi
  1406.   ;;
  1407. newos6*)
  1408.   lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)'
  1409.   lt_cv_file_magic_cmd=/usr/bin/file
  1410.   lt_cv_file_magic_test_file=/usr/lib/libnls.so
  1411.   ;;
  1412. openbsd*)
  1413.   lt_cv_file_magic_cmd=/usr/bin/file
  1414.   lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
  1415.   if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  1416.     lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB shared object'
  1417.   else
  1418.     lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library'
  1419.   fi
  1420.   ;;
  1421. osf3* | osf4* | osf5*)
  1422.   # this will be overridden with pass_all, but let us keep it just in case
  1423.   lt_cv_deplibs_check_method='file_magic COFF format alpha shared library'
  1424.   lt_cv_file_magic_test_file=/shlib/libc.so
  1425.   lt_cv_deplibs_check_method=pass_all
  1426.   ;;
  1427. sco3.2v5*)
  1428.   lt_cv_deplibs_check_method=pass_all
  1429.   ;;
  1430. solaris*)
  1431.   lt_cv_deplibs_check_method=pass_all
  1432.   lt_cv_file_magic_test_file=/lib/libc.so
  1433.   ;;
  1434. sysv5uw[78]* | sysv4*uw2*)
  1435.   lt_cv_deplibs_check_method=pass_all
  1436.   ;;
  1437. sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
  1438.   case $host_vendor in
  1439.   motorola)
  1440.     lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]'
  1441.     lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
  1442.     ;;
  1443.   ncr)
  1444.     lt_cv_deplibs_check_method=pass_all
  1445.     ;;
  1446.   sequent)
  1447.     lt_cv_file_magic_cmd='/bin/file'
  1448.     lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )'
  1449.     ;;
  1450.   sni)
  1451.     lt_cv_file_magic_cmd='/bin/file'
  1452.     lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib"
  1453.     lt_cv_file_magic_test_file=/lib/libc.so
  1454.     ;;
  1455.   esac
  1456.   ;;
  1457. esac
  1458. fi
  1459. echo "$ac_t""$lt_cv_deplibs_check_method" 1>&6
  1460. file_magic_cmd=$lt_cv_file_magic_cmd
  1461. deplibs_check_method=$lt_cv_deplibs_check_method
  1462. echo $ac_n "checking for object suffix""... $ac_c" 1>&6
  1463. echo "configure:1624: checking for object suffix" >&5
  1464. if eval "test "`echo '$''{'ac_cv_objext'+set}'`" = set"; then
  1465.   echo $ac_n "(cached) $ac_c" 1>&6
  1466. else
  1467.   rm -f conftest*
  1468. echo 'int i = 1;' > conftest.$ac_ext
  1469. if { (eval echo configure:1630: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  1470.   for ac_file in conftest.*; do
  1471.     case $ac_file in
  1472.     *.c) ;;
  1473.     *) ac_cv_objext=`echo $ac_file | sed -e s/conftest.//` ;;
  1474.     esac
  1475.   done
  1476. else
  1477.   { echo "configure: error: installation or configuration problem; compiler does not work" 1>&2; exit 1; }
  1478. fi
  1479. rm -f conftest*
  1480. fi
  1481. echo "$ac_t""$ac_cv_objext" 1>&6
  1482. OBJEXT=$ac_cv_objext
  1483. ac_objext=$ac_cv_objext
  1484. echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
  1485. echo "configure:1650: checking for executable suffix" >&5
  1486. if eval "test "`echo '$''{'ac_cv_exeext'+set}'`" = set"; then
  1487.   echo $ac_n "(cached) $ac_c" 1>&6
  1488. else
  1489.   if test "$CYGWIN" = yes || test "$MINGW32" = yes; then
  1490.   ac_cv_exeext=.exe
  1491. else
  1492.   rm -f conftest*
  1493.   echo 'int main () { return 0; }' > conftest.$ac_ext
  1494.   ac_cv_exeext=
  1495.   if { (eval echo configure:1660: "$ac_link") 1>&5; (eval $ac_link) 2>&5; }; then
  1496.     for file in conftest.*; do
  1497.       case $file in
  1498.       *.c | *.o | *.obj) ;;
  1499.       *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;;
  1500.       esac
  1501.     done
  1502.   else
  1503.     { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; }
  1504.   fi
  1505.   rm -f conftest*
  1506.   test x"${ac_cv_exeext}" = x && ac_cv_exeext=no
  1507. fi
  1508. fi
  1509. EXEEXT=""
  1510. test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext}
  1511. echo "$ac_t""${ac_cv_exeext}" 1>&6
  1512. ac_exeext=$EXEEXT
  1513. if test $host != $build; then
  1514.   ac_tool_prefix=${host_alias}-
  1515. else
  1516.   ac_tool_prefix=
  1517. fi
  1518. # Check for command to grab the raw symbol name followed by C symbol from nm.
  1519. echo $ac_n "checking command to parse $NM output""... $ac_c" 1>&6
  1520. echo "configure:1691: checking command to parse $NM output" >&5
  1521. if eval "test "`echo '$''{'lt_cv_sys_global_symbol_pipe'+set}'`" = set"; then
  1522.   echo $ac_n "(cached) $ac_c" 1>&6
  1523. else
  1524.   
  1525. # These are sane defaults that work on at least a few old systems.
  1526. # [They come from Ultrix.  What could be older than Ultrix?!! ;)]
  1527. # Character class describing NM global symbol codes.
  1528. symcode='[BCDEGRST]'
  1529. # Regexp to match symbols that can be accessed directly from C.
  1530. sympat='([_A-Za-z][_A-Za-z0-9]*)'
  1531. # Transform the above into a raw symbol and a C symbol.
  1532. symxfrm='1 23 3'
  1533. # Transform an extracted symbol line into a proper C declaration
  1534. lt_cv_global_symbol_to_cdecl="sed -n -e 's/^. .* (.*)$/extern char 1;/p'"
  1535. # Transform an extracted symbol line into symbol name and symbol address
  1536. lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: ([^ ]*) $/  {\"1\", (lt_ptr) 0},/p' -e 's/^$symcode ([^ ]*) ([^ ]*)$/  {"2", (lt_ptr) &2},/p'"
  1537. # Define system-specific variables.
  1538. case $host_os in
  1539. aix*)
  1540.   symcode='[BCDT]'
  1541.   ;;
  1542. cygwin* | mingw* | pw32*)
  1543.   symcode='[ABCDGISTW]'
  1544.   ;;
  1545. hpux*) # Its linker distinguishes data from code symbols
  1546.   lt_cv_global_symbol_to_cdecl="sed -n -e 's/^T .* (.*)$/extern char 1();/p' -e 's/^$symcode* .* (.*)$/extern char 1;/p'"
  1547.   lt_cv_global_symbol_to_c_name_address="sed -n -e 's/^: ([^ ]*) $/  {\"1\", (lt_ptr) 0},/p' -e 's/^$symcode* ([^ ]*) ([^ ]*)$/  {"2", (lt_ptr) &2},/p'"
  1548.   ;;
  1549. irix*)
  1550.   symcode='[BCDEGRST]'
  1551.   ;;
  1552. solaris* | sysv5*)
  1553.   symcode='[BDT]'
  1554.   ;;
  1555. sysv4)
  1556.   symcode='[DFNSTU]'
  1557.   ;;
  1558. esac
  1559. # Handle CRLF in mingw tool chain
  1560. opt_cr=
  1561. case $host_os in
  1562. mingw*)
  1563.   opt_cr=`echo 'x{0,1}' | tr x '15'` # option cr in regexp
  1564.   ;;
  1565. esac
  1566. # If we're using GNU nm, then use its standard symbol codes.
  1567. if $NM -V 2>&1 | egrep '(GNU|with BFD)' > /dev/null; then
  1568.   symcode='[ABCDGISTW]'
  1569. fi
  1570. # Try without a prefix undercore, then with it.
  1571. for ac_symprfx in "" "_"; do
  1572.   # Write the raw and C identifiers.
  1573. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[  ]($symcode$symcode*)[  ][  ]*($ac_symprfx)$sympat$opt_cr$/$symxfrm/p'"
  1574.   # Check to see that the pipe works correctly.
  1575.   pipe_works=no
  1576.   rm -f conftest*
  1577.   cat > conftest.$ac_ext <<EOF
  1578. #ifdef __cplusplus
  1579. extern "C" {
  1580. #endif
  1581. char nm_test_var;
  1582. void nm_test_func(){}
  1583. #ifdef __cplusplus
  1584. }
  1585. #endif
  1586. int main(){nm_test_var='a';nm_test_func();return(0);}
  1587. EOF
  1588.   if { (eval echo configure:1771: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  1589.     # Now try to grab the symbols.
  1590.     nlist=conftest.nm
  1591.     if { (eval echo configure:1774: "$NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist") 1>&5; (eval $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist) 2>&5; } && test -s "$nlist"; then
  1592.       # Try sorting and uniquifying the output.
  1593.       if sort "$nlist" | uniq > "$nlist"T; then
  1594. mv -f "$nlist"T "$nlist"
  1595.       else
  1596. rm -f "$nlist"T
  1597.       fi
  1598.       # Make sure that we snagged all the symbols we need.
  1599.       if egrep ' nm_test_var$' "$nlist" >/dev/null; then
  1600. if egrep ' nm_test_func$' "$nlist" >/dev/null; then
  1601.   cat <<EOF > conftest.$ac_ext
  1602. #ifdef __cplusplus
  1603. extern "C" {
  1604. #endif
  1605. EOF
  1606.   # Now generate the symbol file.
  1607.   eval "$lt_cv_global_symbol_to_cdecl"' < "$nlist" >> conftest.$ac_ext'
  1608.   cat <<EOF >> conftest.$ac_ext
  1609. #if defined (__STDC__) && __STDC__
  1610. # define lt_ptr void *
  1611. #else
  1612. # define lt_ptr char *
  1613. # define const
  1614. #endif
  1615. /* The mapping between symbol names and symbols. */
  1616. const struct {
  1617.   const char *name;
  1618.   lt_ptr address;
  1619. }
  1620. lt_preloaded_symbols[] =
  1621. {
  1622. EOF
  1623.   sed "s/^$symcode$symcode* (.*) (.*)$/  {"2", (lt_ptr) &2},/" < "$nlist" >> conftest.$ac_ext
  1624.   cat <<EOF >> conftest.$ac_ext
  1625.   {0, (lt_ptr) 0}
  1626. };
  1627. #ifdef __cplusplus
  1628. }
  1629. #endif
  1630. EOF
  1631.   # Now try linking the two files.
  1632.   mv conftest.$ac_objext conftstm.$ac_objext
  1633.   save_LIBS="$LIBS"
  1634.   save_CFLAGS="$CFLAGS"
  1635.   LIBS="conftstm.$ac_objext"
  1636.   CFLAGS="$CFLAGS$no_builtin_flag"
  1637.   if { (eval echo configure:1825: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
  1638.     pipe_works=yes
  1639.   fi
  1640.   LIBS="$save_LIBS"
  1641.   CFLAGS="$save_CFLAGS"
  1642. else
  1643.   echo "cannot find nm_test_func in $nlist" >&5
  1644. fi
  1645.       else
  1646. echo "cannot find nm_test_var in $nlist" >&5
  1647.       fi
  1648.     else
  1649.       echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5
  1650.     fi
  1651.   else
  1652.     echo "$progname: failed program was:" >&5
  1653.     cat conftest.$ac_ext >&5
  1654.   fi
  1655.   rm -f conftest* conftst*
  1656.   # Do not use the global_symbol_pipe unless it works.
  1657.   if test "$pipe_works" = yes; then
  1658.     break
  1659.   else
  1660.     lt_cv_sys_global_symbol_pipe=
  1661.   fi
  1662. done
  1663. fi
  1664. global_symbol_pipe="$lt_cv_sys_global_symbol_pipe"
  1665. if test -z "$lt_cv_sys_global_symbol_pipe"; then
  1666.   global_symbol_to_cdecl=
  1667.   global_symbol_to_c_name_address=
  1668. else
  1669.   global_symbol_to_cdecl="$lt_cv_global_symbol_to_cdecl"
  1670.   global_symbol_to_c_name_address="$lt_cv_global_symbol_to_c_name_address"
  1671. fi
  1672. if test -z "$global_symbol_pipe$global_symbol_to_cdec$global_symbol_to_c_name_address";
  1673. then
  1674.   echo "$ac_t""failed" 1>&6
  1675. else
  1676.   echo "$ac_t""ok" 1>&6
  1677. fi
  1678. for ac_hdr in dlfcn.h
  1679. do
  1680. ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  1681. echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
  1682. echo "configure:1874: checking for $ac_hdr" >&5
  1683. if eval "test "`echo '$''{'ac_cv_header_$ac_safe'+set}'`" = set"; then
  1684.   echo $ac_n "(cached) $ac_c" 1>&6
  1685. else
  1686.   cat > conftest.$ac_ext <<EOF
  1687. #line 1879 "configure"
  1688. #include "confdefs.h"
  1689. #include <$ac_hdr>
  1690. EOF
  1691. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1692. { (eval echo configure:1884: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  1693. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  1694. if test -z "$ac_err"; then
  1695.   rm -rf conftest*
  1696.   eval "ac_cv_header_$ac_safe=yes"
  1697. else
  1698.   echo "$ac_err" >&5
  1699.   echo "configure: failed program was:" >&5
  1700.   cat conftest.$ac_ext >&5
  1701.   rm -rf conftest*
  1702.   eval "ac_cv_header_$ac_safe=no"
  1703. fi
  1704. rm -f conftest*
  1705. fi
  1706. if eval "test "`echo '$ac_cv_header_'$ac_safe`" = yes"; then
  1707.   echo "$ac_t""yes" 1>&6
  1708.     ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  1709.   cat >> confdefs.h <<EOF
  1710. #define $ac_tr_hdr 1
  1711. EOF
  1712.  
  1713. else
  1714.   echo "$ac_t""no" 1>&6
  1715. fi
  1716. done
  1717. # Only perform the check for file, if the check method requires it
  1718. case $deplibs_check_method in
  1719. file_magic*)
  1720.   if test "$file_magic_cmd" = '$MAGIC_CMD'; then
  1721.     echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6
  1722. echo "configure:1919: checking for ${ac_tool_prefix}file" >&5
  1723. if eval "test "`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`" = set"; then
  1724.   echo $ac_n "(cached) $ac_c" 1>&6
  1725. else
  1726.   case $MAGIC_CMD in
  1727.   /*)
  1728.   lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
  1729.   ;;
  1730.   ?:/*)
  1731.   lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
  1732.   ;;
  1733.   *)
  1734.   ac_save_MAGIC_CMD="$MAGIC_CMD"
  1735.   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
  1736.   ac_dummy="/usr/bin:$PATH"
  1737.   for ac_dir in $ac_dummy; do
  1738.     test -z "$ac_dir" && ac_dir=.
  1739.     if test -f $ac_dir/${ac_tool_prefix}file; then
  1740.       lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file"
  1741.       if test -n "$file_magic_test_file"; then
  1742. case $deplibs_check_method in
  1743. "file_magic "*)
  1744.   file_magic_regex="`expr "$deplibs_check_method" : "file_magic (.*)"`"
  1745.   MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  1746.   if eval $file_magic_cmd $file_magic_test_file 2> /dev/null |
  1747.     egrep "$file_magic_regex" > /dev/null; then
  1748.     :
  1749.   else
  1750.     cat <<EOF 1>&2
  1751. *** Warning: the command libtool uses to detect shared libraries,
  1752. *** $file_magic_cmd, produces output that libtool cannot recognize.
  1753. *** The result is that libtool may fail to recognize shared libraries
  1754. *** as such.  This will affect the creation of libtool libraries that
  1755. *** depend on shared libraries, but programs linked with such libtool
  1756. *** libraries will work regardless of this problem.  Nevertheless, you
  1757. *** may want to report the problem to your system manager and/or to
  1758. *** bug-libtool@gnu.org
  1759. EOF
  1760.   fi ;;
  1761. esac
  1762.       fi
  1763.       break
  1764.     fi
  1765.   done
  1766.   IFS="$ac_save_ifs"
  1767.   MAGIC_CMD="$ac_save_MAGIC_CMD"
  1768.   ;;
  1769. esac
  1770. fi
  1771. MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  1772. if test -n "$MAGIC_CMD"; then
  1773.   echo "$ac_t""$MAGIC_CMD" 1>&6
  1774. else
  1775.   echo "$ac_t""no" 1>&6
  1776. fi
  1777. if test -z "$lt_cv_path_MAGIC_CMD"; then
  1778.   if test -n "$ac_tool_prefix"; then
  1779.     echo $ac_n "checking for file""... $ac_c" 1>&6
  1780. echo "configure:1981: checking for file" >&5
  1781. if eval "test "`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`" = set"; then
  1782.   echo $ac_n "(cached) $ac_c" 1>&6
  1783. else
  1784.   case $MAGIC_CMD in
  1785.   /*)
  1786.   lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
  1787.   ;;
  1788.   ?:/*)
  1789.   lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a dos path.
  1790.   ;;
  1791.   *)
  1792.   ac_save_MAGIC_CMD="$MAGIC_CMD"
  1793.   IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS=":"
  1794.   ac_dummy="/usr/bin:$PATH"
  1795.   for ac_dir in $ac_dummy; do
  1796.     test -z "$ac_dir" && ac_dir=.
  1797.     if test -f $ac_dir/file; then
  1798.       lt_cv_path_MAGIC_CMD="$ac_dir/file"
  1799.       if test -n "$file_magic_test_file"; then
  1800. case $deplibs_check_method in
  1801. "file_magic "*)
  1802.   file_magic_regex="`expr "$deplibs_check_method" : "file_magic (.*)"`"
  1803.   MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  1804.   if eval $file_magic_cmd $file_magic_test_file 2> /dev/null |
  1805.     egrep "$file_magic_regex" > /dev/null; then
  1806.     :
  1807.   else
  1808.     cat <<EOF 1>&2
  1809. *** Warning: the command libtool uses to detect shared libraries,
  1810. *** $file_magic_cmd, produces output that libtool cannot recognize.
  1811. *** The result is that libtool may fail to recognize shared libraries
  1812. *** as such.  This will affect the creation of libtool libraries that
  1813. *** depend on shared libraries, but programs linked with such libtool
  1814. *** libraries will work regardless of this problem.  Nevertheless, you
  1815. *** may want to report the problem to your system manager and/or to
  1816. *** bug-libtool@gnu.org
  1817. EOF
  1818.   fi ;;
  1819. esac
  1820.       fi
  1821.       break
  1822.     fi
  1823.   done
  1824.   IFS="$ac_save_ifs"
  1825.   MAGIC_CMD="$ac_save_MAGIC_CMD"
  1826.   ;;
  1827. esac
  1828. fi
  1829. MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  1830. if test -n "$MAGIC_CMD"; then
  1831.   echo "$ac_t""$MAGIC_CMD" 1>&6
  1832. else
  1833.   echo "$ac_t""no" 1>&6
  1834. fi
  1835.   else
  1836.     MAGIC_CMD=:
  1837.   fi
  1838. fi
  1839.   fi
  1840.   ;;
  1841. esac
  1842. # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
  1843. set dummy ${ac_tool_prefix}ranlib; ac_word=$2
  1844. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  1845. echo "configure:2052: checking for $ac_word" >&5
  1846. if eval "test "`echo '$''{'ac_cv_prog_RANLIB'+set}'`" = set"; then
  1847.   echo $ac_n "(cached) $ac_c" 1>&6
  1848. else
  1849.   if test -n "$RANLIB"; then
  1850.   ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
  1851. else
  1852.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  1853.   ac_dummy="$PATH"
  1854.   for ac_dir in $ac_dummy; do
  1855.     test -z "$ac_dir" && ac_dir=.
  1856.     if test -f $ac_dir/$ac_word; then
  1857.       ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
  1858.       break
  1859.     fi
  1860.   done
  1861.   IFS="$ac_save_ifs"
  1862. fi
  1863. fi
  1864. RANLIB="$ac_cv_prog_RANLIB"
  1865. if test -n "$RANLIB"; then
  1866.   echo "$ac_t""$RANLIB" 1>&6
  1867. else
  1868.   echo "$ac_t""no" 1>&6
  1869. fi
  1870. if test -z "$ac_cv_prog_RANLIB"; then
  1871. if test -n "$ac_tool_prefix"; then
  1872.   # Extract the first word of "ranlib", so it can be a program name with args.
  1873. set dummy ranlib; ac_word=$2
  1874. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  1875. echo "configure:2084: checking for $ac_word" >&5
  1876. if eval "test "`echo '$''{'ac_cv_prog_RANLIB'+set}'`" = set"; then
  1877.   echo $ac_n "(cached) $ac_c" 1>&6
  1878. else
  1879.   if test -n "$RANLIB"; then
  1880.   ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
  1881. else
  1882.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  1883.   ac_dummy="$PATH"
  1884.   for ac_dir in $ac_dummy; do
  1885.     test -z "$ac_dir" && ac_dir=.
  1886.     if test -f $ac_dir/$ac_word; then
  1887.       ac_cv_prog_RANLIB="ranlib"
  1888.       break
  1889.     fi
  1890.   done
  1891.   IFS="$ac_save_ifs"
  1892.   test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":"
  1893. fi
  1894. fi
  1895. RANLIB="$ac_cv_prog_RANLIB"
  1896. if test -n "$RANLIB"; then
  1897.   echo "$ac_t""$RANLIB" 1>&6
  1898. else
  1899.   echo "$ac_t""no" 1>&6
  1900. fi
  1901. else
  1902.   RANLIB=":"
  1903. fi
  1904. fi
  1905. # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
  1906. set dummy ${ac_tool_prefix}strip; ac_word=$2
  1907. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  1908. echo "configure:2119: checking for $ac_word" >&5
  1909. if eval "test "`echo '$''{'ac_cv_prog_STRIP'+set}'`" = set"; then
  1910.   echo $ac_n "(cached) $ac_c" 1>&6
  1911. else
  1912.   if test -n "$STRIP"; then
  1913.   ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
  1914. else
  1915.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  1916.   ac_dummy="$PATH"
  1917.   for ac_dir in $ac_dummy; do
  1918.     test -z "$ac_dir" && ac_dir=.
  1919.     if test -f $ac_dir/$ac_word; then
  1920.       ac_cv_prog_STRIP="${ac_tool_prefix}strip"
  1921.       break
  1922.     fi
  1923.   done
  1924.   IFS="$ac_save_ifs"
  1925. fi
  1926. fi
  1927. STRIP="$ac_cv_prog_STRIP"
  1928. if test -n "$STRIP"; then
  1929.   echo "$ac_t""$STRIP" 1>&6
  1930. else
  1931.   echo "$ac_t""no" 1>&6
  1932. fi
  1933. if test -z "$ac_cv_prog_STRIP"; then
  1934. if test -n "$ac_tool_prefix"; then
  1935.   # Extract the first word of "strip", so it can be a program name with args.
  1936. set dummy strip; ac_word=$2
  1937. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  1938. echo "configure:2151: checking for $ac_word" >&5
  1939. if eval "test "`echo '$''{'ac_cv_prog_STRIP'+set}'`" = set"; then
  1940.   echo $ac_n "(cached) $ac_c" 1>&6
  1941. else
  1942.   if test -n "$STRIP"; then
  1943.   ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
  1944. else
  1945.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  1946.   ac_dummy="$PATH"
  1947.   for ac_dir in $ac_dummy; do
  1948.     test -z "$ac_dir" && ac_dir=.
  1949.     if test -f $ac_dir/$ac_word; then
  1950.       ac_cv_prog_STRIP="strip"
  1951.       break
  1952.     fi
  1953.   done
  1954.   IFS="$ac_save_ifs"
  1955.   test -z "$ac_cv_prog_STRIP" && ac_cv_prog_STRIP=":"
  1956. fi
  1957. fi
  1958. STRIP="$ac_cv_prog_STRIP"
  1959. if test -n "$STRIP"; then
  1960.   echo "$ac_t""$STRIP" 1>&6
  1961. else
  1962.   echo "$ac_t""no" 1>&6
  1963. fi
  1964. else
  1965.   STRIP=":"
  1966. fi
  1967. fi
  1968. enable_dlopen=no
  1969. enable_win32_dll=yes
  1970. # Check whether --enable-libtool-lock or --disable-libtool-lock was given.
  1971. if test "${enable_libtool_lock+set}" = set; then
  1972.   enableval="$enable_libtool_lock"
  1973.   :
  1974. fi
  1975. test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
  1976. # Some flags need to be propagated to the compiler or linker for good
  1977. # libtool support.
  1978. case $host in
  1979. *-*-irix6*)
  1980.   # Find out which ABI we are using.
  1981.   echo '#line 2200 "configure"' > conftest.$ac_ext
  1982.   if { (eval echo configure:2201: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  1983.     case `/usr/bin/file conftest.$ac_objext` in
  1984.     *32-bit*)
  1985.       LD="${LD-ld} -32"
  1986.       ;;
  1987.     *N32*)
  1988.       LD="${LD-ld} -n32"
  1989.       ;;
  1990.     *64-bit*)
  1991.       LD="${LD-ld} -64"
  1992.       ;;
  1993.     esac
  1994.   fi
  1995.   rm -rf conftest*
  1996.   ;;
  1997. *-*-sco3.2v5*)
  1998.   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
  1999.   SAVE_CFLAGS="$CFLAGS"
  2000.   CFLAGS="$CFLAGS -belf"
  2001.   echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6
  2002. echo "configure:2222: checking whether the C compiler needs -belf" >&5
  2003. if eval "test "`echo '$''{'lt_cv_cc_needs_belf'+set}'`" = set"; then
  2004.   echo $ac_n "(cached) $ac_c" 1>&6
  2005. else
  2006.   
  2007.      ac_ext=c
  2008. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  2009. ac_cpp='$CPP $CPPFLAGS'
  2010. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  2011. ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  2012. cross_compiling=$ac_cv_prog_cc_cross
  2013.      cat > conftest.$ac_ext <<EOF
  2014. #line 2235 "configure"
  2015. #include "confdefs.h"
  2016. int main() {
  2017. ; return 0; }
  2018. EOF
  2019. if { (eval echo configure:2242: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  2020.   rm -rf conftest*
  2021.   lt_cv_cc_needs_belf=yes
  2022. else
  2023.   echo "configure: failed program was:" >&5
  2024.   cat conftest.$ac_ext >&5
  2025.   rm -rf conftest*
  2026.   lt_cv_cc_needs_belf=no
  2027. fi
  2028. rm -f conftest*
  2029.      ac_ext=c
  2030. # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
  2031. ac_cpp='$CPP $CPPFLAGS'
  2032. ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
  2033. ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
  2034. cross_compiling=$ac_cv_prog_cc_cross
  2035. fi
  2036. echo "$ac_t""$lt_cv_cc_needs_belf" 1>&6
  2037.   if test x"$lt_cv_cc_needs_belf" != x"yes"; then
  2038.     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
  2039.     CFLAGS="$SAVE_CFLAGS"
  2040.   fi
  2041.   ;;
  2042. *-*-cygwin* | *-*-mingw* | *-*-pw32*)
  2043.   # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args.
  2044. set dummy ${ac_tool_prefix}dlltool; ac_word=$2
  2045. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  2046. echo "configure:2272: checking for $ac_word" >&5
  2047. if eval "test "`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`" = set"; then
  2048.   echo $ac_n "(cached) $ac_c" 1>&6
  2049. else
  2050.   if test -n "$DLLTOOL"; then
  2051.   ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test.
  2052. else
  2053.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  2054.   ac_dummy="$PATH"
  2055.   for ac_dir in $ac_dummy; do
  2056.     test -z "$ac_dir" && ac_dir=.
  2057.     if test -f $ac_dir/$ac_word; then
  2058.       ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool"
  2059.       break
  2060.     fi
  2061.   done
  2062.   IFS="$ac_save_ifs"
  2063. fi
  2064. fi
  2065. DLLTOOL="$ac_cv_prog_DLLTOOL"
  2066. if test -n "$DLLTOOL"; then
  2067.   echo "$ac_t""$DLLTOOL" 1>&6
  2068. else
  2069.   echo "$ac_t""no" 1>&6
  2070. fi
  2071. if test -z "$ac_cv_prog_DLLTOOL"; then
  2072. if test -n "$ac_tool_prefix"; then
  2073.   # Extract the first word of "dlltool", so it can be a program name with args.
  2074. set dummy dlltool; ac_word=$2
  2075. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  2076. echo "configure:2304: checking for $ac_word" >&5
  2077. if eval "test "`echo '$''{'ac_cv_prog_DLLTOOL'+set}'`" = set"; then
  2078.   echo $ac_n "(cached) $ac_c" 1>&6
  2079. else
  2080.   if test -n "$DLLTOOL"; then
  2081.   ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test.
  2082. else
  2083.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  2084.   ac_dummy="$PATH"
  2085.   for ac_dir in $ac_dummy; do
  2086.     test -z "$ac_dir" && ac_dir=.
  2087.     if test -f $ac_dir/$ac_word; then
  2088.       ac_cv_prog_DLLTOOL="dlltool"
  2089.       break
  2090.     fi
  2091.   done
  2092.   IFS="$ac_save_ifs"
  2093.   test -z "$ac_cv_prog_DLLTOOL" && ac_cv_prog_DLLTOOL="false"
  2094. fi
  2095. fi
  2096. DLLTOOL="$ac_cv_prog_DLLTOOL"
  2097. if test -n "$DLLTOOL"; then
  2098.   echo "$ac_t""$DLLTOOL" 1>&6
  2099. else
  2100.   echo "$ac_t""no" 1>&6
  2101. fi
  2102. else
  2103.   DLLTOOL="false"
  2104. fi
  2105. fi
  2106.   # Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args.
  2107. set dummy ${ac_tool_prefix}as; ac_word=$2
  2108. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  2109. echo "configure:2339: checking for $ac_word" >&5
  2110. if eval "test "`echo '$''{'ac_cv_prog_AS'+set}'`" = set"; then
  2111.   echo $ac_n "(cached) $ac_c" 1>&6
  2112. else
  2113.   if test -n "$AS"; then
  2114.   ac_cv_prog_AS="$AS" # Let the user override the test.
  2115. else
  2116.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  2117.   ac_dummy="$PATH"
  2118.   for ac_dir in $ac_dummy; do
  2119.     test -z "$ac_dir" && ac_dir=.
  2120.     if test -f $ac_dir/$ac_word; then
  2121.       ac_cv_prog_AS="${ac_tool_prefix}as"
  2122.       break
  2123.     fi
  2124.   done
  2125.   IFS="$ac_save_ifs"
  2126. fi
  2127. fi
  2128. AS="$ac_cv_prog_AS"
  2129. if test -n "$AS"; then
  2130.   echo "$ac_t""$AS" 1>&6
  2131. else
  2132.   echo "$ac_t""no" 1>&6
  2133. fi
  2134. if test -z "$ac_cv_prog_AS"; then
  2135. if test -n "$ac_tool_prefix"; then
  2136.   # Extract the first word of "as", so it can be a program name with args.
  2137. set dummy as; ac_word=$2
  2138. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  2139. echo "configure:2371: checking for $ac_word" >&5
  2140. if eval "test "`echo '$''{'ac_cv_prog_AS'+set}'`" = set"; then
  2141.   echo $ac_n "(cached) $ac_c" 1>&6
  2142. else
  2143.   if test -n "$AS"; then
  2144.   ac_cv_prog_AS="$AS" # Let the user override the test.
  2145. else
  2146.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  2147.   ac_dummy="$PATH"
  2148.   for ac_dir in $ac_dummy; do
  2149.     test -z "$ac_dir" && ac_dir=.
  2150.     if test -f $ac_dir/$ac_word; then
  2151.       ac_cv_prog_AS="as"
  2152.       break
  2153.     fi
  2154.   done
  2155.   IFS="$ac_save_ifs"
  2156.   test -z "$ac_cv_prog_AS" && ac_cv_prog_AS="false"
  2157. fi
  2158. fi
  2159. AS="$ac_cv_prog_AS"
  2160. if test -n "$AS"; then
  2161.   echo "$ac_t""$AS" 1>&6
  2162. else
  2163.   echo "$ac_t""no" 1>&6
  2164. fi
  2165. else
  2166.   AS="false"
  2167. fi
  2168. fi
  2169.   # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args.
  2170. set dummy ${ac_tool_prefix}objdump; ac_word=$2
  2171. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  2172. echo "configure:2406: checking for $ac_word" >&5
  2173. if eval "test "`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`" = set"; then
  2174.   echo $ac_n "(cached) $ac_c" 1>&6
  2175. else
  2176.   if test -n "$OBJDUMP"; then
  2177.   ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test.
  2178. else
  2179.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  2180.   ac_dummy="$PATH"
  2181.   for ac_dir in $ac_dummy; do
  2182.     test -z "$ac_dir" && ac_dir=.
  2183.     if test -f $ac_dir/$ac_word; then
  2184.       ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump"
  2185.       break
  2186.     fi
  2187.   done
  2188.   IFS="$ac_save_ifs"
  2189. fi
  2190. fi
  2191. OBJDUMP="$ac_cv_prog_OBJDUMP"
  2192. if test -n "$OBJDUMP"; then
  2193.   echo "$ac_t""$OBJDUMP" 1>&6
  2194. else
  2195.   echo "$ac_t""no" 1>&6
  2196. fi
  2197. if test -z "$ac_cv_prog_OBJDUMP"; then
  2198. if test -n "$ac_tool_prefix"; then
  2199.   # Extract the first word of "objdump", so it can be a program name with args.
  2200. set dummy objdump; ac_word=$2
  2201. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  2202. echo "configure:2438: checking for $ac_word" >&5
  2203. if eval "test "`echo '$''{'ac_cv_prog_OBJDUMP'+set}'`" = set"; then
  2204.   echo $ac_n "(cached) $ac_c" 1>&6
  2205. else
  2206.   if test -n "$OBJDUMP"; then
  2207.   ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test.
  2208. else
  2209.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  2210.   ac_dummy="$PATH"
  2211.   for ac_dir in $ac_dummy; do
  2212.     test -z "$ac_dir" && ac_dir=.
  2213.     if test -f $ac_dir/$ac_word; then
  2214.       ac_cv_prog_OBJDUMP="objdump"
  2215.       break
  2216.     fi
  2217.   done
  2218.   IFS="$ac_save_ifs"
  2219.   test -z "$ac_cv_prog_OBJDUMP" && ac_cv_prog_OBJDUMP="false"
  2220. fi
  2221. fi
  2222. OBJDUMP="$ac_cv_prog_OBJDUMP"
  2223. if test -n "$OBJDUMP"; then
  2224.   echo "$ac_t""$OBJDUMP" 1>&6
  2225. else
  2226.   echo "$ac_t""no" 1>&6
  2227. fi
  2228. else
  2229.   OBJDUMP="false"
  2230. fi
  2231. fi
  2232.   # recent cygwin and mingw systems supply a stub DllMain which the user
  2233.   # can override, but on older systems we have to supply one
  2234.   echo $ac_n "checking if libtool should supply DllMain function""... $ac_c" 1>&6
  2235. echo "configure:2474: checking if libtool should supply DllMain function" >&5
  2236. if eval "test "`echo '$''{'lt_cv_need_dllmain'+set}'`" = set"; then
  2237.   echo $ac_n "(cached) $ac_c" 1>&6
  2238. else
  2239.   cat > conftest.$ac_ext <<EOF
  2240. #line 2479 "configure"
  2241. #include "confdefs.h"
  2242. int main() {
  2243. extern int __attribute__((__stdcall__)) DllMain(void*, int, void*);
  2244.       DllMain (0, 0, 0);
  2245. ; return 0; }
  2246. EOF
  2247. if { (eval echo configure:2487: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  2248.   rm -rf conftest*
  2249.   lt_cv_need_dllmain=no
  2250. else
  2251.   echo "configure: failed program was:" >&5
  2252.   cat conftest.$ac_ext >&5
  2253.   rm -rf conftest*
  2254.   lt_cv_need_dllmain=yes
  2255. fi
  2256. rm -f conftest*
  2257. fi
  2258. echo "$ac_t""$lt_cv_need_dllmain" 1>&6
  2259.   case $host/$CC in
  2260.   *-*-cygwin*/gcc*-mno-cygwin*|*-*-mingw*)
  2261.     # old mingw systems require "-dll" to link a DLL, while more recent ones
  2262.     # require "-mdll"
  2263.     SAVE_CFLAGS="$CFLAGS"
  2264.     CFLAGS="$CFLAGS -mdll"
  2265.     echo $ac_n "checking how to link DLLs""... $ac_c" 1>&6
  2266. echo "configure:2508: checking how to link DLLs" >&5
  2267. if eval "test "`echo '$''{'lt_cv_cc_dll_switch'+set}'`" = set"; then
  2268.   echo $ac_n "(cached) $ac_c" 1>&6
  2269. else
  2270.   cat > conftest.$ac_ext <<EOF
  2271. #line 2513 "configure"
  2272. #include "confdefs.h"
  2273. int main() {
  2274. ; return 0; }
  2275. EOF
  2276. if { (eval echo configure:2520: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  2277.   rm -rf conftest*
  2278.   lt_cv_cc_dll_switch=-mdll
  2279. else
  2280.   echo "configure: failed program was:" >&5
  2281.   cat conftest.$ac_ext >&5
  2282.   rm -rf conftest*
  2283.   lt_cv_cc_dll_switch=-dll
  2284. fi
  2285. rm -f conftest*
  2286. fi
  2287. echo "$ac_t""$lt_cv_cc_dll_switch" 1>&6
  2288.     CFLAGS="$SAVE_CFLAGS" ;;
  2289.   *-*-cygwin* | *-*-pw32*)
  2290.     # cygwin systems need to pass --dll to the linker, and not link
  2291.     # crt.o which will require a WinMain@16 definition.
  2292.     lt_cv_cc_dll_switch="-Wl,--dll -nostartfiles" ;;
  2293.   esac
  2294.   ;;
  2295.   
  2296. esac
  2297. # Sed substitution that helps us do robust quoting.  It backslashifies
  2298. # metacharacters that are still active within double-quoted strings.
  2299. Xsed='sed -e s/^X//'
  2300. sed_quote_subst='s/([\"\`$\\])/\1/g'
  2301. # Same as above, but do not quote variable references.
  2302. double_quote_subst='s/([\"\`\\])/\1/g'
  2303. # Sed substitution to delay expansion of an escaped shell variable in a
  2304. # double_quote_subst'ed string.
  2305. delay_variable_subst='s/\\\\\$/\\\$/g'
  2306. # Constants:
  2307. rm="rm -f"
  2308. # Global variables:
  2309. default_ofile=libtool
  2310. can_build_shared=yes
  2311. # All known linkers require a `.a' archive for static linking (except M$VC,
  2312. # which needs '.lib').
  2313. libext=a
  2314. ltmain="$ac_aux_dir/ltmain.sh"
  2315. ofile="$default_ofile"
  2316. with_gnu_ld="$lt_cv_prog_gnu_ld"
  2317. need_locks="$enable_libtool_lock"
  2318. old_CC="$CC"
  2319. old_CFLAGS="$CFLAGS"
  2320. # Set sane defaults for various variables
  2321. test -z "$AR" && AR=ar
  2322. test -z "$AR_FLAGS" && AR_FLAGS=cru
  2323. test -z "$AS" && AS=as
  2324. test -z "$CC" && CC=cc
  2325. test -z "$DLLTOOL" && DLLTOOL=dlltool
  2326. test -z "$LD" && LD=ld
  2327. test -z "$LN_S" && LN_S="ln -s"
  2328. test -z "$MAGIC_CMD" && MAGIC_CMD=file
  2329. test -z "$NM" && NM=nm
  2330. test -z "$OBJDUMP" && OBJDUMP=objdump
  2331. test -z "$RANLIB" && RANLIB=:
  2332. test -z "$STRIP" && STRIP=:
  2333. test -z "$ac_objext" && ac_objext=o
  2334. if test x"$host" != x"$build"; then
  2335.   ac_tool_prefix=${host_alias}-
  2336. else
  2337.   ac_tool_prefix=
  2338. fi
  2339. # Transform linux* to *-*-linux-gnu*, to support old configure scripts.
  2340. case $host_os in
  2341. linux-gnu*) ;;
  2342. linux*) host=`echo $host | sed 's/^(.*-.*-linux)(.*)$/1-gnu2/'`
  2343. esac
  2344. case $host_os in
  2345. aix3*)
  2346.   # AIX sometimes has problems with the GCC collect2 program.  For some
  2347.   # reason, if we set the COLLECT_NAMES environment variable, the problems
  2348.   # vanish in a puff of smoke.
  2349.   if test "X${COLLECT_NAMES+set}" != Xset; then
  2350.     COLLECT_NAMES=
  2351.     export COLLECT_NAMES
  2352.   fi
  2353.   ;;
  2354. esac
  2355. # Determine commands to create old-style static archives.
  2356. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs'
  2357. old_postinstall_cmds='chmod 644 $oldlib'
  2358. old_postuninstall_cmds=
  2359. if test -n "$RANLIB"; then
  2360.   case $host_os in
  2361.   openbsd*)
  2362.     old_postinstall_cmds="$RANLIB -t $oldlib~$old_postinstall_cmds"
  2363.     ;;
  2364.   *)
  2365.     old_postinstall_cmds="$RANLIB $oldlib~$old_postinstall_cmds"
  2366.     ;;
  2367.   esac
  2368.   old_archive_cmds="$old_archive_cmds~$RANLIB $oldlib"
  2369. fi
  2370. # Allow CC to be a program name with arguments.
  2371. set dummy $CC
  2372. compiler="$2"
  2373. echo $ac_n "checking for objdir""... $ac_c" 1>&6
  2374. echo "configure:2634: checking for objdir" >&5
  2375. rm -f .libs 2>/dev/null
  2376. mkdir .libs 2>/dev/null
  2377. if test -d .libs; then
  2378.   objdir=.libs
  2379. else
  2380.   # MS-DOS does not allow filenames that begin with a dot.
  2381.   objdir=_libs
  2382. fi
  2383. rmdir .libs 2>/dev/null
  2384. echo "$ac_t""$objdir" 1>&6
  2385. # Check whether --with-pic or --without-pic was given.
  2386. if test "${with_pic+set}" = set; then
  2387.   withval="$with_pic"
  2388.   pic_mode="$withval"
  2389. else
  2390.   pic_mode=default
  2391. fi
  2392. test -z "$pic_mode" && pic_mode=default
  2393. # We assume here that the value for lt_cv_prog_cc_pic will not be cached
  2394. # in isolation, and that seeing it set (from the cache) indicates that
  2395. # the associated values are set (in the cache) correctly too.
  2396. echo $ac_n "checking for $compiler option to produce PIC""... $ac_c" 1>&6
  2397. echo "configure:2661: checking for $compiler option to produce PIC" >&5
  2398. if eval "test "`echo '$''{'lt_cv_prog_cc_pic'+set}'`" = set"; then
  2399.   echo $ac_n "(cached) $ac_c" 1>&6
  2400. else
  2401.    lt_cv_prog_cc_pic=
  2402.   lt_cv_prog_cc_shlib=
  2403.   lt_cv_prog_cc_wl=
  2404.   lt_cv_prog_cc_static=
  2405.   lt_cv_prog_cc_no_builtin=
  2406.   lt_cv_prog_cc_can_build_shared=$can_build_shared
  2407.   if test "$GCC" = yes; then
  2408.     lt_cv_prog_cc_wl='-Wl,'
  2409.     lt_cv_prog_cc_static='-static'
  2410.     case $host_os in
  2411.     aix*)
  2412.       # Below there is a dirty hack to force normal static linking with -ldl
  2413.       # The problem is because libdl dynamically linked with both libc and
  2414.       # libC (AIX C++ library), which obviously doesn't included in libraries
  2415.       # list by gcc. This cause undefined symbols with -static flags.
  2416.       # This hack allows C programs to be linked with "-static -ldl", but
  2417.       # not sure about C++ programs.
  2418.       lt_cv_prog_cc_static="$lt_cv_prog_cc_static ${lt_cv_prog_cc_wl}-lC"
  2419.       ;;
  2420.     amigaos*)
  2421.       # FIXME: we need at least 68020 code to build shared libraries, but
  2422.       # adding the `-m68020' flag to GCC prevents building anything better,
  2423.       # like `-m68040'.
  2424.       lt_cv_prog_cc_pic='-m68020 -resident32 -malways-restore-a4'
  2425.       ;;
  2426.     beos* | irix5* | irix6* | osf3* | osf4* | osf5*)
  2427.       # PIC is the default for these OSes.
  2428.       ;;
  2429.     darwin* | rhapsody*)
  2430.       # PIC is the default on this platform
  2431.       # Common symbols not allowed in MH_DYLIB files
  2432.       lt_cv_prog_cc_pic='-fno-common'
  2433.       ;;
  2434.     cygwin* | mingw* | pw32* | os2*)
  2435.       # This hack is so that the source file can tell whether it is being
  2436.       # built for inclusion in a dll (and should export symbols for example).
  2437.       lt_cv_prog_cc_pic='-DDLL_EXPORT'
  2438.       ;;
  2439.     sysv4*MP*)
  2440.       if test -d /usr/nec; then
  2441.  lt_cv_prog_cc_pic=-Kconform_pic
  2442.       fi
  2443.       ;;
  2444.     *)
  2445.       lt_cv_prog_cc_pic='-fPIC'
  2446.       ;;
  2447.     esac
  2448.   else
  2449.     # PORTME Check for PIC flags for the system compiler.
  2450.     case $host_os in
  2451.     aix3* | aix4* | aix5*)
  2452.       lt_cv_prog_cc_wl='-Wl,'
  2453.       # All AIX code is PIC.
  2454.       if test "$host_cpu" = ia64; then
  2455. # AIX 5 now supports IA64 processor
  2456. lt_cv_prog_cc_static='-Bstatic'
  2457.       else
  2458. lt_cv_prog_cc_static='-bnso -bI:/lib/syscalls.exp'
  2459.       fi
  2460.       ;;
  2461.     hpux9* | hpux10* | hpux11*)
  2462.       # Is there a better lt_cv_prog_cc_static that works with the bundled CC?
  2463.       lt_cv_prog_cc_wl='-Wl,'
  2464.       lt_cv_prog_cc_static="${lt_cv_prog_cc_wl}-a ${lt_cv_prog_cc_wl}archive"
  2465.       lt_cv_prog_cc_pic='+Z'
  2466.       ;;
  2467.     irix5* | irix6*)
  2468.       lt_cv_prog_cc_wl='-Wl,'
  2469.       lt_cv_prog_cc_static='-non_shared'
  2470.       # PIC (with -KPIC) is the default.
  2471.       ;;
  2472.     cygwin* | mingw* | pw32* | os2*)
  2473.       # This hack is so that the source file can tell whether it is being
  2474.       # built for inclusion in a dll (and should export symbols for example).
  2475.       lt_cv_prog_cc_pic='-DDLL_EXPORT'
  2476.       ;;
  2477.     newsos6)
  2478.       lt_cv_prog_cc_pic='-KPIC'
  2479.       lt_cv_prog_cc_static='-Bstatic'
  2480.       ;;
  2481.     osf3* | osf4* | osf5*)
  2482.       # All OSF/1 code is PIC.
  2483.       lt_cv_prog_cc_wl='-Wl,'
  2484.       lt_cv_prog_cc_static='-non_shared'
  2485.       ;;
  2486.     sco3.2v5*)
  2487.       lt_cv_prog_cc_pic='-Kpic'
  2488.       lt_cv_prog_cc_static='-dn'
  2489.       lt_cv_prog_cc_shlib='-belf'
  2490.       ;;
  2491.     solaris*)
  2492.       lt_cv_prog_cc_pic='-KPIC'
  2493.       lt_cv_prog_cc_static='-Bstatic'
  2494.       lt_cv_prog_cc_wl='-Wl,'
  2495.       ;;
  2496.     sunos4*)
  2497.       lt_cv_prog_cc_pic='-PIC'
  2498.       lt_cv_prog_cc_static='-Bstatic'
  2499.       lt_cv_prog_cc_wl='-Qoption ld '
  2500.       ;;
  2501.     sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
  2502.       lt_cv_prog_cc_pic='-KPIC'
  2503.       lt_cv_prog_cc_static='-Bstatic'
  2504.       if test "x$host_vendor" = xsni; then
  2505. lt_cv_prog_cc_wl='-LD'
  2506.       else
  2507. lt_cv_prog_cc_wl='-Wl,'
  2508.       fi
  2509.       ;;
  2510.     uts4*)
  2511.       lt_cv_prog_cc_pic='-pic'
  2512.       lt_cv_prog_cc_static='-Bstatic'
  2513.       ;;
  2514.     sysv4*MP*)
  2515.       if test -d /usr/nec ;then
  2516. lt_cv_prog_cc_pic='-Kconform_pic'
  2517. lt_cv_prog_cc_static='-Bstatic'
  2518.       fi
  2519.       ;;
  2520.     *)
  2521.       lt_cv_prog_cc_can_build_shared=no
  2522.       ;;
  2523.     esac
  2524.   fi
  2525. fi
  2526. if test -z "$lt_cv_prog_cc_pic"; then
  2527.   echo "$ac_t""none" 1>&6
  2528. else
  2529.   echo "$ac_t""$lt_cv_prog_cc_pic" 1>&6
  2530.   # Check to make sure the pic_flag actually works.
  2531.   echo $ac_n "checking if $compiler PIC flag $lt_cv_prog_cc_pic works""... $ac_c" 1>&6
  2532. echo "configure:2813: checking if $compiler PIC flag $lt_cv_prog_cc_pic works" >&5
  2533.   if eval "test "`echo '$''{'lt_cv_prog_cc_pic_works'+set}'`" = set"; then
  2534.   echo $ac_n "(cached) $ac_c" 1>&6
  2535. else
  2536.       save_CFLAGS="$CFLAGS"
  2537.     CFLAGS="$CFLAGS $lt_cv_prog_cc_pic -DPIC"
  2538.     cat > conftest.$ac_ext <<EOF
  2539. #line 2820 "configure"
  2540. #include "confdefs.h"
  2541. int main() {
  2542. ; return 0; }
  2543. EOF
  2544. if { (eval echo configure:2827: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  2545.   rm -rf conftest*
  2546.         case $host_os in
  2547.       hpux9* | hpux10* | hpux11*)
  2548. # On HP-UX, both CC and GCC only warn that PIC is supported... then
  2549. # they create non-PIC objects.  So, if there were any warnings, we
  2550. # assume that PIC is not supported.
  2551. if test -s conftest.err; then
  2552.   lt_cv_prog_cc_pic_works=no
  2553. else
  2554.   lt_cv_prog_cc_pic_works=yes
  2555. fi
  2556. ;;
  2557.       *)
  2558. lt_cv_prog_cc_pic_works=yes
  2559. ;;
  2560.       esac
  2561.     
  2562. else
  2563.   echo "configure: failed program was:" >&5
  2564.   cat conftest.$ac_ext >&5
  2565.   rm -rf conftest*
  2566.         lt_cv_prog_cc_pic_works=no
  2567.     
  2568. fi
  2569. rm -f conftest*
  2570.     CFLAGS="$save_CFLAGS"
  2571.   
  2572. fi
  2573.   if test "X$lt_cv_prog_cc_pic_works" = Xno; then
  2574.     lt_cv_prog_cc_pic=
  2575.     lt_cv_prog_cc_can_build_shared=no
  2576.   else
  2577.     lt_cv_prog_cc_pic=" $lt_cv_prog_cc_pic"
  2578.   fi
  2579.   echo "$ac_t""$lt_cv_prog_cc_pic_works" 1>&6
  2580. fi
  2581. # Check for any special shared library compilation flags.
  2582. if test -n "$lt_cv_prog_cc_shlib"; then
  2583.   echo "configure: warning: `$CC' requires `$lt_cv_prog_cc_shlib' to build shared libraries" 1>&2
  2584.   if echo "$old_CC $old_CFLAGS " | egrep -e "[  ]$lt_cv_prog_cc_shlib[  ]" >/dev/null; then :
  2585.   else
  2586.    echo "configure: warning: add `$lt_cv_prog_cc_shlib' to the CC or CFLAGS env variable and reconfigure" 1>&2
  2587.     lt_cv_prog_cc_can_build_shared=no
  2588.   fi
  2589. fi
  2590. echo $ac_n "checking if $compiler static flag $lt_cv_prog_cc_static works""... $ac_c" 1>&6
  2591. echo "configure:2879: checking if $compiler static flag $lt_cv_prog_cc_static works" >&5
  2592. if eval "test "`echo '$''{'lt_cv_prog_cc_static_works'+set}'`" = set"; then
  2593.   echo $ac_n "(cached) $ac_c" 1>&6
  2594. else
  2595.     lt_cv_prog_cc_static_works=no
  2596.   save_LDFLAGS="$LDFLAGS"
  2597.   LDFLAGS="$LDFLAGS $lt_cv_prog_cc_static"
  2598.   cat > conftest.$ac_ext <<EOF
  2599. #line 2887 "configure"
  2600. #include "confdefs.h"
  2601. int main() {
  2602. ; return 0; }
  2603. EOF
  2604. if { (eval echo configure:2894: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  2605.   rm -rf conftest*
  2606.   lt_cv_prog_cc_static_works=yes
  2607. else
  2608.   echo "configure: failed program was:" >&5
  2609.   cat conftest.$ac_ext >&5
  2610. fi
  2611. rm -f conftest*
  2612.   LDFLAGS="$save_LDFLAGS"
  2613. fi
  2614. # Belt *and* braces to stop my trousers falling down:
  2615. test "X$lt_cv_prog_cc_static_works" = Xno && lt_cv_prog_cc_static=
  2616. echo "$ac_t""$lt_cv_prog_cc_static_works" 1>&6
  2617. pic_flag="$lt_cv_prog_cc_pic"
  2618. special_shlib_compile_flags="$lt_cv_prog_cc_shlib"
  2619. wl="$lt_cv_prog_cc_wl"
  2620. link_static_flag="$lt_cv_prog_cc_static"
  2621. no_builtin_flag="$lt_cv_prog_cc_no_builtin"
  2622. can_build_shared="$lt_cv_prog_cc_can_build_shared"
  2623. # Check to see if options -o and -c are simultaneously supported by compiler
  2624. echo $ac_n "checking if $compiler supports -c -o file.$ac_objext""... $ac_c" 1>&6
  2625. echo "configure:2921: checking if $compiler supports -c -o file.$ac_objext" >&5
  2626. if eval "test "`echo '$''{'lt_cv_compiler_c_o'+set}'`" = set"; then
  2627.   echo $ac_n "(cached) $ac_c" 1>&6
  2628. else
  2629.   
  2630. $rm -r conftest 2>/dev/null
  2631. mkdir conftest
  2632. cd conftest
  2633. echo "int some_variable = 0;" > conftest.$ac_ext
  2634. mkdir out
  2635. # According to Tom Tromey, Ian Lance Taylor reported there are C compilers
  2636. # that will create temporary files in the current directory regardless of
  2637. # the output directory.  Thus, making CWD read-only will cause this test
  2638. # to fail, enabling locking or at least warning the user not to do parallel
  2639. # builds.
  2640. chmod -w .
  2641. save_CFLAGS="$CFLAGS"
  2642. CFLAGS="$CFLAGS -o out/conftest2.$ac_objext"
  2643. compiler_c_o=no
  2644. if { (eval echo configure:2940: "$ac_compile") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
  2645.   # The compiler can only warn and ignore the option if not recognized
  2646.   # So say no if there are warnings
  2647.   if test -s out/conftest.err; then
  2648.     lt_cv_compiler_c_o=no
  2649.   else
  2650.     lt_cv_compiler_c_o=yes
  2651.   fi
  2652. else
  2653.   # Append any errors to the config.log.
  2654.   cat out/conftest.err 1>&5
  2655.   lt_cv_compiler_c_o=no
  2656. fi
  2657. CFLAGS="$save_CFLAGS"
  2658. chmod u+w .
  2659. $rm conftest* out/*
  2660. rmdir out
  2661. cd ..
  2662. rmdir conftest
  2663. $rm -r conftest 2>/dev/null
  2664. fi
  2665. compiler_c_o=$lt_cv_compiler_c_o
  2666. echo "$ac_t""$compiler_c_o" 1>&6
  2667. if test x"$compiler_c_o" = x"yes"; then
  2668.   # Check to see if we can write to a .lo
  2669.   echo $ac_n "checking if $compiler supports -c -o file.lo""... $ac_c" 1>&6
  2670. echo "configure:2969: checking if $compiler supports -c -o file.lo" >&5
  2671.   if eval "test "`echo '$''{'lt_cv_compiler_o_lo'+set}'`" = set"; then
  2672.   echo $ac_n "(cached) $ac_c" 1>&6
  2673. else
  2674.   
  2675.   lt_cv_compiler_o_lo=no
  2676.   save_CFLAGS="$CFLAGS"
  2677.   CFLAGS="$CFLAGS -c -o conftest.lo"
  2678.   save_objext="$ac_objext"
  2679.   ac_objext=lo
  2680.   cat > conftest.$ac_ext <<EOF
  2681. #line 2980 "configure"
  2682. #include "confdefs.h"
  2683. int main() {
  2684. int some_variable = 0;
  2685. ; return 0; }
  2686. EOF
  2687. if { (eval echo configure:2987: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  2688.   rm -rf conftest*
  2689.       # The compiler can only warn and ignore the option if not recognized
  2690.     # So say no if there are warnings
  2691.     if test -s conftest.err; then
  2692.       lt_cv_compiler_o_lo=no
  2693.     else
  2694.       lt_cv_compiler_o_lo=yes
  2695.     fi
  2696.   
  2697. else
  2698.   echo "configure: failed program was:" >&5
  2699.   cat conftest.$ac_ext >&5
  2700. fi
  2701. rm -f conftest*
  2702.   ac_objext="$save_objext"
  2703.   CFLAGS="$save_CFLAGS"
  2704.   
  2705. fi
  2706.   compiler_o_lo=$lt_cv_compiler_o_lo
  2707.   echo "$ac_t""$compiler_o_lo" 1>&6
  2708. else
  2709.   compiler_o_lo=no
  2710. fi
  2711. # Check to see if we can do hard links to lock some files if needed
  2712. hard_links="nottested"
  2713. if test "$compiler_c_o" = no && test "$need_locks" != no; then
  2714.   # do not overwrite the value of need_locks provided by the user
  2715.   echo $ac_n "checking if we can lock with hard links""... $ac_c" 1>&6
  2716. echo "configure:3018: checking if we can lock with hard links" >&5
  2717.   hard_links=yes
  2718.   $rm conftest*
  2719.   ln conftest.a conftest.b 2>/dev/null && hard_links=no
  2720.   touch conftest.a
  2721.   ln conftest.a conftest.b 2>&5 || hard_links=no
  2722.   ln conftest.a conftest.b 2>/dev/null && hard_links=no
  2723.   echo "$ac_t""$hard_links" 1>&6
  2724.   if test "$hard_links" = no; then
  2725.     echo "configure: warning: `$CC' does not support `-c -o', so `make -j' may be unsafe" 1>&2
  2726.     need_locks=warn
  2727.   fi
  2728. else
  2729.   need_locks=no
  2730. fi
  2731. if test "$GCC" = yes; then
  2732.   # Check to see if options -fno-rtti -fno-exceptions are supported by compiler
  2733.   echo $ac_n "checking if $compiler supports -fno-rtti -fno-exceptions""... $ac_c" 1>&6
  2734. echo "configure:3037: checking if $compiler supports -fno-rtti -fno-exceptions" >&5
  2735.   echo "int some_variable = 0;" > conftest.$ac_ext
  2736.   save_CFLAGS="$CFLAGS"
  2737.   CFLAGS="$CFLAGS -fno-rtti -fno-exceptions -c conftest.$ac_ext"
  2738.   compiler_rtti_exceptions=no
  2739.   cat > conftest.$ac_ext <<EOF
  2740. #line 3043 "configure"
  2741. #include "confdefs.h"
  2742. int main() {
  2743. int some_variable = 0;
  2744. ; return 0; }
  2745. EOF
  2746. if { (eval echo configure:3050: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  2747.   rm -rf conftest*
  2748.       # The compiler can only warn and ignore the option if not recognized
  2749.     # So say no if there are warnings
  2750.     if test -s conftest.err; then
  2751.       compiler_rtti_exceptions=no
  2752.     else
  2753.       compiler_rtti_exceptions=yes
  2754.     fi
  2755.   
  2756. else
  2757.   echo "configure: failed program was:" >&5
  2758.   cat conftest.$ac_ext >&5
  2759. fi
  2760. rm -f conftest*
  2761.   CFLAGS="$save_CFLAGS"
  2762.   echo "$ac_t""$compiler_rtti_exceptions" 1>&6
  2763.   if test "$compiler_rtti_exceptions" = "yes"; then
  2764.     no_builtin_flag=' -fno-builtin -fno-rtti -fno-exceptions'
  2765.   else
  2766.     no_builtin_flag=' -fno-builtin'
  2767.   fi
  2768. fi
  2769. # See if the linker supports building shared libraries.
  2770. echo $ac_n "checking whether the linker ($LD) supports shared libraries""... $ac_c" 1>&6
  2771. echo "configure:3077: checking whether the linker ($LD) supports shared libraries" >&5
  2772. allow_undefined_flag=
  2773. no_undefined_flag=
  2774. need_lib_prefix=unknown
  2775. need_version=unknown
  2776. # when you set need_version to no, make sure it does not cause -set_version
  2777. # flags to be left without arguments
  2778. archive_cmds=
  2779. archive_expsym_cmds=
  2780. old_archive_from_new_cmds=
  2781. old_archive_from_expsyms_cmds=
  2782. export_dynamic_flag_spec=
  2783. whole_archive_flag_spec=
  2784. thread_safe_flag_spec=
  2785. hardcode_into_libs=no
  2786. hardcode_libdir_flag_spec=
  2787. hardcode_libdir_separator=
  2788. hardcode_direct=no
  2789. hardcode_minus_L=no
  2790. hardcode_shlibpath_var=unsupported
  2791. runpath_var=
  2792. link_all_deplibs=unknown
  2793. always_export_symbols=no
  2794. export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | sed '''s/.* //''' | sort | uniq > $export_symbols'
  2795. # include_expsyms should be a list of space-separated symbols to be *always*
  2796. # included in the symbol list
  2797. include_expsyms=
  2798. # exclude_expsyms can be an egrep regular expression of symbols to exclude
  2799. # it will be wrapped by ` (' and `)$', so one must not match beginning or
  2800. # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
  2801. # as well as any symbol that contains `d'.
  2802. exclude_expsyms="_GLOBAL_OFFSET_TABLE_"
  2803. # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
  2804. # platforms (ab)use it in PIC code, but their linkers get confused if
  2805. # the symbol is explicitly referenced.  Since portable code cannot
  2806. # rely on this symbol name, it's probably fine to never include it in
  2807. # preloaded symbol tables.
  2808. extract_expsyms_cmds=
  2809. case $host_os in
  2810. cygwin* | mingw* | pw32*)
  2811.   # FIXME: the MSVC++ port hasn't been tested in a loooong time
  2812.   # When not using gcc, we currently assume that we are using
  2813.   # Microsoft Visual C++.
  2814.   if test "$GCC" != yes; then
  2815.     with_gnu_ld=no
  2816.   fi
  2817.   ;;
  2818. openbsd*)
  2819.   with_gnu_ld=no
  2820.   ;;
  2821. esac
  2822. ld_shlibs=yes
  2823. if test "$with_gnu_ld" = yes; then
  2824.   # If archive_cmds runs LD, not CC, wlarc should be empty
  2825.   wlarc='${wl}'
  2826.   # See if GNU ld supports shared libraries.
  2827.   case $host_os in
  2828.   aix3* | aix4* | aix5*)
  2829.     # On AIX, the GNU linker is very broken
  2830.     # Note:Check GNU linker on AIX 5-IA64 when/if it becomes available.
  2831.     ld_shlibs=no
  2832.     cat <<EOF 1>&2
  2833. *** Warning: the GNU linker, at least up to release 2.9.1, is reported
  2834. *** to be unable to reliably create shared libraries on AIX.
  2835. *** Therefore, libtool is disabling shared libraries support.  If you
  2836. *** really care for shared libraries, you may want to modify your PATH
  2837. *** so that a non-GNU linker is found, and then restart.
  2838. EOF
  2839.     ;;
  2840.   amigaos*)
  2841.     archive_cmds='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
  2842.     hardcode_libdir_flag_spec='-L$libdir'
  2843.     hardcode_minus_L=yes
  2844.     # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
  2845.     # that the semantics of dynamic libraries on AmigaOS, at least up
  2846.     # to version 4, is to share data among multiple programs linked
  2847.     # with the same dynamic library.  Since this doesn't match the
  2848.     # behavior of shared libraries on other platforms, we can use
  2849.     # them.
  2850.     ld_shlibs=no
  2851.     ;;
  2852.   beos*)
  2853.     if $LD --help 2>&1 | egrep ': supported targets:.* elf' > /dev/null; then
  2854.       allow_undefined_flag=unsupported
  2855.       # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
  2856.       # support --undefined.  This deserves some investigation.  FIXME
  2857.       archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  2858.     else
  2859.       ld_shlibs=no
  2860.     fi
  2861.     ;;
  2862.   cygwin* | mingw* | pw32*)
  2863.     # hardcode_libdir_flag_spec is actually meaningless, as there is
  2864.     # no search path for DLLs.
  2865.     hardcode_libdir_flag_spec='-L$libdir'
  2866.     allow_undefined_flag=unsupported
  2867.     always_export_symbols=yes
  2868.     extract_expsyms_cmds='test -f $output_objdir/impgen.c || 
  2869.       sed -e "/^# /* impgen.c starts here *//,/^# /* impgen.c ends here *// { s/^# //;s/^# *$//; p; }" -e d < $''0 > $output_objdir/impgen.c~
  2870.       test -f $output_objdir/impgen.exe || (cd $output_objdir && 
  2871.       if test "x$HOST_CC" != "x" ; then $HOST_CC -o impgen impgen.c ; 
  2872.       else $CC -o impgen impgen.c ; fi)~
  2873.       $output_objdir/impgen $dir/$soroot > $output_objdir/$soname-def'
  2874.     old_archive_from_expsyms_cmds='$DLLTOOL --as=$AS --dllname $soname --def $output_objdir/$soname-def --output-lib $output_objdir/$newlib'
  2875.     # cygwin and mingw dlls have different entry points and sets of symbols
  2876.     # to exclude.
  2877.     # FIXME: what about values for MSVC?
  2878.     dll_entry=__cygwin_dll_entry@12
  2879.     dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12~
  2880.     case $host_os in
  2881.     mingw*)
  2882.       # mingw values
  2883.       dll_entry=_DllMainCRTStartup@12
  2884.       dll_exclude_symbols=DllMain@12,DllMainCRTStartup@12,DllEntryPoint@12~
  2885.       ;;
  2886.     esac
  2887.     # mingw and cygwin differ, and it's simplest to just exclude the union
  2888.     # of the two symbol sets.
  2889.     dll_exclude_symbols=DllMain@12,_cygwin_dll_entry@12,_cygwin_noncygwin_dll_entry@12,DllMainCRTStartup@12,DllEntryPoint@12
  2890.     # recent cygwin and mingw systems supply a stub DllMain which the user
  2891.     # can override, but on older systems we have to supply one (in ltdll.c)
  2892.     if test "x$lt_cv_need_dllmain" = "xyes"; then
  2893.       ltdll_obj='$output_objdir/$soname-ltdll.'"$ac_objext "
  2894.       ltdll_cmds='test -f $output_objdir/$soname-ltdll.c || sed -e "/^# /* ltdll.c starts here *//,/^# /* ltdll.c ends here *// { s/^# //; p; }" -e d < $''0 > $output_objdir/$soname-ltdll.c~