summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2000-08-14 14:30:50 +0000
committerTheodore Ts'o <tytso@mit.edu>2000-08-14 14:30:50 +0000
commita2980713807a1e579700483861f7a92ff9a92ad8 (patch)
tree70a9b00e24353ca72f362cfcdf52235616e2ae29
parent3b5386dca8e0008e13351be5de6323576329aa58 (diff)
downloade2fsprogs-a2980713807a1e579700483861f7a92ff9a92ad8.tar.gz
ChangeLog, configure, configure.in:
configure.in: Add test for sys/mount.h (required for e2fsck's ext3 recovery code)
-rw-r--r--ChangeLog5
-rw-r--r--configure2
-rw-r--r--configure.in2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index cc1b29ce..b4cff48f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-08-14 <tytso@valinux.com>
+
+ * configure.in: Add test for sys/mount.h (required for e2fsck's
+ ext3 recovery code)
+
2000-07-13 <tytso@valinux.com>
* Release of E2fsprogs 1.19
diff --git a/configure b/configure
index f0f3efcf..f046c492 100644
--- a/configure
+++ b/configure
@@ -3925,7 +3925,7 @@ test -n "$BUILD_CC" && break
done
fi
-for ac_hdr in stdlib.h unistd.h stdarg.h errno.h malloc.h mntent.h paths.h dirent.h getopt.h setjmp.h signal.h termios.h linux/fd.h linux/major.h sys/disklabel.h sys/sockio.h sys/time.h sys/stat.h sys/types.h net/if.h netinet/in.h
+for ac_hdr in stdlib.h unistd.h stdarg.h errno.h malloc.h mntent.h paths.h dirent.h getopt.h setjmp.h signal.h termios.h linux/fd.h linux/major.h sys/disklabel.h sys/mount.h sys/sockio.h sys/time.h sys/stat.h sys/types.h net/if.h netinet/in.h
do
ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
diff --git a/configure.in b/configure.in
index 3d3fa95c..783807ed 100644
--- a/configure.in
+++ b/configure.in
@@ -363,7 +363,7 @@ if test $cross_compiling = no; then
else
AC_CHECK_PROGS(BUILD_CC, gcc cc)
fi
-AC_CHECK_HEADERS(stdlib.h unistd.h stdarg.h errno.h malloc.h mntent.h paths.h dirent.h getopt.h setjmp.h signal.h termios.h linux/fd.h linux/major.h sys/disklabel.h sys/sockio.h sys/time.h sys/stat.h sys/types.h net/if.h netinet/in.h)
+AC_CHECK_HEADERS(stdlib.h unistd.h stdarg.h errno.h malloc.h mntent.h paths.h dirent.h getopt.h setjmp.h signal.h termios.h linux/fd.h linux/major.h sys/disklabel.h sys/mount.h sys/sockio.h sys/time.h sys/stat.h sys/types.h net/if.h netinet/in.h)
AC_FUNC_VPRINTF
dnl
dnl See if struct dirent has a d_namlen field (like bsd systems), implying