head 1.5; access; symbols OPENPKG_E1_MP_HEAD:1.5 OPENPKG_E1_MP:1.5; locks; strict; comment @# @; 1.5 date 2006.10.10.05.53.59; author rse; state dead; branches; next 1.4; commitid DAaEwwOdKupNe6Qr; 1.4 date 2006.03.10.07.43.46; author rse; state Exp; branches; next 1.3; commitid AzQJnKfhmEdWIBor; 1.3 date 2006.02.23.20.41.39; author rse; state Exp; branches; next 1.2; commitid zewI0idszK7HvKmr; 1.2 date 2005.09.01.18.21.15; author rse; state dead; branches; next 1.1; 1.1 date 2005.08.31.07.46.50; author cs; state Exp; branches; next ; desc @@ 1.5 log @upgrading package: lighttpd 1.4.12 -> 1.4.13 @ text @Index: src/server.c --- src/server.c.orig 2006-03-04 18:12:17 +0100 +++ src/server.c 2006-03-10 08:40:37 +0100 @@@@ -217,6 +217,7 @@@@ CLEAN(srvconf.pid_file); CLEAN(srvconf.modules_dir); CLEAN(srvconf.network_backend); + CLEAN(srvconf.upload_tempdirs); CLEAN(tmp_chunk_len); #undef CLEAN @ 1.4 log @upgrading package: lighttpd 1.4.10 -> 1.4.11 @ text @@ 1.3 log @upgrading package: lighttpd 1.4.9 -> 1.4.10 @ text @d2 3 a4 4 --- src/server.c 2006-02-01 11:50:02.000000000 +0000 +++ src/server.c 2006-02-19 09:56:58.000000000 +0000 @@@@ -218,7 +218,9 @@@@ CLEAN(srvconf.event_handler); d7 3 a9 4 - + CLEAN(srvconf.network_backend); + CLEAN(srvconf.upload_tempdirs); + a11 1 @ 1.2 log @upgrading package: lighttpd 1.4.2 -> 1.4.3 @ text @d1 13 a13 6 -> http://trac.lighttpd.net/trac/changeset/649?format=diff --- branches/lighttpd-merge-1.4.x/configure.in (revision 648) +++ branches/lighttpd-merge-1.4.x/configure.in (revision 649) @@@@ -621,10 +621,10 @@@@ fi a14 22 ## post processing -do_build=`echo $do_build | sed 's/ /\n/g' | sort` -no_build=`echo $no_build | sed 's/ /\n/g' | sort` -enable_feature=`echo $enable_feature | sed 's/ /\n/g' | sort` -disable_feature=`echo $disable_feature | sed 's/ /\n/g' | sort` +do_build=`for i in $do_build; do echo $i; done | sort` +no_build=`for i in $no_build; do echo $i; done | sort` +enable_feature=`for i in $enable_feature; do echo $i; done | sort` +disable_feature=`for i in $disable_feature; do echo $i; done | sort` ## output --- branches/lighttpd-merge-1.4.x/src/fdevent_freebsd_kqueue.c (revision 648) +++ branches/lighttpd-merge-1.4.x/src/fdevent_freebsd_kqueue.c (revision 649) @@@@ -108,6 +108,7 @@@@ fprintf(stderr, "%s.%d: kqueue failed polling: %s\n", __FILE__, __LINE__, strerror(errno)); break; + } } return ret; @ 1.1 log @fixed build on FreeBDS 5 @ text @@