diff options
author | edwin <edwin@FreeBSD.org> | 2003-04-06 08:30:58 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-04-06 08:30:58 +0800 |
commit | 3e3eb6389bede9ff5cb97b4fe72f2b827bc538d5 (patch) | |
tree | 36e6346b34f9662bcb697434a594104efd7faa34 /www/cherokee-devel/files | |
parent | 59f9745afb4fa1efa3892e3084338d61b3e19a7f (diff) | |
download | freebsd-ports-gnome-3e3eb6389bede9ff5cb97b4fe72f2b827bc538d5.tar.gz freebsd-ports-gnome-3e3eb6389bede9ff5cb97b4fe72f2b827bc538d5.tar.zst freebsd-ports-gnome-3e3eb6389bede9ff5cb97b4fe72f2b827bc538d5.zip |
new port: www/cherokee
Cherokee is a tiny, ultrafast, lightweight Web server. It
is implemented entirely in C, and has no dependencies beyond
a standard C library. It provides only the most basic HTTP
functionality, but is extremely fast and small.
PR: ports/38092
Submitted by: silence <oksala@videotron.ca>
Diffstat (limited to 'www/cherokee-devel/files')
-rw-r--r-- | www/cherokee-devel/files/patch-aa | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/www/cherokee-devel/files/patch-aa b/www/cherokee-devel/files/patch-aa new file mode 100644 index 000000000000..7cd751ce8f59 --- /dev/null +++ b/www/cherokee-devel/files/patch-aa @@ -0,0 +1,43 @@ +--- src/cherokee.h.old Fri Dec 28 07:39:11 2001 ++++ src/cherokee.h Tue May 14 14:49:35 2002 +@@ -28,11 +28,11 @@ + #include <stdio.h> + #include <stdlib.h> + #include <string.h> ++#include <sys/types.h> + #include <netinet/in.h> + #include <sys/socket.h> + #include <sys/wait.h> + #include <sys/time.h> +-#include <sys/types.h> + #include <sys/stat.h> + #include <unistd.h> + #include <fcntl.h> +--- src/server.h.old Fri Dec 28 07:25:54 2001 ++++ src/server.h Tue May 14 14:49:35 2002 +@@ -26,9 +26,9 @@ + + #include <stdio.h> + #include <stdlib.h> +-#include <netinet/in.h> +-#include <sys/socket.h> + #include <sys/types.h> ++#include <sys/socket.h> ++#include <netinet/in.h> + + #include "configuration.h" + +--- src/socket.h.old Thu Dec 27 05:49:07 2001 ++++ src/socket.h Tue May 14 14:49:35 2002 +@@ -26,8 +26,11 @@ + + #include <stdio.h> + #include <stdlib.h> ++#include <string.h> ++#include <sys/types.h> + #include <sys/socket.h> + #include <sys/time.h> ++#include <unistd.h> + + int __inline socket_ready_to_read (int socket); + |