Am 04.04.2013 um 11:55 schrieb Sean Lake:

> libpng warning: Application built with libpng-1.2.41 but running with 1.5.10

Sean,

one possible try to find a potential culprit is this script. First the version 
for (t)csh:

        foreach Lib ( `find /sw/lib /usr/X11/lib -type f \( -name "*.dylib" -a 
\! -name "libpng*" \)` )
          otool -L $Lib | grep png && echo $Lib
        end

And now the version for (ba)sh:

        for Lib in `find /sw/lib /usr/X11/lib -type f \( -name "*.dylib" -a \! 
-name "libpng*" \)` ; do
          otool -L $Lib | grep png && echo $Lib
        done

If you want you can change "grep png" to "grep png12" and you'll have less 
hits. If your X11 distribution in not in /usr/X11 you'll need to correct 
"/usr/X11/lib" and similarly "/sw/lib". The output will be a list à la:

        /sw/lib/graphviz/tcl/libgdtclft.0.dylib
                /sw/lib/libpng12.0.dylib (compatibility version 50.0.0, current 
version 50.0.0)
        /sw/lib/graphviz/tcl/libtcldot.0.dylib
                /sw/lib/libpng12.0.dylib (compatibility version 50.0.0, current 
version 50.0.0)
        /sw/lib/graphviz/tcl/libtcldot_builtin.0.dylib
                /sw/lib/libpng15.15.dylib (compatibility version 26.0.0, 
current version 26.0.0)

– which is a biz puzzling…

--
Greetings

  Pete

A lot of us are working harder than we want, at things we don't like to do. 
Why? ...In order to afford the sort of existence we don't care to live.
                                – Bradford Angier


------------------------------------------------------------------------------
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html
_______________________________________________
Fink-users mailing list
[email protected]
List archive:
http://news.gmane.org/gmane.os.macosx.fink.user
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-users

Reply via email to