diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-16 16:38:31 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-20 17:19:19 +0100 |
commit | a5b74161577c4515cf4469c7fdff5c27281a9cd6 (patch) | |
tree | d354f3946b061134af4dd24ee3f2add84d61cb4f /config/windows.config | |
parent | ddf2616ff948d233a6afe50388dd0dd29a4dff95 (diff) |
Fix libxml2's python extension compilation
libxml2 uses -L$(PYTHON_INCLUDES) instead of just $(PYTHON_INCLUDES)
for the CFLAGS
Diffstat (limited to 'config/windows.config')
-rw-r--r-- | config/windows.config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/windows.config b/config/windows.config index 3363725..0acc0b5 100644 --- a/config/windows.config +++ b/config/windows.config @@ -73,7 +73,7 @@ os.environ['am_cv_python_version'] = '2.7' os.environ['am_cv_python_platform'] = 'win32' os.environ['am_cv_python_pyexecdir'] = '%s/Python27/Lib/site-packages' % toolchain_prefix os.environ['am_cv_python_pythondir'] = '%s/Python27/Lib/site-packages' % toolchain_prefix -os.environ['PYTHON_INCLUDES'] = ' -I%s/include/Python2.7' % toolchain_prefix +os.environ['PYTHON_INCLUDES'] = '-I%s/include/Python2.7 -I%s/include/Python2.7' % (toolchain_prefix, toolchain_prefix) os.environ['PYTHON_LIBS'] = '-lpython27' # DirectX and DirectSound |