diff options
author | Josh Triplett <josh@freedesktop.org> | 2006-04-27 12:04:52 -0700 |
---|---|---|
committer | Josh Triplett <josh@freedesktop.org> | 2006-04-27 12:04:52 -0700 |
commit | ef18582d83fac146b1a689bd60d580819dba0ffd (patch) | |
tree | 87bca7c8c5c8e8cf7992b3f187f404c2fb7a191b | |
parent | 3e213a1becd3081e905e3711ff3fe3e4865cd7dd (diff) |
Fix typo and rephrase checking message.
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 46a82b9..5a6993d 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -5,7 +5,7 @@ dnl GCC_CHECK_VISIBILITY([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) dnl Check the visibility feature of gcc dnl AC_DEFUN([GCC_CHECK_VISIBILITY], - [AC_MSG_CHECKING([whether ${CC} supports visibility feature]) + [AC_MSG_CHECKING([whether ${CC} supports symbol visibility]) save_CFLAGS=${CFLAGS} CFLAGS="$CFLAGS -fvisibility=hidden -fvisibility-inlines-hidden" AC_COMPILE_IFELSE( @@ -20,7 +20,7 @@ extern void f(int); [AC_DEFINE( GCC_HAS_VISIBILITY, [], - [Defined if GCC supports the vilibility feature]) + [Defined if GCC supports the visibility feature]) m4_if([$1], [], [:], [$1]) AC_MSG_RESULT(yes)], [m4_if([$2], [], [:], [$2]) |