delorie.com/archives/browse.cgi | search |
Bob Rossi wrote: > [bar AT bar-nt ~/cvs/cgdb/builddir/tmp] $ cat foo.c > #include <curses.h> > > [bar AT bar-nt ~/cvs/cgdb/builddir/tmp] $ gcc -c foo.c > foo.c:1:20: curses.h: No such file or directory The ncurses headers live in /usr/include/ncurses. Normally this means that you need to arrange for -I/usr/include/ncurses in CFLAGS, which should be done by the autoconf macros that you use to detect curses libraries. However, the libncurses-devel postinstall creates a symbolic link from /usr/include/curses.h -> ncurses/curses.h, so even if your CFLAGS is wrong the above test should work. If you don't have that symlink then your install is borked. Brian -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |