From: Andrew C. <ak...@sh...> - 2002-06-22 19:59:39
|
> [...] > > This makes a difference a couple lines later and then in the G4 I > get a series of warnings that begins: > > /usr/bin/ld: warning prebinding disabled because dependent library: > /usr/local/lib/libncurses.dylib.5 is not prebound > > Soon after that is a dump. That just means ./configure detects an ncurses lib (/usr/local/lib/libncurses.dylib) but cannot use it. Jaguar Preview puts the curses library in a separate ncurses library. But that works correctly with the build. Your libncurses file must have come from some other source (a hint is that it's installed in /usr/local). If you don't need it, you can delete the library and run `./configure' and `make' again. Otherwise you can delete the following three lines from src/s/darwin.h and try the same. #ifdef HAVE_LIBNCURSES #define LIBS_TERMCAP -lncurses #endif |