From f75038534fc3487c01c2c878fe32d66c5bef442f Mon Sep 17 00:00:00 2001 From: ptools Date: Tue, 15 Jun 2004 08:10:50 +0000 Subject: [PATCH] More merge fixes This test was missing from the origional merge --- aclocal.m4 | 17 ++++++++--------- src/Makefile | 6 ------ 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/aclocal.m4 b/aclocal.m4 index 6e9e4984..7657b3f1 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -224,10 +224,9 @@ AC_DEFUN([AC_PACKAGE_NEED_UUIDCOMPARE], AC_SUBST(libuuid) ]) - -AC_DEFUN([AC_PACKAGE_NEED_XFS_LIBXFS_H], - [ AC_CHECK_HEADERS([xfs/libxfs.h]) - if test "$ac_cv_header_xfs_libxfs_h" != "yes"; then +AC_DEFUN([AC_PACKAGE_NEED_SYS_ACL_H], + [ AC_CHECK_HEADERS([sys/acl.h]) + if test "$ac_cv_header_sys_acl_h" != "yes"; then echo echo 'FATAL ERROR: sys/acl.h does not exist.' echo 'Install the access control lists (acl) development package.' @@ -262,12 +261,12 @@ AC_DEFUN([AC_PACKAGE_NEED_LIBXFSINIT_LIBXFS], AC_SUBST(libxfs) ]) -AC_DEFUN([AC_PACKAGE_NEED_ATTRLIST_LIBHANDLE], - [ AC_CHECK_LIB(handle, attr_list_by_handle,, [ +AC_DEFUN([AC_PACKAGE_NEED_ACLINIT_LIBACL], + [ AC_CHECK_LIB(acl, acl_init,, [ echo - echo 'FATAL ERROR: could not find a current XFS handle library.' - echo 'Install or upgrade the XFS library package.' - echo 'Alternatively, run "make install-dev" from the xfsprogs source.' + echo 'FATAL ERROR: could not find a valid Access Control List library.' + echo 'Install either the libacl (rpm) or the libacl1 (deb) package.' + echo 'Alternatively, run "make install-lib" from the acl source.' exit 1 ]) libacl="-lacl" diff --git a/src/Makefile b/src/Makefile index 1860045c..4b08f6e9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -45,12 +45,6 @@ TARGETS += $(LINUX_TARGETS) endif ifeq ($(HAVE_DB), true) -TARGETS = alloc acl_get bstat devzero dirstress fault feature \ - fill fill2 getpagesize holes xfsctl loggen lstat64 \ - nametest permname randholes runas truncfile usemem \ - fstest mmapcat append_reader append_writer \ - dirperf metaperf -ifeq ($(ENABLE_DBM), yes) TARGETS += dbtest endif -- 2.39.5