1
1

* configure.in: Check for ext2 libraries only if VFS is enabled.

Этот коммит содержится в:
Pavel Roskin 2001-01-11 20:54:50 +00:00
родитель 98f942fd46
Коммит 3d37d84984
3 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -1,5 +1,7 @@
2001-01-11 Pavel Roskin <proski@gnu.org>
* 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.

Просмотреть файл

@ -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)

Просмотреть файл

@ -1 +1 @@
Wed Aug 2 17:05:38 UTC 2000
Thu Jan 11 20:18:08 UTC 2001