summaryrefslogtreecommitdiffstats
path: root/patches/mod_python-3.3.1/configure.in-apache-version.diff
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-03-01 12:11:38 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-03-01 13:58:02 +0100
commitd4617b2c470d2cceaccbd4fcbf399f9f58908e57 (patch)
tree51256c326ea1fa5a704c1b05ff49b74d334c2f2e /patches/mod_python-3.3.1/configure.in-apache-version.diff
parentfe0f1120e601871d441aa5d16c674256edf36fa0 (diff)
downloadptxdist-d4617b2c470d2cceaccbd4fcbf399f9f58908e57.tar.gz
ptxdist-d4617b2c470d2cceaccbd4fcbf399f9f58908e57.tar.xz
apache2_mod_python: remove after on year in staging
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'patches/mod_python-3.3.1/configure.in-apache-version.diff')
-rw-r--r--patches/mod_python-3.3.1/configure.in-apache-version.diff34
1 files changed, 0 insertions, 34 deletions
diff --git a/patches/mod_python-3.3.1/configure.in-apache-version.diff b/patches/mod_python-3.3.1/configure.in-apache-version.diff
deleted file mode 100644
index d397a6bf4..000000000
--- a/patches/mod_python-3.3.1/configure.in-apache-version.diff
+++ /dev/null
@@ -1,34 +0,0 @@
-From: Robert Schwebel <r.schwebel@pengutronix.de>
-Subject: remove runtime test for cross compiling
-
-When cross compiling, we assume that the user has made sure that
-reasonably new versions are provided.
-
-Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
----
- configure.in | 5 ++++-
- 1 file changed, 4 insertions(+), 1 deletion(-)
-
-Index: mod_python-3.3.1/configure.in
-===================================================================
---- mod_python-3.3.1.orig/configure.in
-+++ mod_python-3.3.1/configure.in
-@@ -108,6 +108,7 @@ else
-
- # check Apache version
- AC_MSG_CHECKING(Apache version)
-+ if test "x$cross_compiling" = "xno"; then
- HTTPD="`${APXS} -q SBINDIR`/`${APXS} -q TARGET`"
- ver=`$HTTPD -v | awk '/version/ {print $3}' | awk -F/ '{print $2}'`
- AC_MSG_RESULT($ver)
-@@ -126,7 +127,9 @@ else
- AC_MSG_CHECKING([for Apache include directory])
- AP_INCLUDES="-I`${APXS} -q INCLUDEDIR`"
- AC_MSG_RESULT($AP_INCLUDES)
--
-+ else
-+ AC_MSG_RESULT([cross_compiling, assuming recent new version...])
-+ fi
- dnl Small hack to work around _eprintf.o problem on Solaris
- if test "`uname`" = "SunOS"; then
- AC_MSG_CHECKING([for gcc on Solaris possible missing _eprintf problem])