From a309157a666e2f7582a9134699a69f2548d99949 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 27 May 2014 23:59:10 +0000 Subject: [PATCH] Don't include "webview" in "standard" libraries. This means `wx-config --libs` doesn't include webview in its output by default any longer, it must be explicitly requested. Closes #16291. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@76616 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- configure | 1 - configure.in | 1 - docs/changes.txt | 6 ++++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 57946d5494..b5d13b0d1b 100755 --- a/configure +++ b/configure @@ -37066,7 +37066,6 @@ if test "$wxUSE_GUI" = "yes"; then BUILT_WX_LIBS="stc $BUILT_WX_LIBS" fi if test "$wxUSE_WEBVIEW" = "yes" ; then - STD_GUI_LIBS="webview $STD_GUI_LIBS" BUILT_WX_LIBS="webview $BUILT_WX_LIBS" fi if test "$wxUSE_XRC" = "yes" ; then diff --git a/configure.in b/configure.in index d218e40a5b..ff3806c138 100644 --- a/configure.in +++ b/configure.in @@ -7473,7 +7473,6 @@ if test "$wxUSE_GUI" = "yes"; then BUILT_WX_LIBS="stc $BUILT_WX_LIBS" fi if test "$wxUSE_WEBVIEW" = "yes" ; then - STD_GUI_LIBS="webview $STD_GUI_LIBS" BUILT_WX_LIBS="webview $BUILT_WX_LIBS" fi if test "$wxUSE_XRC" = "yes" ; then diff --git a/docs/changes.txt b/docs/changes.txt index cd188166b7..788052af2c 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -17,6 +17,12 @@ Changes in behaviour not resulting in compilation errors wxINTERPOLATION_DEFAULT and not wxINTERPOLATION_GOOD as in 3.0 for consistency with OS X, call SetInterpolationQuality() explicitly if needed. +Changes in behaviour which may result in build errors +----------------------------------------------------- + +- "webview" library is not included in `wx-config --libs` output any more, you + need to request it explicitly, e.g. `wx-config --libs std,webview`. + 3.1.0: (released 2014-xx-xx) ----------------------------