From: Mij <mi...@bi...> - 2007-10-02 17:40:28
|
On 02/ott/07, at 18:09, Steve Ochani wrote: > OK I got the configure command to go through by using > > ./configure --with-firewall=ipfilter > > However now when I ran make I got the error: > > > gcc -DHAVE_CONFIG_H -I. -I. -I. -I. -O2 -c `test -f > 'simclist.c' || echo './'`simclist.c > simclist.c:6:20: stdint.h: No such file or directory > make[3]: *** [simclist.o] Error 1 > make[3]: Leaving directory `/export/home/steve/ipf/ > sshguard-1.1beta3/sshguard-1.1beta3/src' > make[2]: *** [all-recursive] Error 1 > make[2]: Leaving directory `/export/home/steve/ipf/ > sshguard-1.1beta3/sshguard-1.1beta3/src' > make[1]: *** [all] Error 2 > make[1]: Leaving directory `/export/home/steve/ipf/ > sshguard-1.1beta3/sshguard-1.1beta3/src' > make: *** [all-recursive] Error 1 Older solaris releases do not appear to have stdint.h try this one: edit src/simclist.c replace #include <stdint.h> with #include <inttypes.h> let me know in case it doesn't get ok |