configure.in, configure, Makefile.in: Add --with-diet-libc

convenience option.  Add --disable-evms option.
bitmap-optimize
Theodore Ts'o 2003-05-05 09:00:24 -04:00
parent ddc32a045b
commit d21ae6c5cd
4 changed files with 274 additions and 213 deletions

View File

@ -1,3 +1,8 @@
2003-05-05 Theodore Ts'o <tytso@mit.edu>
* configure.in, configure, Makefile.in: Add --with-diet-libc
convenience option. Add --disable-evms option.
2003-05-03 Theodore Ts'o <tytso@mit.edu>
* Makefile.in: Install the message catalog files

View File

@ -9,7 +9,7 @@ INSTALL = @INSTALL@
@RESIZER_CMT@RESIZE_DIR= resize
@DEBUGFS_CMT@DEBUGFS_DIR= debugfs
@LINUX_CMT@EVMS_DIR= lib/evms
@EVMS_CMT@EVMS_DIR= lib/evms
LIB_SUBDIRS=lib/et lib/ss lib/e2p lib/ext2fs lib/uuid lib/blkid intl
PROG_SUBDIRS=e2fsck $(DEBUGFS_DIR) misc $(RESIZE_DIR) tests/progs po \

450
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -47,6 +47,20 @@ AC_SUBST(E2FSPROGS_DAY)
AC_SUBST(E2FSPROGS_VERSION)
AC_CANONICAL_HOST
dnl
dnl Should we compile EVMS plugin or not. Complicated logic, spread
dnl over several different command-line options...
dnl
EVMS_CMT=
AC_SUBST([EVMS_CMT])
dnl
dnl Use diet libc
dnl
AC_ARG_WITH([diet-libc],
[ --with-diet-libc Use diet libc],
CC="diet cc -nostdinc"
EVMS_CMT="#"
AC_MSG_RESULT(CC=$CC))dnl
dnl
dnl set $(CC) from --with-cc=value
dnl
AC_ARG_WITH([cc],
@ -166,6 +180,17 @@ echo "Disabling htree clearing by default"
)
AC_SUBST(HTREE_CLR_CMT)
dnl
dnl handle --enable-evms
dnl
AC_ARG_ENABLE([evms],
[ --disable-evms don't build EVMS plugin],
if test "$enableval" != "no"
then
EVMS_CMT="#"
echo "Disabling EVMS plugin"
fi
)
dnl
dnl handle --enable-emvs-10
dnl
EVMS_ABI_CODE=120
@ -345,7 +370,7 @@ dnl
dnl handle --enable-blkid-debug
dnl
AC_ARG_ENABLE([blkid-debug],
[ --enable-blkid-debug enable blkid debugging],
[ --enable-blkid-debug enable blkid debugging],
if test "$enableval" = "no"
then
echo "Disabling blkid debugging"
@ -688,7 +713,10 @@ linux*)
cygwin)
CYGWIN_CMT=
UNIX_CMT="#"
EVMS_CMT="#"
;;
*)
EVMS_CMT="#"
esac
AC_SUBST(LINUX_CMT)
AC_SUBST(CYGWIN_CMT)