diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-04-06 00:30:58 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-04-06 00:30:58 +0000 |
commit | fe97209eb7655d3b7347d3e00690fcd8315abd47 (patch) | |
tree | aba69b7f817ef1c389dabd9eab881bddea71329d /www/cherokee/files/patch-aa | |
parent | Fix dependency list: graphics/xanim -> multimedia/xanim (diff) |
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>
Notes
Notes:
svn path=/head/; revision=78374
Diffstat (limited to 'www/cherokee/files/patch-aa')
-rw-r--r-- | www/cherokee/files/patch-aa | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/www/cherokee/files/patch-aa b/www/cherokee/files/patch-aa new file mode 100644 index 000000000000..7cd751ce8f59 --- /dev/null +++ b/www/cherokee/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); + |