summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcvsdist <cvsdist@fedoraproject.org>2004-09-09 06:09:30 +0000
committercvsdist <cvsdist@fedoraproject.org>2004-09-09 06:09:30 +0000
commitd5ddf484988fae7a715f1688b4c821e29925e688 (patch)
treeb83af0b89528bb080a7e92ac534fa3a03eaf0cc0
parentf0ad17e6804bf90d1bc55f30f9d9535114448402 (diff)
downloadhttpd-d5ddf484988fae7a715f1688b4c821e29925e688.tar.gz
httpd-d5ddf484988fae7a715f1688b4c821e29925e688.tar.xz
httpd-d5ddf484988fae7a715f1688b4c821e29925e688.zip
auto-import changelog data from httpd-2.0.40-3.src.rpmhttpd-2_0_40-3
Mon Aug 26 2002 Joe Orton <jorton@redhat.com> 2.0.40-3 - allow "apachectl configtest" on a 1.3 httpd.conf - add mod_deflate - enable LDAP support in apr-util - don't package everything in /var/www/error as config(noreplace)
-rw-r--r--httpd-2.0.40-xfsz.patch11
-rwxr-xr-xhttpd.init4
-rw-r--r--httpd.spec23
3 files changed, 33 insertions, 5 deletions
diff --git a/httpd-2.0.40-xfsz.patch b/httpd-2.0.40-xfsz.patch
new file mode 100644
index 0000000..d6eabd6
--- /dev/null
+++ b/httpd-2.0.40-xfsz.patch
@@ -0,0 +1,11 @@
+--- ./server/mpm/prefork/prefork.c.xfsz Wed Jul 17 22:39:55 2002
++++ ./server/mpm/prefork/prefork.c Mon Aug 26 15:40:24 2002
+@@ -461,7 +461,7 @@
+ ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGXCPU)");
+ #endif
+ #ifdef SIGXFSZ
+- sa.sa_handler = SIG_DFL;
++ sa.sa_handler = SIG_IGN;
+ if (sigaction(SIGXFSZ, &sa, NULL) < 0)
+ ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGXFSZ)");
+ #endif
diff --git a/httpd.init b/httpd.init
index 7c08867..c8e8259 100755
--- a/httpd.init
+++ b/httpd.init
@@ -34,9 +34,9 @@ check13 () {
GONE="${GONE}AccessConfig|ResourceConfig)"
if grep -Eiq "^[[:space:]]*($GONE)" $CONFFILE; then
echo
- echo 1>&2 " apache 1.3 configuration directives found"
+ echo 1>&2 " Apache 1.3 configuration directives found"
echo 1>&2 " please read @docdir@/migration.html"
- failure "apache 1.3 config directives test"
+ failure "Apache 1.3 config directives test"
echo
exit 1
fi
diff --git a/httpd.spec b/httpd.spec
index 6528c32..58f9503 100644
--- a/httpd.spec
+++ b/httpd.spec
@@ -4,7 +4,7 @@
Summary: Apache HTTP Server
Name: httpd
Version: 2.0.40
-Release: 2
+Release: 3
URL: http://httpd.apache.org/
Vendor: Red Hat, Inc.
Source0: http://www.apache.org/dist/httpd/httpd-%{version}.tar.gz
@@ -24,10 +24,12 @@ Patch3: httpd-2.0.36-sslink.patch
# features/functional changes
Patch40: httpd-2.0.36-cnfdir.patch
Patch41: httpd-2.0.36-redhat.patch
+Patch42: httpd-2.0.40-xfsz.patch
License: Apache Software License
Group: System Environment/Daemons
BuildRoot: %{_tmppath}/%{name}-root
BuildPrereq: db4-devel, expat-devel, findutils, perl
+BuildPrereq: openldap-devel
Requires: /etc/mime.types, gawk, /usr/share/magic.mime, /usr/bin/find
Prereq: /sbin/chkconfig, /bin/mktemp, /bin/rm, /bin/mv
Prereq: sh-utils, textutils, /usr/sbin/useradd
@@ -85,6 +87,7 @@ Security (TLS) protocols.
%patch40 -p0 -b .cnfdir
%patch41 -p0 -b .redhat
+%patch42 -p0 -b .xfsz
# copy across the migration guide and sed it's location into apachectl
cp $RPM_SOURCE_DIR/migration.{html,css} .
@@ -95,6 +98,7 @@ cp $RPM_SOURCE_DIR/migration.{html,css} .
./buildconf
%build
+CFLAGS="$RPM_OPT_FLAGS" \
./configure \
--prefix=%{_sysconfdir}/httpd \
--exec-prefix=%{_prefix} \
@@ -114,8 +118,10 @@ cp $RPM_SOURCE_DIR/migration.{html,css} .
--with-suexec-bin=%{_sbindir}/suexec \
--with-suexec-uidmin=500 --with-suexec-gidmin=500 \
--enable-ssl --with-ssl \
+ --enable-deflate \
--enable-proxy --enable-proxy-connect \
- --enable-proxy-http --enable-proxy-ftp
+ --enable-proxy-http --enable-proxy-ftp \
+ --with-ldap-include=%{_includedir}/openldap --with-ldap
make
%install
@@ -294,8 +300,13 @@ rm -rf $RPM_BUILD_ROOT
%dir %{contentdir}/cgi-bin
%dir %{contentdir}/html
%dir %{contentdir}/icons
+%dir %{contentdir}/error
+%dir %{contentdir}/error/include
%{contentdir}/icons/*
-%config(noreplace) %{contentdir}/error
+%{contentdir}/error/README
+%{contentdir}/error/noindex.html
+%config(noreplace) %{contentdir}/error/*.var
+%config(noreplace) %{contentdir}/error/include/*.html
%attr(0700,root,root) %dir %{_localstatedir}/log/httpd
@@ -331,6 +342,12 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/httpd/build/libtool
%changelog
+* Mon Aug 26 2002 Joe Orton <jorton@redhat.com> 2.0.40-3
+- allow "apachectl configtest" on a 1.3 httpd.conf
+- add mod_deflate
+- enable LDAP support in apr-util
+- don't package everything in /var/www/error as config(noreplace)
+
* Wed Aug 21 2002 Bill Nottingham <notting@redhat.com> 2.0.40-2
- add trigger (#68657)