Welcome to digital unix - it sucks, and the linker sucks worse.
Ordering is very important on the link line. Try manually editing the
Makefile and stick -lc at the end of the LDFLAGS or whatever macro they
use.
-bp
Jan Vroonhof wrote:
SL Baur <steve(a)xemacs.org> writes:
> gcc -g -O2 -Wall -Wcast-align [..] ../intl/libintl.a -lc -lz
> /usr/bin/ld:
> Unresolved:
> _OtsMove
> calloc
> collect2: ld returned 1 exit status
this looks suspect. Why is it linking in libz _after_ libc. calloc
looks like a good candidate to be defined in libc,
(why is it having an explicit -lc anyway)
Jan