From: Vadim Zeitlin Date: Sun, 7 Jan 2007 16:25:04 +0000 (+0000) Subject: include WebKit.h as otherwise WebKit is not detected on PPC with gcc 3.3 (patch 1623616) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bde1da6d3f04a80e800f52f449cc7143905bdfc8?ds=inline include WebKit.h as otherwise WebKit is not detected on PPC with gcc 3.3 (patch 1623616) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44125 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/configure b/configure index 0e4803be14..310eeceb33 100755 --- a/configure +++ b/configure @@ -46748,6 +46748,7 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include +#include #include _ACEOF diff --git a/configure.in b/configure.in index 9087d67ad2..adf0bad1b7 100644 --- a/configure.in +++ b/configure.in @@ -7091,7 +7091,10 @@ if test "$wxUSE_WEBKIT" = "yes"; then AC_MSG_WARN([WebKit headers not found; disabling wxWebKit]) wxUSE_WEBKIT=no ], - [#include ]) + [ + #include + #include + ]) CPPFLAGS="$old_CPPFLAGS" elif test "$wxUSE_COCOA" = 1; then AC_DEFINE(wxUSE_WEBKIT)