From b452f195907063e8152b2fdddedea5a47f4ef25a Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Sun, 26 Aug 2012 02:51:45 +0000 Subject: [PATCH] Fix for #838. Please see issue for my comments. Please close #838 if you agree it's fixed. If #838 is still broken, please push issue back to me. --- config/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/configure.ac b/config/configure.ac index 482f4bee..9dec1d5d 100644 --- a/config/configure.ac +++ b/config/configure.ac @@ -103,11 +103,11 @@ AC_MSG_CHECKING([whether to enable symbol visibility support]) visibility=yes # visibility support in cygwin/ming generates 1000's of warning, set off by default case "$host_os" in - *mingw* | *cygwin*) visiblity=no ;; + *mingw* | *cygwin*) visibility=no ;; esac AC_ARG_ENABLE(visibility, [ --disable-visibility do not use symbol visibility support ], - VISIBILITY_SUPPORT=$enableval, VISIBILITY_SUPPORT=$visiblity) + VISIBILITY_SUPPORT=$enableval, VISIBILITY_SUPPORT=$visibility) AC_MSG_RESULT($VISIBILITY_SUPPORT) if test "$VISIBILITY_SUPPORT" = "yes"; then # Sun Studio C++ compiler (which apparently ignores -fvisibility-inlines-hidden)