]> git.saurik.com Git - wxWidgets.git/blobdiff - configure.in
rename makemactags script to makeostags and extend it to work with either Carbon...
[wxWidgets.git] / configure.in
index 3e0012dc6e14364910c3e5d2cf3783f65cb6aa2e..2ab3ea808bda3587a5a1bcc7e2b2f92fef074993 100644 (file)
@@ -7417,6 +7417,14 @@ if test "x$INTELCXX" = "xyes" ; then
 elif test "$GXX" = yes ; then
     CXXWARNINGS="-Wall -Wundef -Wunused-parameter -Wno-ctor-dtor-privacy"
     AX_CXXFLAGS_GCC_OPTION(-Woverloaded-virtual, CXXWARNINGS)
+
+    dnl when building under Mac we currently get hundreds of deprecation
+    dnl warnings for Carbon symbols from the standard headers -- disable them
+    dnl as we already know that they're deprecated and nothing else can be seen
+    dnl with these warnings on
+    if test "$wxUSE_MAC" = 1 ; then
+        CXXWARNINGS="$CXXWARNINGS -Wno-deprecated-declarations"
+    fi
 fi