On Dec 6, 2007 5:40 AM, Andrew Jaffe <[EMAIL PROTECTED]> wrote:
> Hi All,
>
> I've been compiling svn versions of matplotlib on OSX for quite a while
> with no (or few...) problems.
>
> On upgrading to leopard on my mac pro, I've run into the
> error messages below.
>
> External libs are from fink. There seems to be some problem with
> attempts to build a universal binary.

The error you are getting looks like libjpeg wasn't built as a
universal binary, and you *might* have success by setting the arch
flags, eg

 export ARCHFLAGS="-arch i386"
 export MACOSX_DEPLOYMENT_TARGET=10.5
 export CFLAGS="-arch i386"
 export LDFLAGS="-arch i386"
 export CXXFLAGS="-arch i386"

but I tried in vein earlier to get a build respecting these flags
working (wasn't using fink though).

You might want to simply edit setupext.py to *remove* the /sw fink
paths, and follow the instructions

  http://ipython.scipy.org/moin/MatplotlibOSXBuildNotes

and

  http://ipython.scipy.org/moin/Py4Science/InstallationOSX

Hope this helps,
JDH

-------------------------------------------------------------------------
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to