| 1 | #! /bin/sh
|
|---|
| 2 |
|
|---|
| 3 | # Guess values for system-dependent variables and create Makefiles.
|
|---|
| 4 | # Generated automatically using autoconf version 2.13
|
|---|
| 5 | # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc.
|
|---|
| 6 | #
|
|---|
| 7 | # This configure script is free software; the Free Software Foundation
|
|---|
| 8 | # gives unlimited permission to copy, distribute and modify it.
|
|---|
| 9 |
|
|---|
| 10 | # Defaults:
|
|---|
| 11 | ac_help=
|
|---|
| 12 | ac_default_prefix=/usr/local
|
|---|
| 13 | # Any additions from configure.in:
|
|---|
| 14 | ac_help="$ac_help
|
|---|
| 15 | --enable-maintainer-mode enable make rules and dependencies not useful
|
|---|
| 16 | (and sometimes confusing) to the casual installer"
|
|---|
| 17 | ac_help="$ac_help
|
|---|
| 18 | --with-target-subdir=SUBDIR
|
|---|
| 19 | configuring in a subdirectory"
|
|---|
| 20 | ac_help="$ac_help
|
|---|
| 21 | --with-cross-host=HOST configuring with a cross compiler"
|
|---|
| 22 | ac_help="$ac_help
|
|---|
| 23 | --enable-multilib build many library versions (default)"
|
|---|
| 24 | ac_help="$ac_help
|
|---|
| 25 | --with-system-zlib use installed libz"
|
|---|
| 26 | ac_help="$ac_help
|
|---|
| 27 | --enable-shared[=PKGS] build shared libraries [default=yes]"
|
|---|
| 28 | ac_help="$ac_help
|
|---|
| 29 | --enable-static[=PKGS] build static libraries [default=yes]"
|
|---|
| 30 | ac_help="$ac_help
|
|---|
| 31 | --enable-fast-install[=PKGS] optimize for fast installation [default=yes]"
|
|---|
| 32 | ac_help="$ac_help
|
|---|
| 33 | --with-gnu-ld assume the C compiler uses GNU ld [default=no]"
|
|---|
| 34 | ac_help="$ac_help
|
|---|
| 35 | --disable-libtool-lock avoid locking (might break parallel builds)"
|
|---|
| 36 | ac_help="$ac_help
|
|---|
| 37 | --with-pic try to use only PIC/non-PIC objects [default=use both]"
|
|---|
| 38 |
|
|---|
| 39 | # Initialize some variables set by options.
|
|---|
| 40 | # The variables have the same names as the options, with
|
|---|
| 41 | # dashes changed to underlines.
|
|---|
| 42 | build=NONE
|
|---|
| 43 | cache_file=./config.cache
|
|---|
| 44 | exec_prefix=NONE
|
|---|
| 45 | host=NONE
|
|---|
| 46 | no_create=
|
|---|
| 47 | nonopt=NONE
|
|---|
| 48 | no_recursion=
|
|---|
| 49 | prefix=NONE
|
|---|
| 50 | program_prefix=NONE
|
|---|
| 51 | program_suffix=NONE
|
|---|
| 52 | program_transform_name=s,x,x,
|
|---|
| 53 | silent=
|
|---|
| 54 | site=
|
|---|
| 55 | srcdir=
|
|---|
| 56 | target=NONE
|
|---|
| 57 | verbose=
|
|---|
| 58 | x_includes=NONE
|
|---|
| 59 | x_libraries=NONE
|
|---|
| 60 | bindir='${exec_prefix}/bin'
|
|---|
| 61 | sbindir='${exec_prefix}/sbin'
|
|---|
| 62 | libexecdir='${exec_prefix}/libexec'
|
|---|
| 63 | datadir='${prefix}/share'
|
|---|
| 64 | sysconfdir='${prefix}/etc'
|
|---|
| 65 | sharedstatedir='${prefix}/com'
|
|---|
| 66 | localstatedir='${prefix}/var'
|
|---|
| 67 | libdir='${exec_prefix}/lib'
|
|---|
| 68 | includedir='${prefix}/include'
|
|---|
| 69 | oldincludedir='/usr/include'
|
|---|
| 70 | infodir='${prefix}/info'
|
|---|
| 71 | mandir='${prefix}/man'
|
|---|
| 72 |
|
|---|
| 73 | # Initialize some other variables.
|
|---|
| 74 | subdirs=
|
|---|
| 75 | MFLAGS= MAKEFLAGS=
|
|---|
| 76 | SHELL=${CONFIG_SHELL-/bin/sh}
|
|---|
| 77 | # Maximum number of lines to put in a shell here document.
|
|---|
| 78 | ac_max_here_lines=12
|
|---|
| 79 |
|
|---|
| 80 | ac_prev=
|
|---|
| 81 | for ac_option
|
|---|
| 82 | do
|
|---|
| 83 |
|
|---|
| 84 | # If the previous option needs an argument, assign it.
|
|---|
| 85 | if test -n "$ac_prev"; then
|
|---|
| 86 | eval "$ac_prev=\$ac_option"
|
|---|
| 87 | ac_prev=
|
|---|
| 88 | continue
|
|---|
| 89 | fi
|
|---|
| 90 |
|
|---|
| 91 | case "$ac_option" in
|
|---|
| 92 | -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
|
|---|
| 93 | *) ac_optarg= ;;
|
|---|
| 94 | esac
|
|---|
| 95 |
|
|---|
| 96 | # Accept the important Cygnus configure options, so we can diagnose typos.
|
|---|
| 97 |
|
|---|
| 98 | case "$ac_option" in
|
|---|
| 99 |
|
|---|
| 100 | -bindir | --bindir | --bindi | --bind | --bin | --bi)
|
|---|
| 101 | ac_prev=bindir ;;
|
|---|
| 102 | -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
|
|---|
| 103 | bindir="$ac_optarg" ;;
|
|---|
| 104 |
|
|---|
| 105 | -build | --build | --buil | --bui | --bu)
|
|---|
| 106 | ac_prev=build ;;
|
|---|
| 107 | -build=* | --build=* | --buil=* | --bui=* | --bu=*)
|
|---|
| 108 | build="$ac_optarg" ;;
|
|---|
| 109 |
|
|---|
| 110 | -cache-file | --cache-file | --cache-fil | --cache-fi \
|
|---|
| 111 | | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
|
|---|
| 112 | ac_prev=cache_file ;;
|
|---|
| 113 | -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
|
|---|
| 114 | | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
|
|---|
| 115 | cache_file="$ac_optarg" ;;
|
|---|
| 116 |
|
|---|
| 117 | -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
|
|---|
| 118 | ac_prev=datadir ;;
|
|---|
| 119 | -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
|
|---|
| 120 | | --da=*)
|
|---|
| 121 | datadir="$ac_optarg" ;;
|
|---|
| 122 |
|
|---|
| 123 | -disable-* | --disable-*)
|
|---|
| 124 | ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
|
|---|
|
|---|