diff options
author | Roland McGrath <roland@gnu.org> | 2002-03-12 03:01:02 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-03-12 03:01:02 +0000 |
commit | 57bc192c7678d2fea59f78f4850caf8d3bb006ed (patch) | |
tree | 4db74c771e7afe2b027a1b4255f6784b33751884 /configure.in | |
parent | fd7075da38b18931b3e6027bd6881f1c0966f86c (diff) |
2002-03-11 Roland McGrath <roland@frob.com>
* configure.in (--enable-boot-store-types): Grok this arg.
* config.make.in (boot-store-types): New variable, set by it.
* Makeconf [$(dir) != libstore]
($(boot-store-types:%=../libstore/libstore_%.a)): Make these targets
depend on ../libstore/libstore.so.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/configure.in b/configure.in index ca4e0703..2b7b8f3e 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.28 2002/01/19 23:44:37 roland Exp $]) +AC_REVISION([$Id: configure.in,v 1.29 2002/03/12 03:01:02 roland Exp $]) AC_PREREQ(2.12) dnl Minimum Autoconf version required. AC_INIT(hurd/hurd_types.h) dnl A distinctive file to look for in srcdir. @@ -155,6 +155,16 @@ PARTED_LIBS=$LIBS LIBS=$save_LIBS AC_SUBST(PARTED_LIBS) +AC_ARG_ENABLE(boot-store-types, +[ --enable-boot-store-types=TYPES... + list of store types included in statically + linked filesystems used for booting])dnl +if test -z "$enable_boot_store_types"; then + boot_store_types='device gunzip bunzip2' + test $parted = no || boot_store_types="$boot_store_types part" +fi +AC_SUBST(boot_store_types)dnl + if test -f ./$ac_unique_file; then # Configuring in source directory; don't create any Makefiles. makefiles= |