brianteeter

Well-Known Member
Jan 6, 2002
72
0
306
Any ideas? I've installed every RPM for ncurses I can find, but nothing seems to fix this.

Thanks in advance,

Brian

root@assortedinternet2 [~/buildapache]# ./buildapache
make: Entering directory `/root/buildapache/lxdialog'
rm -f core *.o *~ lxdialog
make: Leaving directory `/root/buildapache/lxdialog'
make: Entering directory `/root/buildapache/lxdialog'
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE -I/usr/incl
ude/ncurses -DCURSES_LOC=&&ncurses.h&& -c -o lxdialog.o lxdialog.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE -I/usr/incl
ude/ncurses -DCURSES_LOC=&&ncurses.h&& -c -o checklist.o checklist.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE -I/usr/incl
ude/ncurses -DCURSES_LOC=&&ncurses.h&& -c -o menubox.o menubox.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE -I/usr/incl
ude/ncurses -DCURSES_LOC=&&ncurses.h&& -c -o textbox.o textbox.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE -I/usr/incl
ude/ncurses -DCURSES_LOC=&&ncurses.h&& -c -o yesno.o yesno.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE -I/usr/incl
ude/ncurses -DCURSES_LOC=&&ncurses.h&& -c -o inputbox.o inputbox.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE -I/usr/incl
ude/ncurses -DCURSES_LOC=&&ncurses.h&& -c -o util.o util.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DLOCALE -I/usr/incl
ude/ncurses -DCURSES_LOC=&&ncurses.h&& -c -o msgbox.o msgbox.c
gcc -s -L . lxdialog.o checklist.o menubox.o textbox.o yesno.o inputbox.o
util.o msgbox.o -lncurses -o lxdialog
/usr/bin/ld: cannot find -lncurses
collect2: ld returned 1 exit status
make: *** [lxdialog] Error 1
make: Leaving directory `/root/buildapache/lxdialog'
 

jumpdomain

Well-Known Member
Aug 12, 2001
109
0
316
Don't really know if it makes a difference... However, you can try installing it with:
sh buildapache
 

feanor

Well-Known Member
Aug 13, 2001
835
0
316
Try grabbing the ncurses source from freshmeat and/or sourceforge, compile it by hand.....

don't forget to run ldconfig afterwards, in case any thing was altered along those lines.

g00d luck
 

brianteeter

Well-Known Member
Jan 6, 2002
72
0
306
Next problem...

Apache builds now, but not all the modules are there, particularly mod_so isn't in libexec. This is all I have:

httpd.exp libphp4.so* mod_log_bytes.so* mod_rewrite.so*

On the previous server that I setup there were:

httpd.exp libphp4.so* mod_auth_mysql.so* mod_expires.so* mod_log_bytes.so*
../ libdav.so* mod_attach.so* mod_bwlimited.so* mod_jk.so* mod_rewrite.so*

so something is missing...

Any ideas?

Thanks for the help with ncurses!

Brian