|
From: <jd...@us...> - 2009-06-10 17:40:23
|
Revision: 7209
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7209&view=rev
Author: jdh2358
Date: 2009-06-10 17:39:22 +0000 (Wed, 10 Jun 2009)
Log Message:
-----------
remove gw32c from setupext
Modified Paths:
--------------
branches/v0_98_5_maint/setupext.py
Modified: branches/v0_98_5_maint/setupext.py
===================================================================
--- branches/v0_98_5_maint/setupext.py 2009-06-10 17:39:01 UTC (rev 7208)
+++ branches/v0_98_5_maint/setupext.py 2009-06-10 17:39:22 UTC (rev 7209)
@@ -549,9 +549,13 @@
add_base_flags(module)
module.libraries.append('z')
- if sys.platform == 'win32' and win32_compiler == 'mingw32':
- module.libraries.append('gw32c')
+ # JDH: this file does not appear to be shipped w/ mingw32. I saw
+ # some discussion on the web that libpng needs it -- could this be
+ # the problem we are having with libpng?
+ #if sys.platform == 'win32' and win32_compiler == 'mingw32':
+ # module.libraries.append('gw32c')
+
# put this last for library link order
module.libraries.extend(std_libs)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|