]> www.infradead.org Git - users/hch/xfstests-dev.git/commitdiff
fix number of arguments to AC_DEFINE
authorMike Frysinger <vapier@gentoo.org>
Tue, 30 Dec 2008 22:21:52 +0000 (23:21 +0100)
committerChristoph Hellwig <hch@brick.lst.de>
Tue, 30 Dec 2008 22:21:52 +0000 (23:21 +0100)
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>
m4/visibility_hidden.m4

index 8b6d9e1904ad503f1a20b9ede2fdd9f2e485d47a..bfd74e4b64e69231cf495424854838a67a7a9084 100644 (file)
@@ -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
   ])