SOURCES: lighttpd-branch.diff - branches/lighttpd-1.4.x diff (revi...
glen
glen at pld-linux.org
Mon Feb 19 21:03:12 CET 2007
Author: glen Date: Mon Feb 19 20:03:11 2007 GMT
Module: SOURCES Tag: HEAD
---- Log message:
- branches/lighttpd-1.4.x diff (revision 1664)
---- Files affected:
SOURCES:
lighttpd-branch.diff (1.11 -> 1.12)
---- Diffs:
================================================================
Index: SOURCES/lighttpd-branch.diff
diff -u SOURCES/lighttpd-branch.diff:1.11 SOURCES/lighttpd-branch.diff:1.12
--- SOURCES/lighttpd-branch.diff:1.11 Thu Sep 7 00:10:08 2006
+++ SOURCES/lighttpd-branch.diff Mon Feb 19 21:03:06 2007
@@ -1,60109 +1,399 @@
---- ../lighttpd-1.4.11/NEWS 2006-03-09 19:34:33.000000000 +0200
-+++ lighttpd-1.5.0/NEWS 2006-07-16 00:26:05.000000000 +0300
-@@ -3,6 +3,23 @@
- NEWS
- ====
-
-+- 1.4.12 - 2006-..-..
-+
-+ * added handling of Content-Range to PUT requests in mod_webdav
-+ * added handling of ETag and If-Modified-Since to mod_compress if
-+ cache-dir is not set
-+ * added experimental LOCK support for mod_webdav
-+ * added support for X-Sendfile as addition to X-LIGHTTPD-send-file.
-+ This allows compatibility with mod_xsendfile for apache
-+ (http://celebnamer.celebworld.ws/stuff/mod_xsendfile/)
-+ * fixed handling of If-Modified-Since if Etag is not set
-+ * fixed hanging fastcgi connections
-+ * fixed stalling SSL POST requests
-+ * fixed round-robin load-balancing in mod_proxy
-+ * TODO: add fail-over to mod-proxy
-+ * TODO: fix CACHE_HIT/MISS in mod_cml
-+ * TODO: finish LOCK/UNLOCK in mod_webdav
-+
- - 1.4.11 - 2006-03-09
-
- * added ability to specify which ip address spawn-fci listens on
---- ../lighttpd-1.4.11/configure.in 2006-03-04 16:32:38.000000000 +0200
-+++ lighttpd-1.5.0/configure.in 2006-09-07 00:57:05.000000000 +0300
-@@ -1,7 +1,7 @@
- # -*- Autoconf -*-
- # Process this file with autoconf to produce a configure script.
- AC_PREREQ(2.57)
--AC_INIT(lighttpd, 1.4.11, jan at kneschke.de)
-+AC_INIT(lighttpd, 1.5.0, jan at kneschke.de)
- AC_CONFIG_SRCDIR([src/server.c])
-
- AC_CANONICAL_TARGET
-@@ -66,7 +66,7 @@
- AC_TYPE_PID_T
- AC_TYPE_SIZE_T
-
--AC_CHECK_MEMBER(struct tm.tm_gmtoff,AC_DEFINE([HAVE_STRUCT_TM_GMTOFF],[1],[gmtoff in struct tm]),,[#include <time.h>])
-+AC_CHECK_MEMBER(struct tm.tm_gmtoff,[AC_DEFINE([HAVE_STRUCT_TM_GMTOFF],[1],[gmtoff in struct tm])],,[#include <time.h>])
- AC_CHECK_TYPES(struct sockaddr_storage,,,[#include <sys/socket.h>])
- AC_CHECK_TYPES(socklen_t,,,[#include <sys/types.h>
- #include <sys/socket.h>])
-@@ -339,6 +339,22 @@
- AC_DEFINE([HAVE_SQLITE3], [1], [libsqlite3])
- AC_DEFINE([HAVE_SQLITE3_H], [1], [sqlite3.h])
- ])
-+
-+ AC_MSG_CHECKING(for locks in mod_webdav)
-+ AC_ARG_WITH(webdav-locks, AC_HELP_STRING([--with-webdav-locks],[locks in mod_webdav]),
-+ [WITH_WEBDAV_LOCKS=$withval],[WITH_WEBDAV_LOCKS=no])
-+ AC_MSG_RESULT([$WITH_WEBDAV_LOCKS])
-+
-+ if test "$WITH_WEBDAV_LOCKS" != "no"; then
-+ AC_CHECK_LIB(uuid, uuid_unparse, [
-+ AC_CHECK_HEADERS([uuid/uuid.h],[
-+ UUID_LIB=-luuid
-+ AC_DEFINE([HAVE_UUID], [1], [libuuid])
-+ AC_DEFINE([HAVE_UUID_H], [1], [uuid/uuid.h is available])
-+ ])
-+ ])
-+
-+ fi
- fi
-
- dnl Check for gdbm
-@@ -381,30 +397,11 @@
-
- AC_MSG_RESULT($WITH_LUA)
- if test "$WITH_LUA" != "no"; then
-- AC_PATH_PROG(LUACONFIG, lua-config)
--
-- if test x"$LUACONFIG" != x; then
-- LUA_CFLAGS=`$LUACONFIG --include`
-- LUA_LIBS=`$LUACONFIG --libs --extralibs`
-+ # try pkgconfig
-+ PKG_CHECK_MODULES(LUA, lua >= 5.1, [
- AC_DEFINE([HAVE_LUA], [1], [liblua])
- AC_DEFINE([HAVE_LUA_H], [1], [lua.h])
-- else
-- AC_CHECK_LIB(lua, lua_open, [
-- AC_CHECK_HEADERS([lua.h],[
-- LUA_LIBS="-llua -llualib"
-- AC_DEFINE([HAVE_LUA], [1], [liblua])
-- AC_DEFINE([HAVE_LUA_H], [1], [lua.h])
-- ])
-- ])
-- fi
--
-- if test x"$LUA_LIBS" = x; then
-- # try pkgconfig
-- PKG_CHECK_MODULES(LUA, lua, [
-- AC_DEFINE([HAVE_LUA], [1], [liblua])
-- AC_DEFINE([HAVE_LUA_H], [1], [lua.h])
-- ])
-- fi
-+ ])
-
- AC_SUBST(LUA_CFLAGS)
- AC_SUBST(LUA_LIBS)
-@@ -440,8 +437,8 @@
- esac
-
- AC_CHECK_FUNCS([dup2 getcwd inet_ntoa inet_ntop memset mmap munmap strchr \
-- strdup strerror strstr strtol sendfile getopt socket \
-- gethostbyname poll sigtimedwait epoll_ctl getrlimit chroot \
-+ strdup strerror strstr strtol sendfile getopt socket lstat \
-+ gethostbyname poll sigtimedwait epoll_ctl getrlimit chroot strptime \
- getuid select signal pathconf madvise posix_fadvise posix_madvise \
- writev sigaction sendfile64 send_file kqueue port_create localtime_r])
-
-@@ -519,7 +516,7 @@
-
-
- if test "${GCC}" = "yes"; then
-- CFLAGS="${CFLAGS} -Wall -W -Wshadow -pedantic"
-+ CFLAGS="${CFLAGS} -Wall -W -Wshadow -pedantic -std=gnu99"
- fi
-
- dnl build version-id
-@@ -538,7 +535,7 @@
- AC_OUTPUT
-
-
--do_build="mod_cgi mod_fastcgi mod_proxy mod_evhost mod_simple_vhost mod_access mod_alias mod_setenv mod_usertrack mod_auth mod_status mod_accesslog mod_rrdtool mod_secdownload mod_expire mod_compress mod_dirlisting mod_indexfiles mod_userdir mod_webdav mod_staticfile mod_scgi"
-+do_build="mod_cgi mod_fastcgi mod_proxy mod_evhost mod_simple_vhost mod_access mod_alias mod_setenv mod_usertrack mod_auth mod_status mod_accesslog mod_rrdtool mod_secdownload mod_expire mod_compress mod_dirlisting mod_indexfiles mod_userdir mod_webdav mod_staticfile mod_scgi mod_flv_streaming"
-
- plugins="mod_rewrite mod_redirect mod_ssi mod_trigger_b4_dl"
- features="regex-conditionals"
-@@ -642,6 +639,14 @@
- disable_feature="$disable_feature $features"
- fi
-
-+features="webdav-locks"
-+if test "x$UUID_LIB" \!= x; then
-+ enable_feature="$enable_feature $features"
-+else
-+ disable_feature="$disable_feature $features"
-+fi
-+
-+
- ## output
-
- $ECHO
---- ../lighttpd-1.4.11/cygwin/lighttpd.README 2006-03-07 14:22:19.000000000 +0200
-+++ lighttpd-1.5.0/cygwin/lighttpd.README 2006-09-07 01:00:40.000000000 +0300
-@@ -1,114 +1,114 @@
--lighttpd
--------------------------------------------
--A fast, secure and flexible webserver
--
--Runtime requirements:
-- cygwin-1.5.10 or newer
-- crypt-1.1 or newer
-- libbz2_1-1.0.2 or newer
-- libpcre0-4.5 or newer
-- openssl-0.9.7d or newer
-- zlib-1.2.1 or newer
--
--Build requirements:
-- cygwin-1.5.10 or newer
-- gcc-3.3.1-3 or newer
-- binutils-20030901-1 or newer
-- crypt
-- openssl-devel
-- openssl
-- openldap
-- openldap-devel
-- zlib
-- bzip2
--
--Canonical homepage:
-- http://jan.kneschke.de/projects/lighttpd/
--
--Canonical download:
-- http://jan.kneschke.de/projects/lighttpd/download
--
--------------------------------------
--
--Build instructions:
-- unpack lighttpd-1.4.11-<REL>-src.tar.bz2
-- if you use setup to install this src package, it will be
-- unpacked under /usr/src automatically
-- cd /usr/src
-- ./lighttpd-1.4.11-<REL>.sh all
--
--This will create:
-- /usr/src/lighttpd-1.4.11-<REL>.tar.bz2
-- /usr/src/lighttpd-1.4.11-<REL>-src.tar.bz2
--
--Or use './lighttpd-1.4.11-<REL>.sh prep' to get a patched source directory
--
---------------------------------------------
--
--Files included in the binary distribution:
--
-- /etc/lighttpd/lighttpd.conf.default
-- /usr/lib/cyglightcomp.dll
-- /usr/lib/lighttpd/mod_access.dll
-- /usr/lib/lighttpd/mod_accesslog.dll
-- /usr/lib/lighttpd/mod_auth.dll
-- /usr/lib/lighttpd/mod_cgi.dll
-- /usr/lib/lighttpd/mod_compress.dll
-- /usr/lib/lighttpd/mod_evhost.dll
-- /usr/lib/lighttpd/mod_expire.dll
-- /usr/lib/lighttpd/mod_fastcgi.dll
-- /usr/lib/lighttpd/mod_httptls.dll
-- /usr/lib/lighttpd/mod_maps.dll
-- /usr/lib/lighttpd/mod_proxy.dll
-- /usr/lib/lighttpd/mod_redirect.dll
-- /usr/lib/lighttpd/mod_rewrite.dll
-- /usr/lib/lighttpd/mod_rrdtool.dll
-- /usr/lib/lighttpd/mod_secdownload.dll
-- /usr/lib/lighttpd/mod_simple_vhost.dll
-- /usr/lib/lighttpd/mod_ssi.dll
-- /usr/lib/lighttpd/mod_status.dll
-- /usr/lib/lighttpd/mod_usertrack.dll
-- /usr/sbin/lighttpd.exe
-- /usr/share/doc/Cygwin/lighttpd-1.3.0.README
-- /usr/share/doc/lighttpd-1.3.0/accesslog.txt
-- /usr/share/doc/lighttpd-1.3.0/authentification.txt
-- /usr/share/doc/lighttpd-1.3.0/AUTHORS
-- /usr/share/doc/lighttpd-1.3.0/cgi.txt
-- /usr/share/doc/lighttpd-1.3.0/ChangeLog
-- /usr/share/doc/lighttpd-1.3.0/compress.txt
-- /usr/share/doc/lighttpd-1.3.0/configuration.txt
-- /usr/share/doc/lighttpd-1.3.0/COPYING
-- /usr/share/doc/lighttpd-1.3.0/fastcgi-state.txt
-- /usr/share/doc/lighttpd-1.3.0/fastcgi.txt
-- /usr/share/doc/lighttpd-1.3.0/features.txt
-- /usr/share/doc/lighttpd-1.3.0/INSTALL
-- /usr/share/doc/lighttpd-1.3.0/NEWS
-- /usr/share/doc/lighttpd-1.3.0/performance.txt
-- /usr/share/doc/lighttpd-1.3.0/plugins.txt
-- /usr/share/doc/lighttpd-1.3.0/proxy.txt
-- /usr/share/doc/lighttpd-1.3.0/README
-- /usr/share/doc/lighttpd-1.3.0/redirect.txt
-- /usr/share/doc/lighttpd-1.3.0/rewrite.txt
-- /usr/share/doc/lighttpd-1.3.0/rrdtool.txt
-- /usr/share/doc/lighttpd-1.3.0/secdownload.txt
-- /usr/share/doc/lighttpd-1.3.0/security.txt
-- /usr/share/doc/lighttpd-1.3.0/simple-vhost.txt
-- /usr/share/doc/lighttpd-1.3.0/skeleton.txt
-- /usr/share/doc/lighttpd-1.3.0/ssi.txt
-- /usr/share/doc/lighttpd-1.3.0/state.txt
-- /usr/share/man/man1/lighttpd.1.gz
--
--------------------
--
--Port Notes:
--
------------ lighttpd-1.3.1-1 -----------
--
--Updated to 1.3.1
--
------------ lighttpd-1.3.0-1 -----------
--Initial release
--
--Cygwin port maintained by: Jan Kneschke <jan at kneschke.de>
--Please address all questions to the Cygwin mailing list at <cygwin at cygwin.com>
--
-+lighttpd
-+------------------------------------------
-+A fast, secure and flexible webserver
-+
-+Runtime requirements:
-+ cygwin-1.5.10 or newer
-+ crypt-1.1 or newer
-+ libbz2_1-1.0.2 or newer
-+ libpcre0-4.5 or newer
-+ openssl-0.9.7d or newer
-+ zlib-1.2.1 or newer
-+
-+Build requirements:
-+ cygwin-1.5.10 or newer
-+ gcc-3.3.1-3 or newer
-+ binutils-20030901-1 or newer
-+ crypt
-+ openssl-devel
-+ openssl
-+ openldap
-+ openldap-devel
-+ zlib
-+ bzip2
-+
-+Canonical homepage:
-+ http://jan.kneschke.de/projects/lighttpd/
-+
-+Canonical download:
-+ http://jan.kneschke.de/projects/lighttpd/download
-+
-+------------------------------------
-+
-+Build instructions:
-+ unpack lighttpd-1.5.0-<REL>-src.tar.bz2
-+ if you use setup to install this src package, it will be
-+ unpacked under /usr/src automatically
-+ cd /usr/src
-+ ./lighttpd-1.5.0-<REL>.sh all
-+
-+This will create:
-+ /usr/src/lighttpd-1.5.0-<REL>.tar.bz2
-+ /usr/src/lighttpd-1.5.0-<REL>-src.tar.bz2
-+
-+Or use './lighttpd-1.5.0-<REL>.sh prep' to get a patched source directory
-+
-+-------------------------------------------
-+
-+Files included in the binary distribution:
-+
-+ /etc/lighttpd/lighttpd.conf.default
-+ /usr/lib/cyglightcomp.dll
-+ /usr/lib/lighttpd/mod_access.dll
-+ /usr/lib/lighttpd/mod_accesslog.dll
-+ /usr/lib/lighttpd/mod_auth.dll
-+ /usr/lib/lighttpd/mod_cgi.dll
-+ /usr/lib/lighttpd/mod_compress.dll
-+ /usr/lib/lighttpd/mod_evhost.dll
-+ /usr/lib/lighttpd/mod_expire.dll
-+ /usr/lib/lighttpd/mod_fastcgi.dll
-+ /usr/lib/lighttpd/mod_httptls.dll
-+ /usr/lib/lighttpd/mod_maps.dll
-+ /usr/lib/lighttpd/mod_proxy.dll
-+ /usr/lib/lighttpd/mod_redirect.dll
-+ /usr/lib/lighttpd/mod_rewrite.dll
-+ /usr/lib/lighttpd/mod_rrdtool.dll
-+ /usr/lib/lighttpd/mod_secdownload.dll
-+ /usr/lib/lighttpd/mod_simple_vhost.dll
-+ /usr/lib/lighttpd/mod_ssi.dll
-+ /usr/lib/lighttpd/mod_status.dll
-+ /usr/lib/lighttpd/mod_usertrack.dll
-+ /usr/sbin/lighttpd.exe
-+ /usr/share/doc/Cygwin/lighttpd-1.3.0.README
-+ /usr/share/doc/lighttpd-1.3.0/accesslog.txt
-+ /usr/share/doc/lighttpd-1.3.0/authentification.txt
-+ /usr/share/doc/lighttpd-1.3.0/AUTHORS
-+ /usr/share/doc/lighttpd-1.3.0/cgi.txt
-+ /usr/share/doc/lighttpd-1.3.0/ChangeLog
-+ /usr/share/doc/lighttpd-1.3.0/compress.txt
-+ /usr/share/doc/lighttpd-1.3.0/configuration.txt
-+ /usr/share/doc/lighttpd-1.3.0/COPYING
-+ /usr/share/doc/lighttpd-1.3.0/fastcgi-state.txt
-+ /usr/share/doc/lighttpd-1.3.0/fastcgi.txt
-+ /usr/share/doc/lighttpd-1.3.0/features.txt
-+ /usr/share/doc/lighttpd-1.3.0/INSTALL
-+ /usr/share/doc/lighttpd-1.3.0/NEWS
-+ /usr/share/doc/lighttpd-1.3.0/performance.txt
-+ /usr/share/doc/lighttpd-1.3.0/plugins.txt
-+ /usr/share/doc/lighttpd-1.3.0/proxy.txt
-+ /usr/share/doc/lighttpd-1.3.0/README
-+ /usr/share/doc/lighttpd-1.3.0/redirect.txt
-+ /usr/share/doc/lighttpd-1.3.0/rewrite.txt
-+ /usr/share/doc/lighttpd-1.3.0/rrdtool.txt
-+ /usr/share/doc/lighttpd-1.3.0/secdownload.txt
-+ /usr/share/doc/lighttpd-1.3.0/security.txt
-+ /usr/share/doc/lighttpd-1.3.0/simple-vhost.txt
-+ /usr/share/doc/lighttpd-1.3.0/skeleton.txt
-+ /usr/share/doc/lighttpd-1.3.0/ssi.txt
-+ /usr/share/doc/lighttpd-1.3.0/state.txt
-+ /usr/share/man/man1/lighttpd.1.gz
-+
-+------------------
-+
-+Port Notes:
-+
-+---------- lighttpd-1.3.1-1 -----------
-+
-+Updated to 1.3.1
-+
-+---------- lighttpd-1.3.0-1 -----------
-+Initial release
-+
-+Cygwin port maintained by: Jan Kneschke <jan at kneschke.de>
-+Please address all questions to the Cygwin mailing list at <cygwin at cygwin.com>
-+
---- ../lighttpd-1.4.11/cygwin/lighttpd.README.in 2005-08-11 01:26:59.000000000 +0300
-+++ lighttpd-1.5.0/cygwin/lighttpd.README.in 2006-07-16 00:26:04.000000000 +0300
-@@ -1,114 +1,114 @@
--lighttpd
--------------------------------------------
--A fast, secure and flexible webserver
--
--Runtime requirements:
-- cygwin-1.5.10 or newer
-- crypt-1.1 or newer
-- libbz2_1-1.0.2 or newer
-- libpcre0-4.5 or newer
-- openssl-0.9.7d or newer
-- zlib-1.2.1 or newer
--
--Build requirements:
-- cygwin-1.5.10 or newer
-- gcc-3.3.1-3 or newer
-- binutils-20030901-1 or newer
-- crypt
-- openssl-devel
-- openssl
-- openldap
-- openldap-devel
-- zlib
-- bzip2
--
--Canonical homepage:
-- http://jan.kneschke.de/projects/lighttpd/
--
--Canonical download:
-- http://jan.kneschke.de/projects/lighttpd/download
--
--------------------------------------
--
--Build instructions:
-- unpack lighttpd- at VERSION@-<REL>-src.tar.bz2
-- if you use setup to install this src package, it will be
-- unpacked under /usr/src automatically
-- cd /usr/src
-- ./lighttpd- at VERSION@-<REL>.sh all
--
--This will create:
-- /usr/src/lighttpd- at VERSION@-<REL>.tar.bz2
-- /usr/src/lighttpd- at VERSION@-<REL>-src.tar.bz2
--
--Or use './lighttpd- at VERSION@-<REL>.sh prep' to get a patched source directory
--
---------------------------------------------
--
--Files included in the binary distribution:
--
-- /etc/lighttpd/lighttpd.conf.default
-- /usr/lib/cyglightcomp.dll
-- /usr/lib/lighttpd/mod_access.dll
-- /usr/lib/lighttpd/mod_accesslog.dll
-- /usr/lib/lighttpd/mod_auth.dll
-- /usr/lib/lighttpd/mod_cgi.dll
-- /usr/lib/lighttpd/mod_compress.dll
-- /usr/lib/lighttpd/mod_evhost.dll
-- /usr/lib/lighttpd/mod_expire.dll
-- /usr/lib/lighttpd/mod_fastcgi.dll
-- /usr/lib/lighttpd/mod_httptls.dll
-- /usr/lib/lighttpd/mod_maps.dll
-- /usr/lib/lighttpd/mod_proxy.dll
-- /usr/lib/lighttpd/mod_redirect.dll
-- /usr/lib/lighttpd/mod_rewrite.dll
-- /usr/lib/lighttpd/mod_rrdtool.dll
-- /usr/lib/lighttpd/mod_secdownload.dll
-- /usr/lib/lighttpd/mod_simple_vhost.dll
-- /usr/lib/lighttpd/mod_ssi.dll
-- /usr/lib/lighttpd/mod_status.dll
-- /usr/lib/lighttpd/mod_usertrack.dll
-- /usr/sbin/lighttpd.exe
-- /usr/share/doc/Cygwin/lighttpd-1.3.0.README
-- /usr/share/doc/lighttpd-1.3.0/accesslog.txt
-- /usr/share/doc/lighttpd-1.3.0/authentification.txt
-- /usr/share/doc/lighttpd-1.3.0/AUTHORS
-- /usr/share/doc/lighttpd-1.3.0/cgi.txt
-- /usr/share/doc/lighttpd-1.3.0/ChangeLog
-- /usr/share/doc/lighttpd-1.3.0/compress.txt
-- /usr/share/doc/lighttpd-1.3.0/configuration.txt
-- /usr/share/doc/lighttpd-1.3.0/COPYING
-- /usr/share/doc/lighttpd-1.3.0/fastcgi-state.txt
-- /usr/share/doc/lighttpd-1.3.0/fastcgi.txt
-- /usr/share/doc/lighttpd-1.3.0/features.txt
-- /usr/share/doc/lighttpd-1.3.0/INSTALL
-- /usr/share/doc/lighttpd-1.3.0/NEWS
-- /usr/share/doc/lighttpd-1.3.0/performance.txt
-- /usr/share/doc/lighttpd-1.3.0/plugins.txt
-- /usr/share/doc/lighttpd-1.3.0/proxy.txt
-- /usr/share/doc/lighttpd-1.3.0/README
-- /usr/share/doc/lighttpd-1.3.0/redirect.txt
-- /usr/share/doc/lighttpd-1.3.0/rewrite.txt
-- /usr/share/doc/lighttpd-1.3.0/rrdtool.txt
-- /usr/share/doc/lighttpd-1.3.0/secdownload.txt
-- /usr/share/doc/lighttpd-1.3.0/security.txt
-- /usr/share/doc/lighttpd-1.3.0/simple-vhost.txt
-- /usr/share/doc/lighttpd-1.3.0/skeleton.txt
-- /usr/share/doc/lighttpd-1.3.0/ssi.txt
-- /usr/share/doc/lighttpd-1.3.0/state.txt
-- /usr/share/man/man1/lighttpd.1.gz
--
--------------------
--
--Port Notes:
--
------------ lighttpd-1.3.1-1 -----------
--
--Updated to 1.3.1
--
------------ lighttpd-1.3.0-1 -----------
--Initial release
--
--Cygwin port maintained by: Jan Kneschke <jan at kneschke.de>
--Please address all questions to the Cygwin mailing list at <cygwin at cygwin.com>
--
-+lighttpd
-+------------------------------------------
-+A fast, secure and flexible webserver
-+
-+Runtime requirements:
-+ cygwin-1.5.10 or newer
-+ crypt-1.1 or newer
-+ libbz2_1-1.0.2 or newer
-+ libpcre0-4.5 or newer
-+ openssl-0.9.7d or newer
-+ zlib-1.2.1 or newer
-+
-+Build requirements:
-+ cygwin-1.5.10 or newer
-+ gcc-3.3.1-3 or newer
-+ binutils-20030901-1 or newer
-+ crypt
-+ openssl-devel
-+ openssl
-+ openldap
-+ openldap-devel
-+ zlib
-+ bzip2
-+
-+Canonical homepage:
-+ http://jan.kneschke.de/projects/lighttpd/
-+
-+Canonical download:
-+ http://jan.kneschke.de/projects/lighttpd/download
-+
-+------------------------------------
-+
-+Build instructions:
-+ unpack lighttpd- at VERSION@-<REL>-src.tar.bz2
-+ if you use setup to install this src package, it will be
-+ unpacked under /usr/src automatically
-+ cd /usr/src
-+ ./lighttpd- at VERSION@-<REL>.sh all
-+
-+This will create:
-+ /usr/src/lighttpd- at VERSION@-<REL>.tar.bz2
-+ /usr/src/lighttpd- at VERSION@-<REL>-src.tar.bz2
-+
-+Or use './lighttpd- at VERSION@-<REL>.sh prep' to get a patched source directory
-+
-+-------------------------------------------
-+
-+Files included in the binary distribution:
-+
-+ /etc/lighttpd/lighttpd.conf.default
-+ /usr/lib/cyglightcomp.dll
-+ /usr/lib/lighttpd/mod_access.dll
-+ /usr/lib/lighttpd/mod_accesslog.dll
-+ /usr/lib/lighttpd/mod_auth.dll
-+ /usr/lib/lighttpd/mod_cgi.dll
-+ /usr/lib/lighttpd/mod_compress.dll
-+ /usr/lib/lighttpd/mod_evhost.dll
-+ /usr/lib/lighttpd/mod_expire.dll
-+ /usr/lib/lighttpd/mod_fastcgi.dll
-+ /usr/lib/lighttpd/mod_httptls.dll
-+ /usr/lib/lighttpd/mod_maps.dll
-+ /usr/lib/lighttpd/mod_proxy.dll
-+ /usr/lib/lighttpd/mod_redirect.dll
-+ /usr/lib/lighttpd/mod_rewrite.dll
-+ /usr/lib/lighttpd/mod_rrdtool.dll
-+ /usr/lib/lighttpd/mod_secdownload.dll
-+ /usr/lib/lighttpd/mod_simple_vhost.dll
-+ /usr/lib/lighttpd/mod_ssi.dll
-+ /usr/lib/lighttpd/mod_status.dll
-+ /usr/lib/lighttpd/mod_usertrack.dll
-+ /usr/sbin/lighttpd.exe
-+ /usr/share/doc/Cygwin/lighttpd-1.3.0.README
-+ /usr/share/doc/lighttpd-1.3.0/accesslog.txt
-+ /usr/share/doc/lighttpd-1.3.0/authentification.txt
-+ /usr/share/doc/lighttpd-1.3.0/AUTHORS
-+ /usr/share/doc/lighttpd-1.3.0/cgi.txt
-+ /usr/share/doc/lighttpd-1.3.0/ChangeLog
-+ /usr/share/doc/lighttpd-1.3.0/compress.txt
-+ /usr/share/doc/lighttpd-1.3.0/configuration.txt
-+ /usr/share/doc/lighttpd-1.3.0/COPYING
-+ /usr/share/doc/lighttpd-1.3.0/fastcgi-state.txt
-+ /usr/share/doc/lighttpd-1.3.0/fastcgi.txt
-+ /usr/share/doc/lighttpd-1.3.0/features.txt
-+ /usr/share/doc/lighttpd-1.3.0/INSTALL
-+ /usr/share/doc/lighttpd-1.3.0/NEWS
-+ /usr/share/doc/lighttpd-1.3.0/performance.txt
-+ /usr/share/doc/lighttpd-1.3.0/plugins.txt
-+ /usr/share/doc/lighttpd-1.3.0/proxy.txt
-+ /usr/share/doc/lighttpd-1.3.0/README
-+ /usr/share/doc/lighttpd-1.3.0/redirect.txt
-+ /usr/share/doc/lighttpd-1.3.0/rewrite.txt
-+ /usr/share/doc/lighttpd-1.3.0/rrdtool.txt
-+ /usr/share/doc/lighttpd-1.3.0/secdownload.txt
-+ /usr/share/doc/lighttpd-1.3.0/security.txt
-+ /usr/share/doc/lighttpd-1.3.0/simple-vhost.txt
-+ /usr/share/doc/lighttpd-1.3.0/skeleton.txt
<<Diff was trimmed, longer than 597 lines>>
---- CVS-web:
http://cvs.pld-linux.org/SOURCES/lighttpd-branch.diff?r1=1.11&r2=1.12&f=u
More information about the pld-cvs-commit
mailing list