]> git.saurik.com Git - wxWidgets.git/commitdiff
Really fix wxUSE_PREFERENCES_EDITOR requirements check.
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 15 Jul 2013 22:37:52 +0000 (22:37 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 15 Jul 2013 22:37:52 +0000 (22:37 +0000)
The changes of r74532 were incomplete/wrong and the fix of r74536 didn't
entirely fix the logic here, so try to do it again, hopefully correctly this
time.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74537 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/chkconf.h

index f01831b8eabb0d5480b20d3c3099c79650251bd9..9db157b2fca787814c3faa33731178414ab9ac84 100644 (file)
 #   if !wxUSE_NOTEBOOK
 #       ifdef __WXOSX_COCOA__
 #           if !wxUSE_TOOLBAR || !wxOSX_USE_NATIVE_TOOLBAR
-#               error "wxUSE_PREFERENCES_EDITOR requires native toolbar in wxOSX"
+#               if wxABORT_ON_CONFIG_ERROR
+#                   error "wxUSE_PREFERENCES_EDITOR requires native toolbar in wxOSX"
+#               else
+#                   undef wxUSE_PREFERENCES_EDITOR
+#                   define wxUSE_PREFERENCES_EDITOR 0
+#               endif
 #           endif
 #       else
-#           error "wxUSE_PREFERENCES_EDITOR requires wxNotebook"
+#           if wxABORT_ON_CONFIG_ERROR
+#               error "wxUSE_PREFERENCES_EDITOR requires wxNotebook"
+#           else
+#               undef wxUSE_PREFERENCES_EDITOR
+#               define wxUSE_PREFERENCES_EDITOR 0
+#           endif
 #       endif
-#       undef wxUSE_PREFERENCES_EDITOR
-#       define wxUSE_PREFERENCES_EDITOR 0
 #   endif
 #endif /* wxUSE_PREFERENCES_EDITOR */