From 2a3db2a52c35ab17199cb45b6014e05cccdd76ab Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Wed, 18 Jul 2001 23:08:33 +0000 Subject: [PATCH] fix up use of libacl and libattr after recent package changes. --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index eb026641..16e49d78 100644 --- a/configure.in +++ b/configure.in @@ -160,7 +160,7 @@ AC_CHECK_LIB(attr, attr_get,, [ echo 'Install either the attr-devel (rpm) or the attr-dev (deb) package.' exit 1 ]) -libattr="/usr/lib/libattr.a" +libattr="-lattr" AC_SUBST(libattr) dnl Checks for Access Control List header and library. @@ -176,7 +176,7 @@ AC_CHECK_LIB(acl, acl_get,, [ echo 'Install either the acl-devel (rpm) or the acl-dev (deb) package.' exit 1 ]) -libacl="/usr/lib/libacl.a" +libacl="-lacl" AC_SUBST(libacl) dnl Checks for GNU database manager header and library.