On 2011-10-31, Jeff Ross <[email protected]> wrote: > (gdb) run > Starting program: /usr/local/bin/ufraw > /usr/local/bin/ufraw:/usr/X11R6/lib/libGL.so.10.0: > /usr/X11R6/lib/libGL.so.12.0 : WARNING: symbol(__glapi_noop_table) size > mismatch, relink your program
Ah - you have a library conflict, something (either ufraw or a shared library it depends on) is pulling in libGL.so.10.0 and something else libGL.so.12.0. I think updating to packages built against new libGL.so.12.0 (which are now available, but probably weren't available when you reported the problem) is likely to cure it. If not could you send me an NEF file that you see the problem with (I'm not hitting any problem with my CR2s). > Are your packages all in-sync (i.e. updated from the same snapshot)? > > Yes, updated on October 25, then packages updated with the following > from the same mirror: > > cd /var/db/pkg > pkgs=`ls` > for i in $pkgs; do > echo Checking $i > /usr/sbin/pkg_add -F update,updatedepends -u -i $i > echo Done with $i > done Just running "pkg_add -ui" (optionally with -F update) is likely to give better results (and a clearer indication of any problems encountered). It should also be faster.
