diff options
| author | Roland McGrath <roland@gnu.org> | 1998-07-20 04:55:13 +0000 |
|---|---|---|
| committer | Roland McGrath <roland@gnu.org> | 1998-07-20 04:55:13 +0000 |
| commit | 9763c693eac4c288ee508aff493ff98cd7cdb6fe (patch) | |
| tree | 315d3a6f99093886a835be4c13ef1097f0ca0e2f | |
| parent | 1a6f43dec4834aad6e3ed41dc52a912c8ff87e95 (diff) | |
1998-07-20 Roland McGrath <roland@baalperazim.frob.com>
* configure.in: Grok --{en,dis}able-profile, default enable.
* config.make.in (build-profiled): New variable, from @enable_profile@.
* Makeconf (no_prof): Set to t if $(build-profiled) is not no.
| -rw-r--r-- | configure.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.in b/configure.in index ff28fde5..1dad5b58 100644 --- a/configure.in +++ b/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_REVISION([$Id: configure.in,v 1.12 1998/04/23 00:52:19 tb Exp $]) +AC_REVISION([$Id: configure.in,v 1.13 1998/07/20 04:55:13 roland Exp $]) AC_PREREQ(2.4) dnl Minimum Autoconf version required. AC_INIT(hurd/hurd_types.h) dnl A distinctive file to look for in srcdir. @@ -19,6 +19,11 @@ i[[3456]]86) esac AC_SUBST(asm_syntax) +AC_ARG_ENABLE(profile, +[ --disable-profile do not build profiled libraries and programs],, + enable_profile=yes) +AC_SUBST(enable_profile) + AC_PROG_INSTALL AC_CHECK_TOOL(CC, gcc) |
