From 67f19adfc64b0b8635ec9f7209cf2d0fd11b287f Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 30 Dec 2008 23:21:52 +0100 Subject: [PATCH] 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 --- m4/visibility_hidden.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/visibility_hidden.m4 b/m4/visibility_hidden.m4 index 8b6d9e19..bfd74e4b 100644 --- a/m4/visibility_hidden.m4 +++ b/m4/visibility_hidden.m4 @@ -17,6 +17,6 @@ EOF rm -f conftest.[cs] ]) if test $libc_cv_visibility_attribute = yes; then - AC_DEFINE(HAVE_VISIBILITY_ATTRIBUTE) + AC_DEFINE(HAVE_VISIBILITY_ATTRIBUTE, [], [GCC supports visibility attributes]) fi ]) -- 2.47.3