On Thu, Mar 24, 2005 at 09:12:36AM -0600, Ryan J. Cavicchioni wrote: > Here they are. Please let me know if you need anything else. Thanks > Alexander.
> configure:25885: checking for XML_ParserCreateNS in -lexpat > configure:25915: gcc -o conftest -O2 -Wall -I/usr/local/include -s > conftest.c -lexpat -lcurses >&5 > /usr/bin/ld: cannot find -lexpat Ok, so the problem really is that expat library is installed in /usr/local/lib. Either pass LDFLAGS to configure: LDFLAGS=-L/usr/local/lib or edit src/Makefile and add -L/usr/local/lib to LDFLAGS by hand. -- Alexander.
