|
From: <br...@ph...> - 2006-10-13 20:04:59
|
Daniel Farrell wrote: > Yes this has showed up on the config.log, it seems that it can't > locate the, -laquaterm: > configure:6051: checking for aqtInit in -laquaterm > configure:6081: gcc -o conftest -g -O2 -I/usr/X11R6/include > conftest.c -laquaterm -lobjc >&5 > /usr/bin/ld: can't locate file for: -laquaterm > ac_cv_lib_aquaterm_aqtInit=no That means that libaquaterm is not "installed" in the usable sense of the term. For a library to be installed means that it's in some place where the linker automatically looks for libraries. This can be arranged in various ways: you can extend the linker's search path, or you can install the library in one of the directories it already searches. If your libaquaterm really has to remain elsewhere, re-read the INSTALL.gnu document or "configure --help" output to see how to teach configure to widen its search area. |