in libmng-1.0.10, in file makefiles/makefile.linux, at line 87:
OBJSDLL = $(OBJS:.0=.pic.o)
is wrong, should be
OBJSDLL = $(OBJS:.o=.pic.o)
(lowercase o instead of zero), otherwise libmng.so will be built from non-PIC objects.
2009-03-13 11:06:22 UTC in libmng