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
This commit is contained in:
Vadim Zeitlin
2014-05-27 23:59:10 +00:00
parent fa48fc5ada
commit a309157a66
3 changed files with 6 additions and 2 deletions

1
configure vendored
View File

@@ -37066,7 +37066,6 @@ if test "$wxUSE_GUI" = "yes"; then
BUILT_WX_LIBS="stc $BUILT_WX_LIBS" BUILT_WX_LIBS="stc $BUILT_WX_LIBS"
fi fi
if test "$wxUSE_WEBVIEW" = "yes" ; then if test "$wxUSE_WEBVIEW" = "yes" ; then
STD_GUI_LIBS="webview $STD_GUI_LIBS"
BUILT_WX_LIBS="webview $BUILT_WX_LIBS" BUILT_WX_LIBS="webview $BUILT_WX_LIBS"
fi fi
if test "$wxUSE_XRC" = "yes" ; then if test "$wxUSE_XRC" = "yes" ; then

View File

@@ -7473,7 +7473,6 @@ if test "$wxUSE_GUI" = "yes"; then
BUILT_WX_LIBS="stc $BUILT_WX_LIBS" BUILT_WX_LIBS="stc $BUILT_WX_LIBS"
fi fi
if test "$wxUSE_WEBVIEW" = "yes" ; then if test "$wxUSE_WEBVIEW" = "yes" ; then
STD_GUI_LIBS="webview $STD_GUI_LIBS"
BUILT_WX_LIBS="webview $BUILT_WX_LIBS" BUILT_WX_LIBS="webview $BUILT_WX_LIBS"
fi fi
if test "$wxUSE_XRC" = "yes" ; then if test "$wxUSE_XRC" = "yes" ; then

View File

@@ -17,6 +17,12 @@ Changes in behaviour not resulting in compilation errors
wxINTERPOLATION_DEFAULT and not wxINTERPOLATION_GOOD as in 3.0 for wxINTERPOLATION_DEFAULT and not wxINTERPOLATION_GOOD as in 3.0 for
consistency with OS X, call SetInterpolationQuality() explicitly if needed. 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) 3.1.0: (released 2014-xx-xx)
---------------------------- ----------------------------