Ubuntu Forums Archive Viewer

curses package?

Archived thread 103684 from Packaging and Compiling Programs. Markdown source: Packaging_and_Compiling_Programs/thread_103684_curses_package.md

Original URL About this archive
#1

I'm trying to make an app called Edinburgh Speech Tools. During the make there is a call to g++ 3.3 with a number of options including "-lcurses". This fails with the message "/usr/bin/ld: cannot find "-lcurses".

Running the command "locate / curses" finds several files like /lib/ncursesxxx, but not /lib/cursesxxx. Am I missing a curses package? Where do I get this?

Might this be related to the message I get during ./configure that says something like "checking to see if compiler (gcc) works... no"?

Thanks!

#2

OK, I've solved the "Checking whether C-compiler (gcc) works... no" problem by reinstalling build-essentials and the rest of the gcc 4.0 packages.

Still have the same "-lcurses not found" error.

#3

have you tryed just installing the development files for ncurses? sudo apt-get install libncurses5-dev

#4

Thanks! That's it! :D

I got several of the other ncurses libs, but missed that one.