Skip to content

Commit d4464b7

Browse files
committed
removed darwin lookup in setupext -- use make.osx install
svn path=/branches/v0_99_maint/; revision=7529
1 parent a4b170c commit d4464b7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

setupext.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,15 @@
5050
'linux2' : ['/usr/local', '/usr'],
5151
'linux' : ['/usr/local', '/usr',],
5252
'cygwin' : ['/usr/local', '/usr',],
53-
'darwin' : ['/sw/lib/freetype2', '/sw/lib/freetype219', '/usr/local',
53+
'_darwin' : ['/sw/lib/freetype2', '/sw/lib/freetype219', '/usr/local',
5454
'/usr', '/sw'],
55+
# it appears builds with darwin are broken because of all the
56+
# different flags the deps can be compile with, so I am pushing
57+
# people to :
58+
# make -f make.osx fetch deps mpl_build mpl_install
59+
60+
'darwin' : [],
61+
5562
'freebsd4' : ['/usr/local', '/usr'],
5663
'freebsd5' : ['/usr/local', '/usr'],
5764
'freebsd6' : ['/usr/local', '/usr'],

0 commit comments

Comments
 (0)