Add libstdc++ for building on Jaguar

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2002-11-22 18:47:37 +00:00
parent aa9bb779bb
commit 06c2fab604

View File

@@ -305,7 +305,7 @@ elif os.name == 'posix' and sys.platform[:6] == "darwin":
('WXP_USE_THREAD', '1'),
]
libdirs = []
libs = []
libs = ['stdc++']
cflags = os.popen(WX_CONFIG + ' --cxxflags', 'r').read()[:-1]
cflags = string.split(cflags)
@@ -319,6 +319,7 @@ elif os.name == 'posix' and sys.platform[:6] == "darwin":
lflags = string.split(lflags)
NO_SCRIPTS = 1
BUILD_DLLWIDGET = 0
elif os.name == 'posix':