From: <jd...@us...> - 2009-07-11 12:42:51
|
Revision: 7254 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7254&view=rev Author: jdh2358 Date: 2009-07-11 12:42:46 +0000 (Sat, 11 Jul 2009) Log Message: ----------- Merged revisions 7253 via svnmerge from https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_98_5_maint ........ r7253 | jdh2358 | 2009-07-11 07:39:29 -0500 (Sat, 11 Jul 2009) | 1 line applied osx setpext patch from sf #2818964 ........ Modified Paths: -------------- trunk/matplotlib/setupext.py Property Changed: ---------------- trunk/matplotlib/ Property changes on: trunk/matplotlib ___________________________________________________________________ Modified: svnmerge-integrated - /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7245 + /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-7253 Modified: trunk/matplotlib/setupext.py =================================================================== --- trunk/matplotlib/setupext.py 2009-07-11 12:39:29 UTC (rev 7253) +++ trunk/matplotlib/setupext.py 2009-07-11 12:42:46 UTC (rev 7254) @@ -138,6 +138,9 @@ try: options['build_wxagg'] = config.getboolean("gui_support", "wxagg") except: options['build_wxagg'] = 'auto' + try: options['build_macosx'] = config.getboolean("gui_support", "macosx") + except: options['build_macosx'] = 'auto' + try: options['backend'] = config.get("rc_options", "backend") except: pass This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |