summaryrefslogtreecommitdiffstats
path: root/patches/httpd-2.0.64/0003-HACK-support-apxs-don-t-execute-httpd.patch
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-03-01 12:11:05 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-03-01 13:58:02 +0100
commit6da485b4940906d50b48da7e6e26e84629cdf142 (patch)
treeb05f0a1a3ac233b841f25f96ade055332da9472a /patches/httpd-2.0.64/0003-HACK-support-apxs-don-t-execute-httpd.patch
parentd4617b2c470d2cceaccbd4fcbf399f9f58908e57 (diff)
downloadptxdist-6da485b4940906d50b48da7e6e26e84629cdf142.tar.gz
ptxdist-6da485b4940906d50b48da7e6e26e84629cdf142.tar.xz
apache2: remove after on year in staging
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'patches/httpd-2.0.64/0003-HACK-support-apxs-don-t-execute-httpd.patch')
-rw-r--r--patches/httpd-2.0.64/0003-HACK-support-apxs-don-t-execute-httpd.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/patches/httpd-2.0.64/0003-HACK-support-apxs-don-t-execute-httpd.patch b/patches/httpd-2.0.64/0003-HACK-support-apxs-don-t-execute-httpd.patch
deleted file mode 100644
index e4badfab7..000000000
--- a/patches/httpd-2.0.64/0003-HACK-support-apxs-don-t-execute-httpd.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From: Robert Schwebel <r.schwebel@pengutronix.de>
-Date: Thu, 26 Apr 2012 15:07:30 +0200
-Subject: [PATCH] HACK: support/apxs: don't execute httpd
-
-Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
-Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
----
- support/apxs.in | 24 ++++++++++++------------
- 1 files changed, 12 insertions(+), 12 deletions(-)
-
-diff --git a/support/apxs.in b/support/apxs.in
-index 135544c..cbefb3a 100644
---- a/support/apxs.in
-+++ b/support/apxs.in
-@@ -199,18 +199,18 @@ if ($0 =~ m:support/apxs$:) {
- ($httpd = $0) =~ s:support/apxs$::;
- }
-
--unless (-x "$httpd") {
-- error("$httpd not found or not executable");
-- exit 1;
--}
--
--unless (grep /mod_so/, `. $envvars && $httpd -l`) {
-- error("Sorry, no shared object support for Apache");
-- error("available under your platform. Make sure");
-- error("the Apache module mod_so is compiled into");
-- error("your server binary `$httpd'.");
-- exit 1;
--}
-+#unless (-x "$httpd") {
-+# error("$httpd not found or not executable");
-+# exit 1;
-+#}
-+
-+#unless (grep /mod_so/, `. $envvars && $httpd -l`) {
-+# error("Sorry, no shared object support for Apache");
-+# error("available under your platform. Make sure");
-+# error("the Apache module mod_so is compiled into");
-+# error("your server binary `$httpd'.");
-+# exit 1;
-+#}
-
- sub get_config_vars{
- my ($file, $rh_config) = @_;