summaryrefslogtreecommitdiffstats
path: root/patches/apache_1.3.36/generic/apache_1.3.36-cross.diff
diff options
context:
space:
mode:
Diffstat (limited to 'patches/apache_1.3.36/generic/apache_1.3.36-cross.diff')
-rw-r--r--patches/apache_1.3.36/generic/apache_1.3.36-cross.diff48
1 files changed, 0 insertions, 48 deletions
diff --git a/patches/apache_1.3.36/generic/apache_1.3.36-cross.diff b/patches/apache_1.3.36/generic/apache_1.3.36-cross.diff
deleted file mode 100644
index dd583454d..000000000
--- a/patches/apache_1.3.36/generic/apache_1.3.36-cross.diff
+++ /dev/null
@@ -1,48 +0,0 @@
-Index: src/main/Makefile.tmpl
-===================================================================
---- a/src/main/Makefile.tmpl.orig
-+++ b/src/main/Makefile.tmpl
-@@ -32,14 +32,14 @@ distclean: clean
- uri_delims.h: gen_uri_delims
- ./gen_uri_delims >uri_delims.h
-
--gen_uri_delims: gen_uri_delims.o
-- $(CC) $(CFLAGS) $(LDFLAGS) -o gen_uri_delims gen_uri_delims.o $(LIBS)
-+gen_uri_delims: gen_uri_delims.c
-+ $(CC_FOR_BUILD) -I../os/unix -I../include -o gen_uri_delims gen_uri_delims.c $(LIBS)
-
- test_char.h: gen_test_char
- ./gen_test_char >test_char.h
-
--gen_test_char: gen_test_char.o
-- $(CC) $(CFLAGS) $(LDFLAGS) -o gen_test_char gen_test_char.o $(LIBS)
-+gen_test_char: gen_test_char.c
-+ $(CC_FOR_BUILD) -I../os/unix -I../include -o gen_test_char gen_test_char.c $(LIBS)
-
- # We really don't expect end users to use this rule. It works only with
- # gcc, and rebuilds Makefile.tmpl. You have to re-run Configure after
-Index: src/support/apxs.pl
-===================================================================
---- a/src/support/apxs.pl.orig
-+++ b/src/support/apxs.pl
-@@ -190,13 +190,13 @@ if (not -x "$CFG_SBINDIR/$CFG_TARGET") {
- print STDERR "apxs:Error: $CFG_SBINDIR/$CFG_TARGET not found or not executable\n";
- exit(1);
- }
--if (not grep(/mod_so/, `$CFG_SBINDIR/$CFG_TARGET -l`)) {
-- print STDERR "apxs:Error: Sorry, no DSO support for Apache available\n";
-- print STDERR "apxs:Error: under your platform. Make sure the Apache\n";
-- print STDERR "apxs:Error: module mod_so is compiled into your server\n";
-- print STDERR "apxs:Error: binary `$CFG_SBINDIR/$CFG_TARGET'.\n";
-- exit(1);
--}
-+#if (not grep(/mod_so/, `$CFG_SBINDIR/$CFG_TARGET -l`)) {
-+# print STDERR "apxs:Error: Sorry, no DSO support for Apache available\n";
-+# print STDERR "apxs:Error: under your platform. Make sure the Apache\n";
-+# print STDERR "apxs:Error: module mod_so is compiled into your server\n";
-+# print STDERR "apxs:Error: binary `$CFG_SBINDIR/$CFG_TARGET'.\n";
-+# exit(1);
-+#}
- }
-
- ##