curses/ncurses

Linux specific questions.
podvornyak
Posts: 148
Joined: Nov 12, 2007 11:46
Location: Russia

Re: curses/ncurses

Post by podvornyak »

Created a link to libncurses.so.5.9 as libtinfo.so.5. ROSA Linux. Fork of Mandriva. Everything seems working fine. freebasic 1.1.0 + gtk3 + GL
Image
D.J.Peters
Posts: 8586
Joined: May 28, 2005 3:28
Contact:

Re: curses/ncurses

Post by D.J.Peters »

podvornyak wrote:Created a link to libncurses.so.5.9 as libtinfo.so.5. ROSA Linux. Fork of Mandriva. Everything seems working fine.
D.J.Peters wrote:... search for libncurses* and make a link to the lib you found.

example:
ln -s /usr/lib/libtinfo.so.5 /usr/libncurses.so
Can someone add this useful info to the wiki please?

Joshy
TJF
Posts: 3809
Joined: Dec 06, 2009 22:27
Location: N47°, E15°
Contact:

Re: curses/ncurses

Post by TJF »

D.J.Peters wrote:Can someone add this useful info to the wiki please?
Good idea!

You should be able to login to the WiKi pages and edit them by yourself. It's the same amount of work as writing this post.

@podvornyak

Is it 32 or 64 bit?
podvornyak
Posts: 148
Joined: Nov 12, 2007 11:46
Location: Russia

Re: curses/ncurses

Post by podvornyak »

TJF wrote:Is it 32 or 64 bit?
64 bit... Image is not displaying?
podvornyak
Posts: 148
Joined: Nov 12, 2007 11:46
Location: Russia

Re: curses/ncurses

Post by podvornyak »

D.J.Peters wrote:
podvornyak wrote:Created a link to libncurses.so.5.9 as libtinfo.so.5. ROSA Linux. Fork of Mandriva. Everything seems working fine.
D.J.Peters wrote:... search for libncurses* and make a link to the lib you found.

example:
ln -s /usr/lib/libtinfo.so.5 /usr/libncurses.so
Can someone add this useful info to the wiki please?

Joshy
Make no misstake about linking...

Code: Select all

sudo ln -s /lib64/libncurses.so.5.9 /lib64/libtinfo.so.5
In that order. [FILE] [LINK]
D.J.Peters
Posts: 8586
Joined: May 28, 2005 3:28
Contact:

Re: curses/ncurses

Post by D.J.Peters »

podvornyak wrote:Make no misstake about linking...
yes it's a typo

ln -s TARGET LINK

Joshy
Post Reply