]> git.saurik.com Git - wxWidgets.git/commitdiff
added --disable-visibility configure option
authorVáclav Slavík <vslavik@fastmail.fm>
Fri, 13 Jul 2007 20:44:26 +0000 (20:44 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Fri, 13 Jul 2007 20:44:26 +0000 (20:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47439 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure
configure.in

index 11c0cbff1e5517fbe87d863742511ed0921a9667..fd4323c2993e8a48532098fc3be8ca96b2dd9c43 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
 #! /bin/sh
-# From configure.in Id: configure.in 47349 2007-07-11 23:31:24Z VZ .
+# From configure.in Id: configure.in 47419 2007-07-13 09:13:55Z VS .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for wxWidgets 2.9.0.
 #
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for wxWidgets 2.9.0.
 #
@@ -1671,6 +1671,7 @@ Optional Features:
   --disable-compat28      disable wxWidgets 2.8 compatibility
   --disable-rpath         disable use of rpath for uninstalled builds
   --enable-objc_uniquifying enable Objective-C class name uniquifying
   --disable-compat28      disable wxWidgets 2.8 compatibility
   --disable-rpath         disable use of rpath for uninstalled builds
   --enable-objc_uniquifying enable Objective-C class name uniquifying
+  --disable-visibility    disable use of ELF symbols visibility even if supported
   --enable-intl           use internationalization system
   --enable-config         use wxConfig (and derived) classes
   --enable-protocols      use wxProtocol and derived classes
   --enable-intl           use internationalization system
   --enable-config         use wxConfig (and derived) classes
   --enable-protocols      use wxProtocol and derived classes
@@ -5863,6 +5864,62 @@ echo "${ECHO_T}$result" >&6; }
 
 
 
 
 
 
+          enablestring=disable
+          defaultval=
+          if test -z "$defaultval"; then
+              if test x"$enablestring" = xdisable; then
+                  defaultval=yes
+              else
+                  defaultval=no
+              fi
+          fi
+
+          { echo "$as_me:$LINENO: checking for --${enablestring:-enable}-visibility" >&5
+echo $ECHO_N "checking for --${enablestring:-enable}-visibility... $ECHO_C" >&6; }
+          no_cache=0
+          # Check whether --enable-visibility was given.
+if test "${enable_visibility+set}" = set; then
+  enableval=$enable_visibility;
+                          if test "$enableval" = yes; then
+                            ac_cv_use_visibility='wxUSE_VISIBILITY=yes'
+                          else
+                            ac_cv_use_visibility='wxUSE_VISIBILITY=no'
+                          fi
+
+else
+
+                          LINE=`grep "^wxUSE_VISIBILITY=" ${wx_arg_cache_file}`
+                          if test "x$LINE" != x ; then
+                            eval "DEFAULT_$LINE"
+                          else
+                            no_cache=1
+                          fi
+
+                          ac_cv_use_visibility='wxUSE_VISIBILITY=${'DEFAULT_wxUSE_VISIBILITY":-$defaultval}"
+
+fi
+
+
+          eval "$ac_cv_use_visibility"
+          if test "$no_cache" != 1; then
+            echo $ac_cv_use_visibility >> ${wx_arg_cache_file}.tmp
+          fi
+
+          if test x"$enablestring" = xdisable; then
+            if test $wxUSE_VISIBILITY = yes; then
+              result=no
+            else
+              result=yes
+            fi
+          else
+            result=$wxUSE_VISIBILITY
+          fi
+
+          { echo "$as_me:$LINENO: result: $result" >&5
+echo "${ECHO_T}$result" >&6; }
+
+
+
 
           enablestring=
           defaultval=$wxUSE_ALL_FEATURES
 
           enablestring=
           defaultval=$wxUSE_ALL_FEATURES
@@ -35679,6 +35736,7 @@ echo "${ECHO_T}$wx_cv_version_script" >&6; }
     esac
 
 
     esac
 
 
+            if test "$wxUSE_VISIBILITY" != "no"; then
 
 
   if test -n "$GCC"; then
 
 
   if test -n "$GCC"; then
@@ -35777,6 +35835,7 @@ _ACEOF
 
   fi
 
 
   fi
 
+    fi
 
         if test "x$SUNCXX" = xyes; then
         SAMPLES_RPATH_FLAG="-R\$(wx_top_builddir)/lib"
 
         if test "x$SUNCXX" = xyes; then
         SAMPLES_RPATH_FLAG="-R\$(wx_top_builddir)/lib"
index 69e3cfa146f3f73b0e50474534575b4dac006b1f..6b322e600dd0a15124397521c7d3251ee7a76e80 100644 (file)
@@ -557,6 +557,8 @@ WX_ARG_DISABLE(rpath,        [  --disable-rpath         disable use of rpath for
 
 WX_ARG_ENABLE(objc_uniquifying,[  --enable-objc_uniquifying enable Objective-C class name uniquifying], wxUSE_OBJC_UNIQUIFYING)
 
 
 WX_ARG_ENABLE(objc_uniquifying,[  --enable-objc_uniquifying enable Objective-C class name uniquifying], wxUSE_OBJC_UNIQUIFYING)
 
+WX_ARG_DISABLE(visibility,   [  --disable-visibility    disable use of ELF symbols visibility even if supported], wxUSE_VISIBILITY)
+
 dnl ---------------------------------------------------------------------------
 dnl optional non GUI features
 dnl ---------------------------------------------------------------------------
 dnl ---------------------------------------------------------------------------
 dnl optional non GUI features
 dnl ---------------------------------------------------------------------------
@@ -3690,7 +3692,9 @@ if test "$wxUSE_SHARED" = "yes"; then
 
     dnl test for GCC's visibility support (sets CFLAGS_VISIBILITY, which is
     dnl assigned to CFLAGS and CXXFLAGS below)
 
     dnl test for GCC's visibility support (sets CFLAGS_VISIBILITY, which is
     dnl assigned to CFLAGS and CXXFLAGS below)
-    WX_VISIBILITY
+    if test "$wxUSE_VISIBILITY" != "no"; then
+        WX_VISIBILITY
+    fi
 
     dnl test for Sun CC which can be used under both Solaris and Linux
     if test "x$SUNCXX" = xyes; then
 
     dnl test for Sun CC which can be used under both Solaris and Linux
     if test "x$SUNCXX" = xyes; then