Revision: 1508
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1508&view=rev
Author: roman_yakovenko
Date: 2008-12-27 21:16:17 +0000 (Sat, 27 Dec 2008)
Log Message:
-----------
porting latest changes to Linux
Modified Paths:
--------------
pyplusplus_dev/unittests/autoconfig.py
Modified: pyplusplus_dev/unittests/autoconfig.py
===================================================================
--- pyplusplus_dev/unittests/autoconfig.py 2008-12-27 10:57:29 UTC (rev 1507)
+++ pyplusplus_dev/unittests/autoconfig.py 2008-12-27 21:16:17 UTC (rev 1508)
@@ -42,7 +42,7 @@
class scons_config:
- libs = []#['boost_python']
+ libs = []
libpath = [ python.libs ] + boost.libs
cpppath = [ boost.include, python.include, indexing_suite.include ]
include_dirs = cpppath + [data_directory]
@@ -52,6 +52,8 @@
msvc_compiler = ''
if 'linux' not in sys.platform:
msvc_compiler = str( pygccxml.utils.native_compiler.get_version()[1] )
+ else:
+ scons_config.libs.append( 'boost_python' )
code = [
"import sys"
, "env = Environment()"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|