fix number of arguments to AC_DEFINE

aclocal hates when you only specify one parameter to AC_DEFINE ... simple patch
to add the other two parameters

fixes for acl and xfstests

[hch: added nfs4acl]

Reviewed-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
Mike Frysinger
2008-12-30 23:21:52 +01:00
committed by Christoph Hellwig
parent 305b6f33d7
commit 67f19adfc6
+1 -1
View File
@@ -17,6 +17,6 @@ EOF
rm -f conftest.[cs] rm -f conftest.[cs]
]) ])
if test $libc_cv_visibility_attribute = yes; then if test $libc_cv_visibility_attribute = yes; then
AC_DEFINE(HAVE_VISIBILITY_ATTRIBUTE) AC_DEFINE(HAVE_VISIBILITY_ATTRIBUTE, [], [GCC supports visibility attributes])
fi fi
]) ])