Am Dienstag, 18. Dezember 2007 schrieb Gabriel Moreno:
> Hello
>
> I am trying to make a package that needs lcurses (I already installed
> the dev package)
>
-lcurses means that the linker searches for either libcurses.a or libcurses.so 
in it's searchpath. You did only install libncurses. Since libcurses is 
considered to be deprecated first try to use (lib)ncurses instead of 
(lib)curses. 

If that doesn't work install the termcap package. That package installs 
libcurses to /usr/lib/curses ( or usr/lib64/curses for the 64 bit version).
Inthat case  you will need to add a -L /usr/lib/curses flag to the linker 
command line because /usr/lib/curses  is not included in the linker's 
standard searchpath 
  
-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to