diff options
author | steve <steve@FreeBSD.org> | 2000-08-08 10:44:01 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-08-08 10:44:01 +0800 |
commit | 5d08683cb8daa4a3626d75ec793b7661233c1b1d (patch) | |
tree | b1a775fc05d3c784d0eb749b0f23a904ec47f774 | |
parent | 09d45e5a825a0e59681a39b1f55056e4e0a6314b (diff) | |
download | freebsd-ports-gnome-5d08683cb8daa4a3626d75ec793b7661233c1b1d.tar.gz freebsd-ports-gnome-5d08683cb8daa4a3626d75ec793b7661233c1b1d.tar.zst freebsd-ports-gnome-5d08683cb8daa4a3626d75ec793b7661233c1b1d.zip |
Use time_t instead of long for a couple of variables so this build again
on the Alpha.
-rw-r--r-- | www/fhttpd/files/patch-ah | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/fhttpd/files/patch-ah b/www/fhttpd/files/patch-ah new file mode 100644 index 000000000000..b49f82d9568e --- /dev/null +++ b/www/fhttpd/files/patch-ah @@ -0,0 +1,11 @@ +--- fhttpd-log.cc.orig Sun Aug 6 17:59:14 2000 ++++ fhttpd-log.cc Sun Aug 6 17:59:53 2000 +@@ -211,7 +211,7 @@ + int argc1; + char **argv1; + int i,human=1; +-long t_sec,t_usec; ++time_t t_sec,t_usec; + __s32 requestid,clientid,instid, + nrequestid,nclientid,ninstid,n_t_sec,n_t_usec; + char *configfile=FHTTPD_CONFIG_FILE; |