]> git.saurik.com Git - wxWidgets.git/commitdiff
Check for wxUSE_WEBVIEW being defined.
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 16 Sep 2011 22:44:11 +0000 (22:44 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 16 Sep 2011 22:44:11 +0000 (22:44 +0000)
All wxUSE_XXX options must be always defined as we test for them with #if and
not #ifdef, so check for this one too for consistency.

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

include/wx/chkconf.h

index c5fbd78967b7ec91cd383725c7ad96bafe60cd3e..6f8c330ed05b4f658d362e372ba1462b4cd34115 100644 (file)
 #   endif
 #endif /* !defined(wxUSE_VALIDATORS) */
 
+#ifndef wxUSE_WEBVIEW
+#   ifdef wxABORT_ON_CONFIG_ERROR
+#       error "wxUSE_WEBVIEW must be defined, please read comment near the top of this file."
+#   else
+#       define wxUSE_WEBVIEW 0
+#   endif
+#endif /* !defined(wxUSE_WEBVIEW) */
+
 #ifndef wxUSE_WXHTML_HELP
 #   ifdef wxABORT_ON_CONFIG_ERROR
 #       error "wxUSE_WXHTML_HELP must be defined, please read comment near the top of this file."