From 3d37d84984bafca6df7b7fc8a074441e2db7b5f1 Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Thu, 11 Jan 2001 20:54:50 +0000 Subject: [PATCH] * configure.in: Check for ext2 libraries only if VFS is enabled. --- ChangeLog | 2 ++ configure.in | 6 ++++-- vfs/samba/include/stamp-h.in | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index a8956c648..9a8427218 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2001-01-11 Pavel Roskin + * configure.in: Check for ext2 libraries only if VFS is enabled. + * src/Makefile.in: Create directories before installing files. Removed all occurences of libprefix - it's never defined. diff --git a/configure.in b/configure.in index df5065d9f..7616255a0 100644 --- a/configure.in +++ b/configure.in @@ -755,7 +755,8 @@ AC_ARG_WITH(netrc, undelfs_o="" -AC_ARG_WITH(ext2undel, +if test $use_vfs = yes; then + AC_ARG_WITH(ext2undel, [--with-ext2undel Compile with ext2 undelete code],[ if test x$withval != xno; then @@ -768,7 +769,8 @@ AC_ARG_WITH(ext2undel, fi],[ dnl Default: detect AC_CHECK_LIB(ext2fs, ext2fs_close, [AC_EXT2_UNDEL],,-lcom_err) -]) + ]) +fi AC_SUBST(undelfs_o) diff --git a/vfs/samba/include/stamp-h.in b/vfs/samba/include/stamp-h.in index 49f41b15c..49fd9931c 100644 --- a/vfs/samba/include/stamp-h.in +++ b/vfs/samba/include/stamp-h.in @@ -1 +1 @@ -Wed Aug 2 17:05:38 UTC 2000 +Thu Jan 11 20:18:08 UTC 2001