Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 2897 - no shared libs for ncurses
Summary: no shared libs for ncurses
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Development (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Brandon Low (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-05-21 14:37 UTC by Pete Shinners
Modified: 2003-02-04 19:42 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Pete Shinners 2002-05-21 14:37:18 UTC
when installing the ncurses ebuild, it does not install the .so shared libaries.
the configure call does include "--with-shared", but later when installing it
uses this line..

"mv *.a ../usr/lib"

i'm guessing it should be something like this?

"mv *.a *.so ../usr/lib"

anyways, i found this when compiling some other software that seems to only
build with the shared version of ncurses.
Comment 1 Martin Schlemmer (RETIRED) gentoo-dev 2002-08-06 15:37:57 UTC
azarah@nosferatu azarah $ ls /lib/libncurses.so*
/lib/libncurses.so  /lib/libncurses.so.5  /lib/libncurses.so.5.2
azarah@nosferatu azarah $ 

We only move the static ones to /usr/lib, as some stuff that you could need
before /usr is mounted uses ncurses.

Also, if not finding the shared version, then you are prob using an old
gcc-3.0.4/gcc-3.1.  Update to gcc-3.1.1-r1 to have it fixed.