| 1 | #! /bin/sh
|
|---|
| 2 | # Guess values for system-dependent variables and create Makefiles.
|
|---|
| 3 | # Generated by GNU Autoconf 2.59 for GNU Automake 1.7.9.
|
|---|
| 4 | #
|
|---|
| 5 | # Report bugs to <[email protected]>.
|
|---|
| 6 | #
|
|---|
| 7 | # Copyright (C) 2003 Free Software Foundation, Inc.
|
|---|
| 8 | # This configure script is free software; the Free Software Foundation
|
|---|
| 9 | # gives unlimited permission to copy, distribute and modify it.
|
|---|
| 10 | ## --------------------- ##
|
|---|
| 11 | ## M4sh Initialization. ##
|
|---|
| 12 | ## --------------------- ##
|
|---|
| 13 |
|
|---|
| 14 | # Be Bourne compatible
|
|---|
| 15 | if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
|---|
| 16 | emulate sh
|
|---|
| 17 | NULLCMD=:
|
|---|
| 18 | # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
|---|
| 19 | # is contrary to our usage. Disable this feature.
|
|---|
| 20 | alias -g '${1+"$@"}'='"$@"'
|
|---|
| 21 | elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
|
|---|
| 22 | set -o posix
|
|---|
| 23 | fi
|
|---|
| 24 | DUALCASE=1; export DUALCASE # for MKS sh
|
|---|
| 25 |
|
|---|
| 26 | # Support unset when possible.
|
|---|
| 27 | if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
|
|---|
| 28 | as_unset=unset
|
|---|
| 29 | else
|
|---|
| 30 | as_unset=false
|
|---|
| 31 | fi
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 | # Work around bugs in pre-3.0 UWIN ksh.
|
|---|
| 35 | $as_unset ENV MAIL MAILPATH
|
|---|
| 36 | PS1='$ '
|
|---|
| 37 | PS2='> '
|
|---|
| 38 | PS4='+ '
|
|---|
| 39 |
|
|---|
| 40 | # NLS nuisances.
|
|---|
| 41 | for as_var in \
|
|---|
| 42 | LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
|
|---|
| 43 | LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
|
|---|
| 44 | LC_TELEPHONE LC_TIME
|
|---|
| 45 | do
|
|---|
| 46 | if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
|
|---|
| 47 | eval $as_var=C; export $as_var
|
|---|
| 48 | else
|
|---|
| 49 | $as_unset $as_var
|
|---|
| 50 | fi
|
|---|
| 51 | done
|
|---|
| 52 |
|
|---|
| 53 | # Required to use basename.
|
|---|
| 54 | if expr a : '\(a\)' >/dev/null 2>&1; then
|
|---|
| 55 | as_expr=expr
|
|---|
| 56 | else
|
|---|
| 57 | as_expr=false
|
|---|
| 58 | fi
|
|---|
| 59 |
|
|---|
| 60 | if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
|
|---|
| 61 | as_basename=basename
|
|---|
| 62 | else
|
|---|
| 63 | as_basename=false
|
|---|
| 64 | fi
|
|---|
| 65 |
|
|---|
| 66 |
|
|---|
| 67 | # Name of the executable.
|
|---|
| 68 | as_me=`$as_basename "$0" ||
|
|---|
| 69 | $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
|
|---|
| 70 | X"$0" : 'X\(//\)$' \| \
|
|---|
| 71 | X"$0" : 'X\(/\)$' \| \
|
|---|
| 72 | . : '\(.\)' 2>/dev/null ||
|
|---|
| 73 | echo X/"$0" |
|
|---|
| 74 | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; }
|
|---|
| 75 | /^X\/\(\/\/\)$/{ s//\1/; q; }
|
|---|
| 76 | /^X\/\(\/\).*/{ s//\1/; q; }
|
|---|
| 77 | s/.*/./; q'`
|
|---|
| 78 |
|
|---|
| 79 |
|
|---|
| 80 | # PATH needs CR, and LINENO needs CR and PATH.
|
|---|
| 81 | # Avoid depending upon Character Ranges.
|
|---|
| 82 | as_cr_letters='abcdefghijklmnopqrstuvwxyz'
|
|---|
| 83 | as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
|
|---|
| 84 | as_cr_Letters=$as_cr_letters$as_cr_LETTERS
|
|---|
| 85 | as_cr_digits='0123456789'
|
|---|
| 86 | as_cr_alnum=$as_cr_Letters$as_cr_digits
|
|---|
| 87 |
|
|---|
| 88 | # The user is always right.
|
|---|
| 89 | if test "${PATH_SEPARATOR+set}" != set; then
|
|---|
| 90 | echo "#! /bin/sh" >conf$$.sh
|
|---|
| 91 | echo "exit 0" >>conf$$.sh
|
|---|
| 92 | chmod +x conf$$.sh
|
|---|
| 93 | if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
|
|---|
| 94 | PATH_SEPARATOR=';'
|
|---|
| 95 | else
|
|---|
| 96 | PATH_SEPARATOR=:
|
|---|
| 97 | fi
|
|---|
| 98 | rm -f conf$$.sh
|
|---|
| 99 | fi
|
|---|
| 100 |
|
|---|
| 101 |
|
|---|
| 102 | as_lineno_1=$LINENO
|
|---|
| 103 | as_lineno_2=$LINENO
|
|---|
| 104 | as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
|
|---|
| 105 | test "x$as_lineno_1" != "x$as_lineno_2" &&
|
|---|
| 106 | test "x$as_lineno_3" = "x$as_lineno_2" || {
|
|---|
| 107 | # Find who we are. Look in the path if we contain no path at all
|
|---|
| 108 | # relative or not.
|
|---|
| 109 | case $0 in
|
|---|
| 110 | *[\\/]* ) as_myself=$0 ;;
|
|---|
| 111 | *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
|---|
| 112 | for as_dir in $PATH
|
|---|
| 113 | do
|
|---|
| 114 | IFS=$as_save_IFS
|
|---|
| 115 | test -z "$as_dir" && as_dir=.
|
|---|
| 116 | test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
|
|---|
| 117 | done
|
|---|
| 118 |
|
|---|
| 119 | ;;
|
|---|
| 120 | esac
|
|---|
| 121 | # We did not find ourselves, most probably we were run as `sh COMMAND'
|
|---|
| 122 | # in which case we are not to be found in the path.
|
|---|
| 123 | if test "x$as_myself" = x; then
|
|---|
| 124 | as_myself=$0
|
|---|
| 125 | fi
|
|---|
| 126 | if test ! -f "$as_myself"; then
|
|---|
| 127 | { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2
|
|---|
| 128 | { (exit 1); exit 1; }; }
|
|---|
| 129 | fi
|
|---|
| 130 | case $CONFIG_SHELL in
|
|---|
| 131 | '')
|
|---|
| 132 | as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
|---|
| 133 | for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
|
|---|
| 134 | do
|
|---|
| 135 | IFS=$as_save_IFS
|
|---|
| 136 | test -z "$as_dir" && as_dir=.
|
|---|
| 137 | for as_base in sh bash ksh sh5; do
|
|---|
| 138 | case $as_dir in
|
|---|
| 139 | /*)
|
|---|
| 140 | if ("$as_dir/$as_base" -c '
|
|---|
| 141 | as_lineno_1=$LINENO
|
|---|
| 142 | as_lineno_2=$LINENO
|
|---|
| 143 | as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
|
|---|
| 144 | test "x$as_lineno_1" != "x$as_lineno_2" &&
|
|---|
| 145 | test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
|
|---|
| 146 | $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
|
|---|
| 147 | $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
|
|---|
| 148 | CONFIG_SHELL=$as_dir/$as_base
|
|---|
| 149 | export CONFIG_SHELL
|
|---|
| 150 | exec "$CONFIG_SHELL" "$0" ${1+"$@"}
|
|---|
| 151 | fi;;
|
|---|
| 152 | esac
|
|---|
| 153 | done
|
|---|
| 154 | done
|
|---|
| 155 | ;;
|
|---|
| 156 | esac
|
|---|
| 157 |
|
|---|
| 158 | # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
|
|---|
| 159 | # uniformly replaced by the line number. The first 'sed' inserts a
|
|---|
| 160 | # line-number line before each line; the second 'sed' does the real
|
|---|
| 161 | # work. The second script uses 'N' to pair each line-number line
|
|---|
| 162 | # with the numbered line, and appends trailing '-' during
|
|---|
| 163 | # substitution so that $LINENO is not a special case at line end.
|
|---|
| 164 | # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the
|
|---|
| 165 | # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-)
|
|---|
| 166 | sed '=' <$as_myself |
|
|---|
| 167 | sed '
|
|---|
| 168 | N
|
|---|
| 169 | s,$,-,
|
|---|
| 170 | : loop
|
|---|
| 171 | s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
|
|---|
| 172 | t loop
|
|---|
| 173 | s,-$,,
|
|---|
| 174 | s,^['$as_cr_digits']*\n,,
|
|---|
| 175 | ' >$as_me.lineno &&
|
|---|
| 176 | chmod +x $as_me.lineno ||
|
|---|
| 177 | { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
|
|---|
| 178 | { (exit 1); exit 1; }; }
|
|---|
| 179 |
|
|---|
| 180 | # Don't try to exec as it changes $[0], causing all sort of problems
|
|---|
| 181 | # (the dirname of $[0] is not the place where we might find the
|
|---|
| 182 | # original and so on. Autoconf is especially sensible to this).
|
|---|
| 183 | . ./$as_me.lineno
|
|---|
| 184 | # Exit status is that of the last command.
|
|---|
| 185 | exit
|
|---|
| 186 | }
|
|---|
| 187 |
|
|---|
| 188 |
|
|---|
| 189 | case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in
|
|---|
| 190 | *c*,-n*) ECHO_N= ECHO_C='
|
|---|
| 191 | ' ECHO_T=' ' ;;
|
|---|
| 192 | *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;;
|
|---|
| 193 | *) ECHO_N= ECHO_C='\c' ECHO_T= ;;
|
|---|
| 194 | esac
|
|---|
| 195 |
|
|---|
| 196 | if expr a : '\(a\)' >/dev/null 2>&1; then
|
|---|
| 197 | as_expr=expr
|
|---|
| 198 | else
|
|---|
| 199 | as_expr=false
|
|---|
| 200 | fi
|
|---|
| 201 |
|
|---|
| 202 | rm -f conf$$ conf$$.exe conf$$.file
|
|---|
| 203 | echo >conf$$.file
|
|---|
| 204 | if ln -s conf$$.file conf$$ 2>/dev/null; then
|
|---|
| 205 | # We could just check for DJGPP; but this test a) works b) is more generic
|
|---|
| 206 | # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04).
|
|---|
| 207 | if test -f conf$$.exe; then
|
|---|
| 208 | # Don't use ln at all; we don't have any links
|
|---|
| 209 | as_ln_s='cp -p'
|
|---|
| 210 | else
|
|---|
| 211 | as_ln_s='ln -s'
|
|---|
| 212 | fi
|
|---|
| 213 | elif ln conf$$.file conf$$ 2>/dev/null; then
|
|---|
| 214 | as_ln_s=ln
|
|---|
| 215 | else
|
|---|
| 216 | as_ln_s='cp -p'
|
|---|
| 217 | fi
|
|---|
| 218 | rm -f conf$$ conf$$.exe conf$$.file
|
|---|
| 219 |
|
|---|
| 220 | if mkdir -p . 2>/dev/null; then
|
|---|
| 221 | as_mkdir_p=:
|
|---|
| 222 | else
|
|---|
| 223 | test -d ./-p && rmdir ./-p
|
|---|
| 224 | as_mkdir_p=false
|
|---|
| 225 | fi
|
|---|
| 226 |
|
|---|
| 227 | as_executable_p="test -f"
|
|---|
| 228 |
|
|---|
| 229 | # Sed expression to map a string onto a valid CPP name.
|
|---|
| 230 | as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
|
|---|
| 231 |
|
|---|
| 232 | # Sed expression to map a string onto a valid variable name.
|
|---|
| 233 | as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
|
|---|
| 234 |
|
|---|
| 235 |
|
|---|
| 236 | # IFS
|
|---|
| 237 | # We need space, tab and new line, in precisely that order.
|
|---|
| 238 | as_nl='
|
|---|
| 239 | '
|
|---|
| 240 | IFS=" $as_nl"
|
|---|
| 241 |
|
|---|
| 242 | # CDPATH.
|
|---|
| 243 | $as_unset CDPATH
|
|---|
| 244 |
|
|---|
| 245 |
|
|---|
| 246 | # Name of the host.
|
|---|
| 247 | # hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
|
|---|
| 248 | # so uname gets run too.
|
|---|
| 249 | ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
|
|---|
| 250 |
|
|---|
| 251 | exec 6>&1
|
|---|
| 252 |
|
|---|
| 253 | #
|
|---|
| 254 | # Initializations.
|
|---|
| 255 | #
|
|---|
| 256 | ac_default_prefix=/usr/local
|
|---|
| 257 | ac_config_libobj_dir=.
|
|---|
| 258 | cross_compiling=no
|
|---|
| 259 | subdirs=
|
|---|
| 260 | MFLAGS=
|
|---|
| 261 | MAKEFLAGS=
|
|---|
| 262 | SHELL=${CONFIG_SHELL-/bin/sh}
|
|---|
| 263 |
|
|---|
| 264 | # Maximum number of lines to put in a shell here document.
|
|---|
| 265 | # This variable seems obsolete. It should probably be removed, and
|
|---|
| 266 | # only ac_max_sed_lines should be used.
|
|---|
| 267 | : ${ac_max_here_lines=38}
|
|---|
| 268 |
|
|---|
| 269 | # Identity of this package.
|
|---|
| 270 | PACKAGE_NAME='GNU Automake'
|
|---|
| 271 | PACKAGE_TARNAME='automake'
|
|---|
| 272 | PACKAGE_VERSION='1.7.9'
|
|---|
| 273 | PACKAGE_STRING='GNU Automake 1.7.9'
|
|---|
| 274 | PACKAGE_BUGREPORT='[email protected]'
|
|---|
| 275 |
|
|---|
| 276 | ac_unique_file="automake.in"
|
|---|
| 277 | ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM AWK SET_MAKE am__leading_dot APIVERSION pkgvdatadir PERL TEX LN EGREP FGREP LIBOBJS LTLIBOBJS'
|
|---|
| 278 | ac_subst_files=''
|
|---|
| 279 |
|
|---|
| 280 | # Initialize some variables set by options.
|
|---|
| 281 | ac_init_help=
|
|---|
| 282 | ac_init_version=false
|
|---|
| 283 | # The variables have the same names as the options, with
|
|---|
| 284 | # dashes changed to underlines.
|
|---|
| 285 | cache_file=/dev/null
|
|---|
| 286 | exec_prefix=NONE
|
|---|
| 287 | no_create=
|
|---|
| 288 | no_recursion=
|
|---|
| 289 | prefix=NONE
|
|---|
| 290 | program_prefix=NONE
|
|---|
| 291 | program_suffix=NONE
|
|---|
| 292 | program_transform_name=s,x,x,
|
|---|
| 293 | silent=
|
|---|
| 294 | site=
|
|---|
| 295 | srcdir=
|
|---|
| 296 | verbose=
|
|---|
| 297 | x_includes=NONE
|
|---|
| 298 | x_libraries=NONE
|
|---|
| 299 |
|
|---|
| 300 | # Installation directory options.
|
|---|
| 301 | # These are left unexpanded so users can "make install exec_prefix=/foo"
|
|---|
| 302 | # and all the variables that are supposed to be based on exec_prefix
|
|---|
| 303 | # by default will actually change.
|
|---|
| 304 | # Use braces instead of parens because sh, perl, etc. also accept them.
|
|---|
| 305 | bindir='${exec_prefix}/bin'
|
|---|
| 306 | sbindir='${exec_prefix}/sbin'
|
|---|
| 307 | libexecdir='${exec_prefix}/libexec'
|
|---|
| 308 | datadir='${prefix}/share'
|
|---|
| 309 | sysconfdir='${prefix}/etc'
|
|---|
| 310 | sharedstatedir='${prefix}/com'
|
|---|
| 311 | localstatedir='${prefix}/var'
|
|---|
| 312 | libdir='${exec_prefix}/lib'
|
|---|
| 313 | includedir='${prefix}/include'
|
|---|
| 314 | oldincludedir='/usr/include'
|
|---|
| 315 | infodir='${prefix}/info'
|
|---|
| 316 | mandir='${prefix}/man'
|
|---|
| 317 |
|
|---|
| 318 | ac_prev=
|
|---|
| 319 | for ac_option
|
|---|
| 320 | do
|
|---|
| 321 | # If the previous option needs an argument, assign it.
|
|---|
| 322 | if test -n "$ac_prev"; then
|
|---|
| 323 | eval "$ac_prev=\$ac_option"
|
|---|
| 324 | ac_prev=
|
|---|
| 325 | continue
|
|---|
| 326 | fi
|
|---|
| 327 |
|
|---|
| 328 | ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
|
|---|
| 329 |
|
|---|
| 330 | # Accept the important Cygnus configure options, so we can diagnose typos.
|
|---|
| 331 |
|
|---|
| 332 | case $ac_option in
|
|---|
| 333 |
|
|---|
| 334 | -bindir | --bindir | --bindi | --bind | --bin | --bi)
|
|---|
| 335 | ac_prev=bindir ;;
|
|---|
| 336 | -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
|
|---|
| 337 | bindir=$ac_optarg ;;
|
|---|
| 338 |
|
|---|
| 339 | -build | --build | --buil | --bui | --bu)
|
|---|
| 340 | ac_prev=build_alias ;;
|
|---|
| 341 | -build=* | --build=* | --buil=* | --bui=* | --bu=*)
|
|---|
| 342 | build_alias=$ac_optarg ;;
|
|---|
| 343 |
|
|---|
| 344 | -cache-file | --cache-file | --cache-fil | --cache-fi \
|
|---|
| 345 | | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
|
|---|
| 346 | ac_prev=cache_file ;;
|
|---|
| 347 | -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
|
|---|
| 348 | | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
|
|---|
| 349 | cache_file=$ac_optarg ;;
|
|---|
| 350 |
|
|---|
| 351 | --config-cache | -C)
|
|---|
| 352 | cache_file=config.cache ;;
|
|---|
| 353 |
|
|---|
| 354 | -datadir | --datadir | --datadi | --datad | --data | --dat | --da)
|
|---|
| 355 | ac_prev=datadir ;;
|
|---|
| 356 | -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \
|
|---|
| 357 | | --da=*)
|
|---|
| 358 | datadir=$ac_optarg ;;
|
|---|
| 359 |
|
|---|
| 360 | -disable-* | --disable-*)
|
|---|
| 361 | ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
|
|---|
| 362 | # Reject names that are not valid shell variable names.
|
|---|
| 363 | expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|---|
| 364 | { echo "$as_me: error: invalid feature name: $ac_feature" >&2
|
|---|
| 365 | { (exit 1); exit 1; }; }
|
|---|
| 366 | ac_feature=`echo $ac_feature | sed 's/-/_/g'`
|
|---|
| 367 | eval "enable_$ac_feature=no" ;;
|
|---|
| 368 |
|
|---|
| 369 | -enable-* | --enable-*)
|
|---|
| 370 | ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
|
|---|
| 371 | # Reject names that are not valid shell variable names.
|
|---|
| 372 | expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null &&
|
|---|
| 373 | { echo "$as_me: error: invalid feature name: $ac_feature" >&2
|
|---|
| 374 | { (exit 1); exit 1; }; }
|
|---|
| 375 | ac_feature=`echo $ac_feature | sed 's/-/_/g'`
|
|---|
| 376 | case $ac_option in
|
|---|
| 377 | *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
|
|---|
| 378 | *) ac_optarg=yes ;;
|
|---|
| 379 | esac
|
|---|
| 380 | eval "enable_$ac_feature='$ac_optarg'" ;;
|
|---|
| 381 |
|
|---|
| 382 | -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
|
|---|
| 383 | | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
|
|---|
| 384 | | --exec | --exe | --ex)
|
|---|
| 385 | ac_prev=exec_prefix ;;
|
|---|
| 386 | -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
|
|---|
| 387 | | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
|
|---|
| 388 | | --exec=* | --exe=* | --ex=*)
|
|---|
| 389 | exec_prefix=$ac_optarg ;;
|
|---|
| 390 |
|
|---|
| 391 | -gas | --gas | --ga | --g)
|
|---|
| 392 | # Obsolete; use --with-gas.
|
|---|
| 393 | with_gas=yes ;;
|
|---|
| 394 |
|
|---|
| 395 | -help | --help | --hel | --he | -h)
|
|---|
| 396 | ac_init_help=long ;;
|
|---|
| 397 | -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
|
|---|
| 398 | ac_init_help=recursive ;;
|
|---|
| 399 | -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
|
|---|
| 400 | ac_init_help=short ;;
|
|---|
| 401 |
|
|---|
| 402 | -host | --host | --hos | --ho)
|
|---|
| 403 | ac_prev=host_alias ;;
|
|---|
| 404 | -host=* | --host=* | --hos=* | --ho=*)
|
|---|
| 405 | host_alias=$ac_optarg ;;
|
|---|
| 406 |
|
|---|
| 407 | -includedir | --includedir | --includedi | --included | --include \
|
|---|
| 408 | | --includ | --inclu | --incl | --inc)
|
|---|
| 409 | ac_prev=includedir ;;
|
|---|
| 410 | -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
|
|---|
| 411 | | --includ=* | --inclu=* | --incl=* | --inc=*)
|
|---|
| 412 | includedir=$ac_optarg ;;
|
|---|
| 413 |
|
|---|
| 414 | -infodir | --infodir | --infodi | --infod | --info | --inf)
|
|---|
| 415 | ac_prev=infodir ;;
|
|---|
| 416 | -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
|
|---|
| 417 | infodir=$ac_optarg ;;
|
|---|
| 418 |
|
|---|
| 419 | -libdir | --libdir | --libdi | --libd)
|
|---|
| 420 | ac_prev=libdir ;;
|
|---|
| 421 | -libdir=* | --libdir=* | --libdi=* | --libd=*)
|
|---|
| 422 | libdir=$ac_optarg ;;
|
|---|
| 423 |
|
|---|
| 424 | -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
|
|---|
| 425 | | --libexe | --libex | --libe)
|
|---|
| 426 | ac_prev=libexecdir ;;
|
|---|
| 427 | -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
|
|---|
| 428 | | --libexe=* | --libex=* | --libe=*)
|
|---|
| 429 | libexecdir=$ac_optarg ;;
|
|---|
| 430 |
|
|---|
| 431 | -localstatedir | --localstatedir | --localstatedi | --localstated \
|
|---|
| 432 | | --localstate | --localstat | --localsta | --localst \
|
|---|
| 433 | | --locals | --local | --loca | --loc | --lo)
|
|---|
| 434 | ac_prev=localstatedir ;;
|
|---|
| 435 | -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
|
|---|
| 436 | | --localstate=* | --localstat=* | --localsta=* | --localst=* \
|
|---|
| 437 | | --locals=* | --local=* | --loca=* | --loc=* | --lo=*)
|
|---|
| 438 | localstatedir=$ac_optarg ;;
|
|---|
| 439 |
|
|---|
| 440 | -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
|
|---|
| 441 | ac_prev=mandir ;;
|
|---|
| 442 | -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
|
|---|
| 443 | mandir=$ac_optarg ;;
|
|---|
| 444 |
|
|---|
| 445 | -nfp | --nfp | --nf)
|
|---|
| 446 | # Obsolete; use --without-fp.
|
|---|
| 447 | with_fp=no ;;
|
|---|
| 448 |
|
|---|
| 449 | -no-create | --no-create | --no-creat | --no-crea | --no-cre \
|
|---|
| 450 | | --no-cr | --no-c | -n)
|
|---|
| 451 | no_create=yes ;;
|
|---|
| 452 |
|
|---|
| 453 | -no-recursion | --no-recursion | --no-recursio | --no-recursi \
|
|---|
| 454 | | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
|
|---|
| 455 | no_recursion=yes ;;
|
|---|
| 456 |
|
|---|
| 457 | -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
|
|---|
| 458 | | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
|
|---|
| 459 | | --oldin | --oldi | --old | --ol | --o)
|
|---|
| 460 | ac_prev=oldincludedir ;;
|
|---|
| 461 | -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
|
|---|
| 462 | | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
|
|---|
| 463 | | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
|
|---|
| 464 | oldincludedir=$ac_optarg ;;
|
|---|
| 465 |
|
|---|
| 466 | -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
|
|---|
| 467 | ac_prev=prefix ;;
|
|---|
| 468 | -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
|
|---|
| 469 | prefix=$ac_optarg ;;
|
|---|
| 470 |
|
|---|
| 471 | -program-prefix | --program-prefix | --program-prefi | --program-pref \
|
|---|
| 472 | | --program-pre | --program-pr | --program-p)
|
|---|
| 473 | ac_prev=program_prefix ;;
|
|---|
| 474 | -program-prefix=* | --program-prefix=* | --program-prefi=* \
|
|---|
| 475 | | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
|
|---|
| 476 | program_prefix=$ac_optarg ;;
|
|---|
| 477 |
|
|---|
| 478 | -program-suffix | --program-suffix | --program-suffi | --program-suff \
|
|---|
| 479 | | --program-suf | --program-su | --program-s)
|
|---|
| 480 | ac_prev=program_suffix ;;
|
|---|
| 481 | -program-suffix=* | --program-suffix=* | --program-suffi=* \
|
|---|
| 482 | | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
|
|---|
| 483 | program_suffix=$ac_optarg ;;
|
|---|
|
|---|