mabshoff wrote:
> While poking around some matplotlib related blowup around libpng and
> frameworks I noticed the following:
<SNIP>
> makefiles (think "sed s/libpng\./libpng12\./g" we might fix this
> dreaded problem once and for all. I might have time to poke around
> this next week, but until then: Thoughts?
And after removing libpng.* on OSX and the following patch
diff -r 177c872eb17a module_list.py
--- a/module_list.py Thu Feb 05 05:04:30 2009 -0800
+++ b/module_list.py Thu Feb 05 17:39:00 2009 -0800
@@ -581,7 +581,7 @@
Extension('sage.matrix.matrix_mod2_dense',
sources = ['sage/matrix/matrix_mod2_dense.pyx'],
- libraries = ['gmp','m4ri', 'png', 'gd']),
+ libraries = ['gmp','m4ri', 'png12', 'gd']),
Extension('sage.matrix.matrix_modn_dense',
sources = ['sage/matrix/matrix_modn_dense.pyx'],
and a rebuild of that extension doctests still do pass for that file.
The above extension was the initial reason to start building dynamic
libpngs on OSX, so if we can sort out the other build issues we should
be good to go.
Notice that this also offers the possibility to reenable png support
for R and Python since we currently disabled it.
> Cheers,
>
> Michael
Cheers,
Michael
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-devel@googlegroups.com
To unsubscribe from this group, send email to
sage-devel-unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---