089acff6fe
+ switch from using system sqlite to the bundled one because they have many modifications that are needed + add a new mirror for the distfile because the google one is utterly slow
22 lines
757 B
Plaintext
22 lines
757 B
Plaintext
$OpenBSD: patch-webkit_glue_webkitclient_impl_cc,v 1.4 2011/04/29 13:18:02 robert Exp $
|
|
--- webkit/glue/webkitclient_impl.cc.orig Tue Apr 26 10:01:06 2011
|
|
+++ webkit/glue/webkitclient_impl.cc Thu Apr 28 11:17:49 2011
|
|
@@ -43,7 +43,7 @@
|
|
#include "webkit/glue/websocketstreamhandle_impl.h"
|
|
#include "webkit/glue/weburlloader_impl.h"
|
|
|
|
-#if defined(OS_LINUX)
|
|
+#if defined(OS_LINUX) || defined(OS_OPENBSD)
|
|
#include "v8/include/v8.h"
|
|
#endif
|
|
|
|
@@ -206,7 +206,7 @@ WebKitClientImpl::~WebKitClientImpl() {
|
|
}
|
|
|
|
WebThemeEngine* WebKitClientImpl::themeEngine() {
|
|
-#if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_MACOSX)
|
|
+#if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_MACOSX) || defined(OS_OPENBSD)
|
|
return &theme_engine_;
|
|
#else
|
|
return NULL;
|