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 | 73b3e2418b370fba8528ac229fa64447fdec4cbc (patch) | |
| tree | 6c4161d66922d1610a84aa5cd764133d96bc0cf3 | |
| parent | 43b5906bb0c8d2aeaf523d1f68e33053c0b0778f (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.
| -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= |
