]> git.saurik.com Git - wxWidgets.git/commitdiff
Correct typo in wxUSE_WEBVIEW_IE test in configure.
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 12 Nov 2011 22:47:08 +0000 (22:47 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 12 Nov 2011 22:47:08 +0000 (22:47 +0000)
Because of a missing '$' before wxUSE_WEBVIEW_IE in the configure test
wxUSE_WEBVIEW was never enabled for wxMSW builds.

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

configure
configure.in

index a935d46911a80ae54cd993460c47f5768dea77e3..478f2610d1be376eabb8dae17f8e10157dbc9306 100755 (executable)
--- a/configure
+++ b/configure
@@ -51060,7 +51060,7 @@ _ACEOF
 echo "$as_me: WARNING: WebKit not available, disabling wxWebView" >&2;}
         fi
     elif test "$wxUSE_MSW" = 1; then
-        if test "wxUSE_WEBVIEW_IE" = "yes"; then
+        if test "$wxUSE_WEBVIEW_IE" = "yes"; then
                                     wxUSE_WEBVIEW="yes"
             cat >>confdefs.h <<\_ACEOF
 #define wxUSE_WEBVIEW_IE 1
index 77f40c1c1b529b40688d5984d2858994bf5ae5bd..967a238f2281d5f60841ab04b2d531db8e6969cc 100644 (file)
@@ -7475,7 +7475,7 @@ if test "$wxUSE_WEBVIEW" = "yes"; then
             AC_MSG_WARN([WebKit not available, disabling wxWebView])
         fi
     elif test "$wxUSE_MSW" = 1; then
-        if test "wxUSE_WEBVIEW_IE" = "yes"; then
+        if test "$wxUSE_WEBVIEW_IE" = "yes"; then
             dnl TODO: Check for the required headers/libraries under Windows
             dnl       too and do the right thing automatically there too.
             wxUSE_WEBVIEW="yes"