aboutsummaryrefslogtreecommitdiffstats
path: root/www/cherokee-devel/files
diff options
context:
space:
mode:
authoredwin <edwin@FreeBSD.org>2003-04-06 08:30:58 +0800
committeredwin <edwin@FreeBSD.org>2003-04-06 08:30:58 +0800
commit3e3eb6389bede9ff5cb97b4fe72f2b827bc538d5 (patch)
tree36e6346b34f9662bcb697434a594104efd7faa34 /www/cherokee-devel/files
parent59f9745afb4fa1efa3892e3084338d61b3e19a7f (diff)
downloadfreebsd-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-aa43
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);
+