Bug 75282

Summary: No curses/termcap library found
Product: [Retired] Red Hat Linux Reporter: Need Real Name <ian.harris>
Component: ncursesAssignee: Eido Inoue <havill>
Status: CLOSED WORKSFORME QA Contact: Jay Turner <jturner>
Severity: medium Docs Contact:
Priority: medium    
Version: 8.0CC: srevivo
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2003-01-20 21:52:25 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Need Real Name 2002-10-06 19:16:43 UTC
From Bugzilla Helper:
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; Q312461; .NET 
CLR 1.0.3705)

Description of problem:
Problem configuring MySQL-3.23.52 from source code on Red Hat 8.0 being unable 
to locate the libncurses library.

Version-Release number of selected component (if applicable):


How reproducible:
Always

Steps to Reproduce:
1. Unpacking the source code for MySQL-3.23.52
2. Running ./configure

Actual Results:  The following error message occurred and thus stopped 
the "configure" process

checking for termcap functions library... configure: error: No
curses/termcap library found


Expected Results:  It should configure, so I can "make" then "make install"

Additional info:

I managed to workaround this with either:

./configure --with-named-curses-libs=/usr/lib/libncurses.so.5.2

or running

ln -s /usr/lib/libncurses.so.5.2 /usr/lib/libncurses.so

before being able to do "./configure" without arguments.  This symbolic link 
existed by default in previous versions.

Comment 1 Miloslav Trmac 2002-10-06 21:16:19 UTC
works for me:

$ ll /usr/lib/libncurses.so
lrwxrwxrwx    1 root     root           15 xmj  5 05:05 /usr/lib/libncurses.so
-> libncurses.so.5
$ rpm -qf /usr/lib/libncurses.so
ncurses-devel-5.2-28


Comment 2 Eido Inoue 2003-01-20 21:52:25 UTC
works for me as well. the loader should be making that symbolic link for you.