OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 26-Jul-2008 20:38:54
Branch: HEAD Handle: 2008072619385400
Modified files:
openpkg-src/apache apache.patch apache.spec
Log:
add out-of-the-box support for downloading Mozilla XPI files (packed
extensions)
Summary:
Revision Changes Path
1.38 +18 -10 openpkg-src/apache/apache.patch
1.436 +1 -1 openpkg-src/apache/apache.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/apache/apache.patch
============================================================================
$ cvs diff -u -r1.37 -r1.38 apache.patch
--- openpkg-src/apache/apache.patch 14 Jun 2008 07:02:34 -0000 1.37
+++ openpkg-src/apache/apache.patch 26 Jul 2008 18:38:54 -0000 1.38
@@ -1,6 +1,6 @@
Index: build/config_vars.sh.in
--- build/config_vars.sh.in.orig 2008-02-05 00:00:07 +0100
-+++ build/config_vars.sh.in 2008-06-13 23:59:56 +0200
++++ build/config_vars.sh.in 2008-07-26 20:35:59 +0200
@@ -35,7 +35,7 @@
[EMAIL PROTECTED]@
fi
@@ -12,7 +12,7 @@
Index: config.layout
--- config.layout.orig 2004-11-21 19:50:36 +0100
-+++ config.layout 2008-06-13 23:59:56 +0200
++++ config.layout 2008-07-26 20:35:59 +0200
@@ -50,7 +50,7 @@
iconsdir: ${datadir}/icons
htdocsdir: ${datadir}/htdocs
@@ -24,7 +24,7 @@
runtimedir: ${localstatedir}/run
Index: configure
--- configure.orig 2008-06-10 21:18:00 +0200
-+++ configure 2008-06-13 23:59:56 +0200
++++ configure 2008-07-26 20:35:59 +0200
@@ -3591,6 +3591,11 @@
{ (exit 1); exit 1; }; }
fi
@@ -51,7 +51,7 @@
reconfig.yes)
Index: docs/conf/mime.types
--- docs/conf/mime.types.orig 2008-01-02 23:10:01 +0100
-+++ docs/conf/mime.types 2008-06-13 23:59:56 +0200
++++ docs/conf/mime.types 2008-07-26 20:36:56 +0200
@@ -81,6 +81,7 @@
application/mbms-user-service-description+xml
application/mbox mbox
@@ -109,9 +109,17 @@
application/vnd.olpc-sugar xo
application/vnd.oma-scws-config
application/vnd.oma-scws-http-request
+@@ -674,6 +695,7 @@
+ application/x-ustar ustar
+ application/x-wais-source src
+ application/x-x509-ca-cert der crt
++application/x-xpinstall xpi
+ application/x400-bp
+ application/xcap-att+xml
+ application/xcap-caps+xml
Index: docs/docroot/index.html
--- docs/docroot/index.html.orig 2004-11-20 21:16:24 +0100
-+++ docs/docroot/index.html 2008-06-13 23:59:56 +0200
++++ docs/docroot/index.html 2008-07-26 20:35:59 +0200
@@ -1 +1,7 @@
-<html><body><h1>It works!</h1></body></html>
\ No newline at end of file
@@ -124,7 +132,7 @@
+</html>
Index: modules/generators/mod_autoindex.c
--- modules/generators/mod_autoindex.c.orig 2007-12-09 15:46:56 +0100
-+++ modules/generators/mod_autoindex.c 2008-06-13 23:59:56 +0200
++++ modules/generators/mod_autoindex.c 2008-07-26 20:35:59 +0200
@@ -1564,17 +1564,17 @@
++cols;
@@ -148,7 +156,7 @@
++cols;
Index: server/Makefile.in
--- server/Makefile.in.orig 2006-03-09 22:29:55 +0100
-+++ server/Makefile.in 2008-06-13 23:59:56 +0200
++++ server/Makefile.in 2008-07-26 20:35:59 +0200
@@ -56,7 +56,8 @@
tmp=export_files_unsorted.txt; \
rm -f $$tmp && touch $$tmp; \
@@ -161,7 +169,7 @@
(ls $$dir/ap[ru].h $$dir/ap[ru]_*.h >> $$tmp 2>/dev/null); \
Index: support/Makefile.in
--- support/Makefile.in.orig 2005-07-07 01:15:34 +0200
-+++ support/Makefile.in 2008-06-13 23:59:56 +0200
++++ support/Makefile.in 2008-07-26 20:35:59 +0200
@@ -22,12 +22,6 @@
chmod 755 $(DESTDIR)$(sbindir)/$$i; \
fi ; \
@@ -177,7 +185,7 @@
htpasswd: $(htpasswd_OBJECTS)
Index: support/apachectl.in
--- support/apachectl.in.orig 2006-07-12 05:38:44 +0200
-+++ support/apachectl.in 2008-06-13 23:59:56 +0200
++++ support/apachectl.in 2008-07-26 20:35:59 +0200
@@ -43,11 +43,6 @@
# the path to your httpd binary, including options if necessary
HTTPD='@exp_sbindir@/@progname@'
@@ -192,7 +200,7 @@
# programs may work.
Index: support/apxs.in
--- support/apxs.in.orig 2006-07-12 05:38:44 +0200
-+++ support/apxs.in 2008-06-13 23:59:56 +0200
++++ support/apxs.in 2008-07-26 20:35:59 +0200
@@ -190,9 +190,6 @@
my $httpd = get_vars("sbindir") . "/" . get_vars("progname");
$httpd = eval qq("$httpd");
@@ .
patch -p0 <<'@@ .'
Index: openpkg-src/apache/apache.spec
============================================================================
$ cvs diff -u -r1.435 -r1.436 apache.spec
--- openpkg-src/apache/apache.spec 14 Jun 2008 07:02:35 -0000 1.435
+++ openpkg-src/apache/apache.spec 26 Jul 2008 18:38:54 -0000 1.436
@@ -32,7 +32,7 @@
Group: Web
License: ASF
Version: 2.2.9
-Release: 20080614
+Release: 20080726
# package options
%option with_mpm_prefork yes
@@ .
______________________________________________________________________
OpenPKG http://openpkg.org
CVS Repository Commit List [email protected]