Don't use stc lib if building monolithic

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45409 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2007-04-12 00:23:01 +00:00
parent fffa9fbcb9
commit 8dda1e5b25

View File

@@ -656,6 +656,10 @@ if BUILD_STC:
opj(location, "_stc_gendocs.i"),
] + swig_deps)
stcLibs = libs[:]
if not MONOLITHIC and findLib('stc', libdirs):
stcLibs += makeLibName('stc')
ext = Extension('_stc',
swig_sources,
@@ -663,7 +667,7 @@ if BUILD_STC:
define_macros = defines,
library_dirs = libdirs,
libraries = libs + makeLibName('stc'),
libraries = stcLibs,
extra_compile_args = cflags,
extra_link_args = lflags,