Re: compiling woes (httping 0.0.3 make error)

2003-12-12 Thread Brian Ford
On Thu, 11 Dec 2003 [EMAIL PROTECTED] wrote: > Brian Ford wrote: > > [EMAIL PROTECTED] wrote: > > > $ make install > > > gcc -ansi -O2 -c -o error.o error.c > > > error.c:1:21: ncurses.h: No such file or directory > > > make: *** [error.o] Error 1 > > > > > Well, does /usr/include/ncurses.h exist

Re: compiling woes (httping 0.0.3 make error)

2003-12-11 Thread Dirk Sondermann
Hallo Michael, > > If not, using the setup package search facility available here > > http://cygwin.com/packages/ shows ncurses.h to be part of > > ncurses/ncurses-5.2-8. Is that installed? > Hum, shouldn't it be part of the successor version as well? ncurses-5.2-8 comprises binaries, documentat

Re: was: httping 0.0.3 make error

2003-12-11 Thread Dirk Sondermann
[EMAIL PROTECTED] wrote: Could it be possible that httping (or boxes) just won't compile for Cygwin? Hallo Michael, httping will compile, provided ncurses is installed. boxes requires the following modifications: * src/regexp/Makefile -traditional has to be removed from CFLAGS (as mention

compiling woes (httping 0.0.3 make error)

2003-12-11 Thread svartsjel
Hi Brian! > > $ make install > > gcc -ansi -O2 -c -o error.o error.c > > error.c:1:21: ncurses.h: No such file or directory > > make: *** [error.o] Error 1 > Well, does /usr/include/ncurses.h exist? No, I can't find ncurses.h anywhere, although ncurses had been installed. Entering the command:

Re: was: httping 0.0.3 make error

2003-12-10 Thread Brian Ford
On Wed, 10 Dec 2003 [EMAIL PROTECTED] wrote: > $ make install > gcc -ansi -O2 -c -o error.o error.c > error.c:1:21: ncurses.h: No such file or directory > make: *** [error.o] Error 1 > Well, does /usr/include/ncurses.h exist? If not, using the setup package search facility available here http://

was: httping 0.0.3 make error

2003-12-10 Thread svartsjel
Dirk Sondermann wrote: > try make CC='gcc -ansi' or replace the first line of the makefile by > CC=gcc -ansi. Hallo Dirk, Thanks for the reply. Taking your suggestion into account, I'll get (after updating the Makefile): $ make install gcc -ansi -O2 -c -o error.o error.c error.c:1:21: ncurse

Re: httping 0.0.3 make error

2003-12-08 Thread Dirk Sondermann
Hallo Michael, try make CC='gcc -ansi' or replace the first line of the makefile by CC=gcc -ansi. 'strip' will not be able to find the resulting executable unless the line strip httping is replaced by strip httping.exe . Dirk -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-sim

httping 0.0.3 make error

2003-12-08 Thread svartsjel
Hi, I didn't work with make so far, and would like to install httping 0.0.3 by Folkert van Heusden (http://osx.freshmeat.net/projects/httping) for the current Cygwin release. Did anyone manage to compile this program? I read the FAQ items concerning make and verified that MAKE_MODE is set to unix.