]> git.saurik.com Git - wxWidgets.git/commitdiff
Add missing lines to setup.h.in. This properly fixes compilation under configure...
authorSteve Lamerton <steve.lamerton@gmail.com>
Mon, 1 Aug 2011 10:10:20 +0000 (10:10 +0000)
committerSteve Lamerton <steve.lamerton@gmail.com>
Mon, 1 Aug 2011 10:10:20 +0000 (10:10 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68477 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/webhistoryitem_webkit.h
include/wx/msw/webhistoryitem_ie.h
include/wx/msw/webview_ie.h
include/wx/osx/webhistoryitem_webkit.h
setup.h.in

index e82bcae5ef2656810365e5908b0f508fa2974204..444d0f4fe71ac7a37538963bdbcb2349a0b738b7 100644 (file)
@@ -12,7 +12,7 @@
 
 #include "wx/setup.h"
 
-#if wxUSE_WEBVIEW_WEBKIT
+#if wxUSE_WEBVIEW_WEBKIT && defined(__WXGTK__)
 
 #include "webkit/webkit.h"
 
@@ -31,6 +31,6 @@ private:
     WebKitWebHistoryItem* m_histItem;
 };
 
-#endif // wxUSE_WEBVIEW_WEBKIT
+#endif // wxUSE_WEBVIEW_WEBKIT && defined(__WXGTK__)
 
 #endif // _WX_GTK_WEBHISTORYITEM_H_
index cbd547e5855a13aca44b3f94e91546cc66eceb2d..004eb0989af8eef26182f49862cefe2105aa38e5 100644 (file)
@@ -12,7 +12,7 @@
 
 #include "wx/setup.h"
 
-#if wxUSE_WEBVIEW_IE
+#if wxUSE_WEBVIEW_IE && defined(__WXMSW__)
 
 class WXDLLIMPEXP_WEB wxWebHistoryItem
 {
@@ -26,6 +26,6 @@ private:
     wxString m_url, m_title;
 };
 
-#endif // wxUSE_WEBVIEW_IE
+#endif // wxUSE_WEBVIEW_IE && defined(__WXMSW__)
 
 #endif // _WX_MSW_WEBHISTORYITEM_H_
index 938cf0ce41782fe27d844c63d980fe75317c9543..f7d560cc43aeb88d6e5f70da5480d9a974d47918 100644 (file)
@@ -12,7 +12,7 @@
 
 #include "wx/setup.h"
 
-#if wxUSE_WEBVIEW_IE
+#if wxUSE_WEBVIEW_IE && defined(__WXMSW__)
 
 #include "wx/control.h"
 #include "wx/webview.h"
@@ -243,6 +243,6 @@ private:
     wxWebHandler* m_handler;
 };
 
-#endif // wxUSE_WEBVIEW_IE
+#endif // wxUSE_WEBVIEW_IE && defined(__WXMSW__)
 
 #endif // wxWebViewIE_H
index 5c500fb9d565070fd0c92eb7c8e71bf175afd1ae..aaec1848c7b59a3d781c941d334925ee715bac0f 100644 (file)
@@ -12,7 +12,7 @@
 
 #include "wx/setup.h"
 
-#if wxUSE_WEBVIEW_WEBKIT
+#if wxUSE_WEBVIEW_WEBKIT && defined(__WXOSX_MAC__)
 
 class WXDLLIMPEXP_WEB wxWebHistoryItem
 {
@@ -26,6 +26,6 @@ private:
     wxString m_url, m_title;
 };
 
-#endif // wxUSE_WEBVIEW_WEBKIT
+#endif // wxUSE_WEBVIEW_WEBKIT && defined(__WXOSX_MAC__)
 
 #endif // _WX_OSX_WEBHISTORYITEM_H_
index 39a678f315b75312b7a038331f554caaed6c7572..54288e8af764bf7971607f719df681dd565de3fa 100644 (file)
 
 #define wxUSE_STC 0
 
+#define wxUSE_WEB 0
+
+#define wxUSE_WEBVIEW_WEBKIT 0
+
+#define wxUSE_WEBVIEW_IE     0
+
 
 
 #ifdef _MSC_VER