| 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-multilib build hella library versions (default)"
|
|---|
| 16 | ac_help="$ac_help
|
|---|
| 17 | --with-target-subdir=SUBDIR
|
|---|
| 18 | configuring in a subdirectory"
|
|---|
| 19 | ac_help="$ac_help
|
|---|
| 20 | --with-cross-host=HOST configuring with a cross compiler"
|
|---|
| 21 | ac_help="$ac_help
|
|---|
| 22 | --enable-version-specific-runtime-libs Specify that runtime libraries should be installed in a compiler-specific directory "
|
|---|
| 23 | ac_help="$ac_help
|
|---|
| 24 | --enable-shared[=PKGS] build shared libraries [default=yes]"
|
|---|
| 25 | ac_help="$ac_help
|
|---|
| 26 | --enable-static[=PKGS] build static libraries [default=yes]"
|
|---|
| 27 | ac_help="$ac_help
|
|---|
| 28 | --enable-fast-install[=PKGS] optimize for fast installation [default=yes]"
|
|---|
| 29 | ac_help="$ac_help
|
|---|
| 30 | --with-gnu-ld assume the C compiler uses GNU ld [default=no]"
|
|---|
| 31 | ac_help="$ac_help
|
|---|
| 32 | --disable-libtool-lock avoid locking (might break parallel builds)"
|
|---|
| 33 | ac_help="$ac_help
|
|---|
| 34 | --with-pic try to use only PIC/non-PIC objects [default=use both]"
|
|---|
| 35 |
|
|---|
| 36 | # Initialize some variables set by options.
|
|---|
| 37 | # The variables have the same names as the options, with
|
|---|
| 38 | # dashes changed to underlines.
|
|---|
| 39 | build=NONE
|
|---|
| 40 | cache_file=./config.cache
|
|---|
| 41 | exec_prefix=NONE
|
|---|
| 42 | host=NONE
|
|---|
| 43 | no_create=
|
|---|
| 44 | nonopt=NONE
|
|---|
| 45 | no_recursion=
|
|---|
| 46 | prefix=NONE
|
|---|
| 47 | program_prefix=NONE
|
|---|
| 48 | program_suffix=NONE
|
|---|
| 49 | program_transform_name=s,x,x,
|
|---|
| 50 | silent=
|
|---|
| 51 | site=
|
|---|
| 52 | srcdir=
|
|---|
| 53 | target=NONE
|
|---|
| 54 | verbose=
|
|---|
| 55 | x_includes=NONE
|
|---|
| 56 | x_libraries=NONE
|
|---|
| 57 | bindir='${exec_prefix}/bin'
|
|---|
| 58 | sbindir='${exec_prefix}/sbin'
|
|---|
| 59 | libexecdir='${exec_prefix}/libexec'
|
|---|
| 60 | datadir='${prefix}/share'
|
|---|
| 61 | sysconfdir='${prefix}/etc'
|
|---|
| 62 | sharedstatedir='${prefix}/com'
|
|---|
| 63 | localstatedir='${prefix}/var'
|
|---|
| 64 | libdir='${exec_prefix}/lib'
|
|---|
| 65 | includedir='${prefix}/include'
|
|---|
| 66 | oldincludedir='/usr/include'
|
|---|
| 67 | infodir='${prefix}/info'
|
|---|
| 68 | mandir='${prefix}/man'
|
|---|
| 69 |
|
|---|
| 70 | # Initialize some other variables.
|
|---|
| 71 | subdirs=
|
|---|
| 72 | MFLAGS= MAKEFLAGS=
|
|---|
| 73 | SHELL=${CONFIG_SHELL-/bin/sh}
|
|---|
| 74 | # Maximum number of lines to put in a shell here document.
|
|---|
| 75 | ac_max_here_lines=12
|
|---|
| 76 |
|
|---|
| 77 | ac_prev=
|
|---|
| 78 | for ac_option
|
|---|
| 79 | do
|
|---|
| 80 |
|
|---|
| 81 | # If the previous option needs an argument, assign it.
|
|---|
| 82 | if test -n "$ac_prev"; then
|
|---|
| 83 | eval "$ac_prev=\$ac_option"
|
|---|
| 84 | ac_prev=
|
|---|
| 85 | continue
|
|---|
| 86 | fi
|
|---|
| 87 |
|
|---|
| 88 | case "$ac_option" in
|
|---|
| 89 | -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
|
|---|
| 90 | *) ac_optarg= ;;
|
|---|
| 91 | esac
|
|---|
| 92 |
|
|---|
| 93 | # Accept the important Cygnus configure options, so we can diagnose typos.
|
|---|
| 94 |
|
|---|
| 95 | case "$ac_option" in
|
|---|
| 96 |
|
|---|
| 97 | -bindir | --bindir | --bindi | --bind | --bin | --bi)
|
|---|
| 98 | ac_prev=bindir ;;
|
|---|
| 99 | -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
|
|---|
| 100 | bindir="$ac_optarg" ;;
|
|---|
| 101 |
|
|---|
| 102 | -build | --build | --buil | --bui | --bu)
|
|---|
| 103 | ac_prev=build ;;
|
|---|
| 104 | -build=* | --build=* | --buil=* | --bui=* | --bu=*)
|
|---|
| 105 | build="$ac_optarg" ;;
|
|---|
| 106 |
|
|---|
| 107 | -cache-file | --cache-file | --cache-fil | --cache-fi \
|
|---|
| 108 | | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
|
|---|
| 109 | ac_prev=cache_file ;;
|
|---|
| 110 | -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
|
|---|
| 111 | | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
|
|---|
| 112 | cache_file="$ac_optarg" ;;
|
|---|
| 113 |
|
|---|
| 114 | -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
|
|---|
| 115 | ac_prev=datadir ;;
|
|---|
| 116 | -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
|
|---|
| 117 | | --da=*)
|
|---|
| 118 | datadir="$ac_optarg" ;;
|
|---|
| 119 |
|
|---|
| 120 | -disable-* | --disable-*)
|
|---|
| 121 | ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
|
|---|
| 122 | # Reject names that are not valid shell variable names.
|
|---|
| 123 | if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
|
|---|
| 124 | { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
|
|---|
| 125 | fi
|
|---|
| 126 | ac_feature=`echo $ac_feature| sed 's/-/_/g'`
|
|---|
| 127 | eval "enable_${ac_feature}=no" ;;
|
|---|
| 128 |
|
|---|
| 129 | -enable-* | --enable-*)
|
|---|
| 130 | ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
|
|---|
| 131 | # Reject names that are not valid shell variable names.
|
|---|
| 132 | if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
|
|---|
| 133 | { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
|
|---|
| 134 | fi
|
|---|
| 135 | ac_feature=`echo $ac_feature| sed 's/-/_/g'`
|
|---|
| 136 | case "$ac_option" in
|
|---|
| 137 | *=*) ;;
|
|---|
| 138 | *) ac_optarg=yes ;;
|
|---|
| 139 | esac
|
|---|
| 140 | eval "enable_${ac_feature}='$ac_optarg'" ;;
|
|---|
| 141 |
|
|---|
| 142 | -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
|
|---|
| 143 | | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
|
|---|
| 144 | | --exec | --exe | --ex)
|
|---|
| 145 | ac_prev=exec_prefix ;;
|
|---|
| 146 | -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
|
|---|
| 147 | | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
|
|---|
| 148 | | --exec=* | --exe=* | --ex=*)
|
|---|
| 149 | exec_prefix="$ac_optarg" ;;
|
|---|
| 150 |
|
|---|
| 151 | -gas | --gas | --ga | --g)
|
|---|
| 152 | # Obsolete; use --with-gas.
|
|---|
| 153 | with_gas=yes ;;
|
|---|
| 154 |
|
|---|
| 155 | -help | --help | --hel | --he)
|
|---|
| 156 | # Omit some internal or obsolete options to make the list less imposing.
|
|---|
| 157 | # This message is too long to be a string in the A/UX 3.1 sh.
|
|---|
| 158 | cat << EOF
|
|---|
| 159 | Usage: configure [options] [host]
|
|---|
| 160 | Options: [defaults in brackets after descriptions]
|
|---|
| 161 | Configuration:
|
|---|
| 162 | --cache-file=FILE cache test results in FILE
|
|---|
| 163 | --help print this message
|
|---|
| 164 | --no-create do not create output files
|
|---|
| 165 | --quiet, --silent do not print \`checking...' messages
|
|---|
| 166 | --version print the version of autoconf that created configure
|
|---|
| 167 | Directory and file names:
|
|---|
| 168 | --prefix=PREFIX install architecture-independent files in PREFIX
|
|---|
| 169 | [$ac_default_prefix]
|
|---|
| 170 | --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
|
|---|
| 171 | [same as prefix]
|
|---|
| 172 | --bindir=DIR user executables in DIR [EPREFIX/bin]
|
|---|
| 173 | --sbindir=DIR system admin executables in DIR [EPREFIX/sbin]
|
|---|
| 174 | --libexecdir=DIR program executables in DIR [EPREFIX/libexec]
|
|---|
| 175 | --datadir=DIR read-only architecture-independent data in DIR
|
|---|
| 176 | [PREFIX/share]
|
|---|
| 177 | --sysconfdir=DIR read-only single-machine data in DIR [PREFIX/etc]
|
|---|
| 178 | --sharedstatedir=DIR modifiable architecture-independent data in DIR
|
|---|
| 179 | [PREFIX/com]
|
|---|
| 180 | --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var]
|
|---|
| 181 | --libdir=DIR object code libraries in DIR [EPREFIX/lib]
|
|---|
| 182 | --includedir=DIR C header files in DIR [PREFIX/include]
|
|---|
| 183 | --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include]
|
|---|
| 184 | --infodir=DIR info documentation in DIR [PREFIX/info]
|
|---|
| 185 | --mandir=DIR man documentation in DIR [PREFIX/man]
|
|---|
| 186 | --srcdir=DIR find the sources in DIR [configure dir or ..]
|
|---|
| 187 | --program-prefix=PREFIX prepend PREFIX to installed program names
|
|---|
| 188 | --program-suffix=SUFFIX append SUFFIX to installed program names
|
|---|
| 189 | --program-transform-name=PROGRAM
|
|---|
| 190 | run sed PROGRAM on installed program names
|
|---|
| 191 | EOF
|
|---|
| 192 | cat << EOF
|
|---|
| 193 | Host type:
|
|---|
| 194 | --build=BUILD configure for building on BUILD [BUILD=HOST]
|
|---|
| 195 | --host=HOST configure for HOST [guessed]
|
|---|
| 196 | --target=TARGET configure for TARGET [TARGET=HOST]
|
|---|
| 197 | Features and packages:
|
|---|
| 198 | --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
|
|---|
| 199 | --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
|---|
| 200 | --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
|---|
| 201 | --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
|
|---|
| 202 | --x-includes=DIR X include files are in DIR
|
|---|
| 203 | --x-libraries=DIR X library files are in DIR
|
|---|
| 204 | EOF
|
|---|
| 205 | if test -n "$ac_help"; then
|
|---|
| 206 | echo "--enable and --with options recognized:$ac_help"
|
|---|
| 207 | fi
|
|---|
| 208 | exit 0 ;;
|
|---|
| 209 |
|
|---|
| 210 | -host | --host | --hos | --ho)
|
|---|
| 211 | ac_prev=host ;;
|
|---|
| 212 | -host=* | --host=* | --hos=* | --ho=*)
|
|---|
| 213 | host="$ac_optarg" ;;
|
|---|
| 214 |
|
|---|
| 215 | -includedir | --includedir | --includedi | --included | --include \
|
|---|
| 216 | | --includ | --inclu | --incl | --inc)
|
|---|
| 217 | ac_prev=includedir ;;
|
|---|
| 218 | -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
|
|---|
| 219 | | --includ=* | --inclu=* | --incl=* | --inc=*)
|
|---|
| 220 | includedir="$ac_optarg" ;;
|
|---|
| 221 |
|
|---|
| 222 | -infodir | --infodir | --infodi | --infod | --info | --inf)
|
|---|
| 223 | ac_prev=infodir ;;
|
|---|
| 224 | -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
|
|---|
| 225 | infodir="$ac_optarg" ;;
|
|---|
| 226 |
|
|---|
| 227 | -libdir | --libdir | --libdi | --libd)
|
|---|
| 228 | ac_prev=libdir ;;
|
|---|
| 229 | -libdir=* | --libdir=* | --libdi=* | --libd=*)
|
|---|
| 230 | libdir="$ac_optarg" ;;
|
|---|
| 231 |
|
|---|
| 232 | -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
|
|---|
| 233 | | --libexe | --libex | --libe)
|
|---|
| 234 | ac_prev=libexecdir ;;
|
|---|
| 235 | -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
|
|---|
| 236 | | --libexe=* | --libex=* | --libe=*)
|
|---|
| 237 | libexecdir="$ac_optarg" ;;
|
|---|
| 238 |
|
|---|
| 239 | -localstatedir | --localstatedir | --localstatedi | --localstated \
|
|---|
| 240 | | --localstate | --localstat | --localsta | --localst \
|
|---|
| 241 | | --locals | --local | --loca | --loc | --lo)
|
|---|
| 242 | ac_prev=localstatedir ;;
|
|---|
| 243 | -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
|
|---|
| 244 | | --localstate=* | --localstat=* | --localsta=* | --localst=* \
|
|---|
| 245 | | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
|
|---|
| 246 | localstatedir="$ac_optarg" ;;
|
|---|
| 247 |
|
|---|
| 248 | -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
|
|---|
| 249 | ac_prev=mandir ;;
|
|---|
| 250 | -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
|
|---|
| 251 | mandir="$ac_optarg" ;;
|
|---|
| 252 |
|
|---|
| 253 | -nfp | --nfp | --nf)
|
|---|
| 254 | # Obsolete; use --without-fp.
|
|---|
| 255 | with_fp=no ;;
|
|---|
| 256 |
|
|---|
| 257 | -no-create | --no-create | --no-creat | --no-crea | --no-cre \
|
|---|
| 258 | | --no-cr | --no-c)
|
|---|
| 259 | no_create=yes ;;
|
|---|
| 260 |
|
|---|
| 261 | -no-recursion | --no-recursion | --no-recursio | --no-recursi \
|
|---|
| 262 | | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
|
|---|
| 263 | no_recursion=yes ;;
|
|---|
| 264 |
|
|---|
| 265 | -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
|
|---|
| 266 | | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
|
|---|
| 267 | | --oldin | --oldi | --old | --ol | --o)
|
|---|
| 268 | ac_prev=oldincludedir ;;
|
|---|
| 269 | -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
|
|---|
| 270 | | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
|
|---|
| 271 | | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
|
|---|
| 272 | oldincludedir="$ac_optarg" ;;
|
|---|
| 273 |
|
|---|
| 274 | -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
|
|---|
| 275 | ac_prev=prefix ;;
|
|---|
| 276 | -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
|
|---|
| 277 | prefix="$ac_optarg" ;;
|
|---|
| 278 |
|
|---|
| 279 | -program-prefix | --program-prefix | --program-prefi | --program-pref \
|
|---|
| 280 | | --program-pre | --program-pr | --program-p)
|
|---|
| 281 | ac_prev=program_prefix ;;
|
|---|
| 282 | -program-prefix=* | --program-prefix=* | --program-prefi=* \
|
|---|
| 283 | | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
|
|---|
| 284 | program_prefix="$ac_optarg" ;;
|
|---|
| 285 |
|
|---|
| 286 | -program-suffix | --program-suffix | --program-suffi | --program-suff \
|
|---|
| 287 | | --program-suf | --program-su | --program-s)
|
|---|
| 288 | ac_prev=program_suffix ;;
|
|---|
| 289 | -program-suffix=* | --program-suffix=* | --program-suffi=* \
|
|---|
| 290 | | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
|
|---|
| 291 | program_suffix="$ac_optarg" ;;
|
|---|
| 292 |
|
|---|
| 293 | -program-transform-name | --program-transform-name \
|
|---|
| 294 | | --program-transform-nam | --program-transform-na \
|
|---|
| 295 | | --program-transform-n | --program-transform- \
|
|---|
| 296 | | --program-transform | --program-transfor \
|
|---|
| 297 | | --program-transfo | --program-transf \
|
|---|
| 298 | | --program-trans | --program-tran \
|
|---|
| 299 | | --progr-tra | --program-tr | --program-t)
|
|---|
| 300 | ac_prev=program_transform_name ;;
|
|---|
| 301 | -program-transform-name=* | --program-transform-name=* \
|
|---|
| 302 | | --program-transform-nam=* | --program-transform-na=* \
|
|---|
| 303 | | --program-transform-n=* | --program-transform-=* \
|
|---|
| 304 | | --program-transform=* | --program-transfor=* \
|
|---|
| 305 | | --program-transfo=* | --program-transf=* \
|
|---|
| 306 | | --program-trans=* | --program-tran=* \
|
|---|
| 307 | | --progr-tra=* | --program-tr=* | --program-t=*)
|
|---|
| 308 | program_transform_name="$ac_optarg" ;;
|
|---|
| 309 |
|
|---|
| 310 | -q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
|---|
| 311 | | -silent | --silent | --silen | --sile | --sil)
|
|---|
| 312 | silent=yes ;;
|
|---|
| 313 |
|
|---|
| 314 | -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
|
|---|
| 315 | ac_prev=sbindir ;;
|
|---|
| 316 | -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
|
|---|
| 317 | | --sbi=* | --sb=*)
|
|---|
| 318 | sbindir="$ac_optarg" ;;
|
|---|
| 319 |
|
|---|
| 320 | -sharedstatedir | --sharedstatedir | --sharedstatedi \
|
|---|
| 321 | | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
|
|---|
| 322 | | --sharedst | --shareds | --shared | --share | --shar \
|
|---|
|
|---|