| 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=no]"
|
|---|
| 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 | ac_help="$ac_help
|
|---|
| 36 | --enable-objc-gc enable the use of Boehm's garbage collector with
|
|---|
| 37 | the GNU Objective-C runtime."
|
|---|
| 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 |
|
|---|
|
|---|