Fix linking of wxscintilla in static monolithic build
wx-config didn't report -lwxscintilla for `wx-config --libs stc` in static monolithic build. Since stc is a part of monolithic lib, -lwxscintilla will be reported for `wx-config --libs` now as well.
This commit is contained in:
parent
f75387850b
commit
204bc3c887
2 changed files with 6 additions and 0 deletions
3
configure
vendored
3
configure
vendored
|
|
@ -35905,6 +35905,9 @@ WXCONFIG_LIBS="$LIBS"
|
||||||
if test "$wxUSE_REGEX" = "builtin" ; then
|
if test "$wxUSE_REGEX" = "builtin" ; then
|
||||||
wxconfig_3rdparty="regex${lib_unicode_suffix} $wxconfig_3rdparty"
|
wxconfig_3rdparty="regex${lib_unicode_suffix} $wxconfig_3rdparty"
|
||||||
fi
|
fi
|
||||||
|
if test "$wxUSE_STC" = "yes" ; then
|
||||||
|
wxconfig_3rdparty="scintilla $wxconfig_3rdparty"
|
||||||
|
fi
|
||||||
case "$wxUSE_EXPAT" in
|
case "$wxUSE_EXPAT" in
|
||||||
builtin)
|
builtin)
|
||||||
wxconfig_3rdparty="expat $wxconfig_3rdparty"
|
wxconfig_3rdparty="expat $wxconfig_3rdparty"
|
||||||
|
|
|
||||||
|
|
@ -7831,6 +7831,9 @@ dnl wx-config must output 3rd party libs in --libs in static build:
|
||||||
if test "$wxUSE_REGEX" = "builtin" ; then
|
if test "$wxUSE_REGEX" = "builtin" ; then
|
||||||
wxconfig_3rdparty="regex${lib_unicode_suffix} $wxconfig_3rdparty"
|
wxconfig_3rdparty="regex${lib_unicode_suffix} $wxconfig_3rdparty"
|
||||||
fi
|
fi
|
||||||
|
if test "$wxUSE_STC" = "yes" ; then
|
||||||
|
wxconfig_3rdparty="scintilla $wxconfig_3rdparty"
|
||||||
|
fi
|
||||||
case "$wxUSE_EXPAT" in
|
case "$wxUSE_EXPAT" in
|
||||||
builtin)
|
builtin)
|
||||||
wxconfig_3rdparty="expat $wxconfig_3rdparty"
|
wxconfig_3rdparty="expat $wxconfig_3rdparty"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue