windows updates to switch to boost 1.37 and python 2.6

This commit is contained in:
Marcos Pinto 2009-01-12 23:30:33 +00:00
parent 855315dfb1
commit c94a13ae17
1 changed files with 14 additions and 7 deletions

View File

@ -66,16 +66,23 @@ if windows_check():
"-D_WIN32", "-D_WIN32",
"-DWIN32_LEAN_AND_MEAN", "-DWIN32_LEAN_AND_MEAN",
"-DBOOST_ALL_NO_LIB", "-DBOOST_ALL_NO_LIB",
"-DBOOST_ALL_DYN_LINK",
"-DBOOST_THREAD_USE_LIB", "-DBOOST_THREAD_USE_LIB",
"-DBOOST_WINDOWS", "-DBOOST_WINDOWS",
"-DBOOST_WINDOWS_API", "-DBOOST_WINDOWS_API",
"-DWIN32", "-DWIN32",
"-DUNICODE", "-DUNICODE",
"-D_UNICODE", "-D_UNICODE",
"-D_SCL_SECURE_NO_WARNINGS",
"/O2",
"/Ob2",
"/W3",
"/GR", "/GR",
"/MD",
"/wd4675",
"/Zc:wchar_t", "/Zc:wchar_t",
"/Zc:forScope",
"/EHsc", "/EHsc",
"-c",
] ]
else: else:
_extra_compile_args += ["-Wno-missing-braces"] _extra_compile_args += ["-Wno-missing-braces"]
@ -108,12 +115,12 @@ if windows_check():
_library_dirs += ['./win32/lib'] _library_dirs += ['./win32/lib']
_libraries = [ _libraries = [
'advapi32', 'advapi32',
'boost_filesystem-vc71-mt-1_36', 'boost_filesystem-vc-mt-1_37',
'boost_date_time-vc71-mt-1_36', 'boost_date_time-vc-mt-1_37',
'boost_iostreams-vc71-mt-1_36', 'boost_iostreams-vc-mt-1_37',
'boost_python-vc71-mt-1_36', 'boost_python-vc-mt-1_37',
'boost_system-vc71-mt-1_36', 'boost_system-vc-mt-1_37',
'boost_thread-vc71-mt-1_36', 'boost_thread-vc-mt-1_37',
'gdi32', 'gdi32',
'libeay32', 'libeay32',
'ssleay32', 'ssleay32',