|
From: <ef...@us...> - 2010-02-06 23:54:21
|
Revision: 8115
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8115&view=rev
Author: efiring
Date: 2010-02-06 23:54:14 +0000 (Sat, 06 Feb 2010)
Log Message:
-----------
Added gnu0 platform to setupext.py (Benjamin Drung)
Modified Paths:
--------------
trunk/matplotlib/CHANGELOG
trunk/matplotlib/setupext.py
Modified: trunk/matplotlib/CHANGELOG
===================================================================
--- trunk/matplotlib/CHANGELOG 2010-02-06 23:52:34 UTC (rev 8114)
+++ trunk/matplotlib/CHANGELOG 2010-02-06 23:54:14 UTC (rev 8115)
@@ -1,3 +1,7 @@
+2010-02-06 Added setup.cfg "basedirlist" option to override setting
+ in setupext.py "basedir" dictionary; added "gnu0"
+ platform requested by Benjamin Drung. - EF
+
2010-02-06 Added 'xy' scaling option to EllipseCollection. - EF
2010-02-03 Made plot_directive use a custom PlotWarning category, so that
Modified: trunk/matplotlib/setupext.py
===================================================================
--- trunk/matplotlib/setupext.py 2010-02-06 23:52:34 UTC (rev 8114)
+++ trunk/matplotlib/setupext.py 2010-02-06 23:54:14 UTC (rev 8115)
@@ -1,8 +1,10 @@
"""
Some helper functions for building the C extensions
-you may need to edit basedir to point to the default location of your
-required libs, eg, png, z, freetype
+You may need to use the "basedirlist" option in setup.cfg to point
+to the location of your required libs, eg, png, z, freetype,
+overriding the settings hard-coded in the "basedir" directory
+below.
DARWIN
@@ -71,6 +73,7 @@
'gnukfreebsd6' : ['/usr/local', '/usr'],
'gnukfreebsd7' : ['/usr/local', '/usr'],
'gnukfreebsd8' : ['/usr/local', '/usr'],
+ 'gnu0' : ['/usr'],
'aix5' : ['/usr/local'],
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|