Firstly, my PC got through the configure script without a hitch, but it won't compile without this library.
I'm using SLED 10, and have the vendor-supplied ncurses libraries installed, but it can't find the curses library. What is this library and where do I get it?
Thanks
Can't compile: missing libcurses
Moderator: ZSNES Mods
-
- ZSNES Developer
- Posts: 3904
- Joined: Tue Jul 27, 2004 10:54 pm
- Location: Solar powered park bench
- Contact:
If you have ncurses but no curses link to it, add it yourself.
Code: Select all
ln -s /usr/lib/libncurses.so /usr/lib/libcurses.so
Last edited by Nach on Thu Sep 14, 2006 3:33 am, edited 1 time in total.
May 9 2007 - NSRT 3.4, now with lots of hashing and even more accurate information! Go download it.
_____________
Insane Coding
_____________
Insane Coding
Ah, excellent, that did the trickNach wrote:If you have ncurses but no curses link to it, add it yourself.
Code: Select all
ln -s /usr/lib/libcurses.so /usr/lib/libncurses.so
