ChangeLog, configure, configure.in:

configure.in: Add new switch, --disable-swapfs which disables support
  	of byte-swapping old filesystems.  Add new test, AC_C_BIGENDIAN, which
  	sets WORDS_BIGENDIAN on big-endian machines.  Change handling of
  	--with-ccopts so that if set, the default CFLAGS is suppressed.
bitmap-optimize
Theodore Ts'o 2001-06-11 06:54:13 +00:00
parent 69c09f526c
commit 877eb6d923
3 changed files with 336 additions and 194 deletions

View File

@ -1,3 +1,11 @@
2001-06-11 Theodore Tso <tytso@valinux.com>
* configure.in: Add new switch, --disable-swapfs which disables
support of byte-swapping old filesystems. Add new test,
AC_C_BIGENDIAN, which sets WORDS_BIGENDIAN on big-endian
machines. Change handling of --with-ccopts so that if
set, the default CFLAGS is suppressed.
2001-06-01 Theodore Tso <tytso@valinux.com>
* wordwrap.pl: Add some rules which help fix up the dependencies.

495
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -73,10 +73,8 @@ dnl
AC_ARG_WITH([ccopts],
[ --with-ccopts=CCOPTS select compiler command line options],
AC_MSG_RESULT(CCOPTS is $withval)
CCOPTS=$withval
CFLAGS="$CFLAGS $withval",
CCOPTS=)dnl
AC_SUBST(CCOPTS)
CFLAGS=$withval,
)dnl
dnl
dnl On systems without linux header files, we add an extra include directory
dnl that holds enough to fake it (hopefully). Note that the $(top_srcdir) here
@ -218,6 +216,26 @@ fi
echo "Disabling journal debugging by default"
)
dnl
dnl handle --enable-swapfs
dnl
AC_ARG_ENABLE([swapfs],
[ --disable-swapfs disable support of legacy byte-swapped filesystems],
if test "$enableval" = "no"
then
echo "Disabling swapfs support"
SWAPFS_CMT="#"
else
AC_DEFINE(ENABLE_SWAPFS)
SWAPFS_CMT=
echo "Enabling swapfs support"
fi
,
echo "Enabling swapfs support by default"
AC_DEFINE(ENABLE_SWAPFS)
SWAPFS_CMT=
)
AC_SUBST(SWAPFS_CMT)
dnl
dnl Add internationalization support, using gettext.
dnl
PACKAGE=e2fsprogs
@ -449,6 +467,7 @@ AC_SUBST(SIZEOF_SHORT)
AC_SUBST(SIZEOF_INT)
AC_SUBST(SIZEOF_LONG)
AC_SUBST(SIZEOF_LONG_LONG)
AC_C_BIGENDIAN
dnl
dnl See if struct stat has a st_flags field, in which case we can get file
dnl flags somewhat portably. Also check for the analogous setter, chflags().