diff options
author | Koen Kooi <koen@openembedded.org> | 2007-02-16 11:57:17 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-02-16 11:57:17 +0000 |
commit | 277af2f09d9b9c8f18a0b159e1d0d03f104df6c6 (patch) | |
tree | 47086952bc453a26cb9a8bc8596f57b35b730ebb /packages/lighttpd/1.4.13 | |
parent | 9cd040773b73fef2dbcad2a9b5e07c784065074c (diff) | |
parent | 8ac98dee22a516f221971c051de11681618dbebb (diff) |
merge of '471af30b8adb13fb7681f57fbf429fee02749677'
and 'c75dc8320db6dd7f35c858791b148fbb1200f82c'
Diffstat (limited to 'packages/lighttpd/1.4.13')
-rw-r--r-- | packages/lighttpd/1.4.13/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/lighttpd/1.4.13/configure.in.patch | 28 | ||||
-rw-r--r-- | packages/lighttpd/1.4.13/src-server.c.patch | 22 |
3 files changed, 0 insertions, 50 deletions
diff --git a/packages/lighttpd/1.4.13/.mtn2git_empty b/packages/lighttpd/1.4.13/.mtn2git_empty deleted file mode 100644 index e69de29bb2..0000000000 --- a/packages/lighttpd/1.4.13/.mtn2git_empty +++ /dev/null diff --git a/packages/lighttpd/1.4.13/configure.in.patch b/packages/lighttpd/1.4.13/configure.in.patch deleted file mode 100644 index f4db64d4fe..0000000000 --- a/packages/lighttpd/1.4.13/configure.in.patch +++ /dev/null @@ -1,28 +0,0 @@ -Index: lighttpd-1.4.13-r0/lighttpd-1.4.13/configure.in -=================================================================== ---- lighttpd-1.4.13-r0.orig/lighttpd-1.4.13/configure.in 2006-10-09 18:19:34.000000000 +0200 -+++ lighttpd-1.4.13-r0/lighttpd-1.4.13/configure.in 2006-12-07 22:31:52.000000000 +0100 -@@ -250,23 +250,9 @@ - [WITH_PCRE=$withval],[WITH_PCRE=yes]) - AC_MSG_RESULT([$WITH_PCRE]) - --if test "x$cross_compiling" = xno -a "$WITH_PCRE" != "no"; then -- AC_PATH_PROG(PCRECONFIG, pcre-config) - -- if test x"$PCRECONFIG" != x; then -- PCRE_LIB=`$PCRECONFIG --libs` -- CPPFLAGS="$CPPFLAGS `$PCRECONFIG --cflags`" -- OLDLIBS="$LIBS" -- LIBS="$LIBS $PCRE_LIB" -- AC_CHECK_LIB(pcre, pcre_compile, [ -- AC_CHECK_HEADERS([pcre.h], [ - AC_DEFINE([HAVE_LIBPCRE], [1], [libpcre]) - AC_DEFINE([HAVE_PCRE_H], [1]) -- ]) -- ]) -- LIBS="$OLDLIBS" -- fi --fi - - AC_SUBST(PCRE_LIB) - diff --git a/packages/lighttpd/1.4.13/src-server.c.patch b/packages/lighttpd/1.4.13/src-server.c.patch deleted file mode 100644 index 6ca0c9ea40..0000000000 --- a/packages/lighttpd/1.4.13/src-server.c.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- lighttpd/src/server.c.orig 2006-03-04 09:12:17.000000000 -0800 -+++ lighttpd/src/server.c 2006-07-11 09:16:28.000000000 -0700 -@@ -1174,8 +1174,8 @@ - if (srv->sockets_disabled) { - /* our server sockets are disabled, why ? */ - -- if ((srv->cur_fds + srv->want_fds < srv->max_fds * 0.8) && /* we have enough unused fds */ -- (srv->conns->used < srv->max_conns * 0.9) && -+ if ((srv->cur_fds + srv->want_fds < srv->max_fds * 8 / 10) && /* we have enough unused fds */ -+ (srv->conns->used < srv->max_conns * 9 / 10) && - (0 == graceful_shutdown)) { - for (i = 0; i < srv->srv_sockets.used; i++) { - server_socket *srv_socket = srv->srv_sockets.ptr[i]; -@@ -1187,7 +1187,7 @@ - srv->sockets_disabled = 0; - } - } else { -- if ((srv->cur_fds + srv->want_fds > srv->max_fds * 0.9) || /* out of fds */ -+ if ((srv->cur_fds + srv->want_fds > srv->max_fds * 9 / 10) || /* out of fds */ - (srv->conns->used > srv->max_conns) || /* out of connections */ - (graceful_shutdown)) { /* graceful_shutdown */ - |