From: Mike Frysinger Date: Tue, 30 Dec 2008 22:21:52 +0000 (+0100) Subject: fix number of arguments to AC_DEFINE X-Git-Tag: v1.1.0~338 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=67f19adfc64b0b8635ec9f7209cf2d0fd11b287f;p=users%2Fhch%2Fxfstests-dev.git 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 --- diff --git a/m4/visibility_hidden.m4 b/m4/visibility_hidden.m4 index 8b6d9e190..bfd74e4b6 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 ])