aboutsummaryrefslogtreecommitdiffstats
path: root/apache/apache-2.0.48/pcre-configure.patch
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-11-09 00:36:47 +0000
committerChris Larson <clarson@kergoth.com>2004-11-09 00:36:47 +0000
commitf96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch)
treeedb17ec2c4ea13c5acb1c7350957a249a820e28d /apache/apache-2.0.48/pcre-configure.patch
parentb6588aa6851fb220cedc387d21c51513ef8d67f4 (diff)
downloadopenembedded-f96441b9faf769c9ecdd4d338b605ea3d0cc4010.tar.gz
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'apache/apache-2.0.48/pcre-configure.patch')
-rw-r--r--apache/apache-2.0.48/pcre-configure.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/apache/apache-2.0.48/pcre-configure.patch b/apache/apache-2.0.48/pcre-configure.patch
index e69de29bb2..0460d17456 100644
--- a/apache/apache-2.0.48/pcre-configure.patch
+++ b/apache/apache-2.0.48/pcre-configure.patch
@@ -0,0 +1,36 @@
+
+#
+# Patch managed by http://www.mn-logistik.de/unsupported/pxa250/patcher
+#
+
+--- httpd-2.0.47/srclib/pcre/configure.in~pcre-configure
++++ httpd-2.0.47/srclib/pcre/configure.in
+@@ -72,7 +72,8 @@
+ AC_ARG_ENABLE(newline-is-cr,
+ [ --enable-newline-is-cr use CR as the newline character],
+ if test "$enableval" = "yes"; then
+- NEWLINE=-DNEWLINE=13
++ AC_DEFINE(NEWLINE, 13)
++# NEWLINE=-DNEWLINE=13
+ fi
+ )
+
+@@ -81,7 +82,8 @@
+ AC_ARG_ENABLE(newline-is-lf,
+ [ --enable-newline-is-lf use LF as the newline character],
+ if test "$enableval" = "yes"; then
+- NEWLINE=-DNEWLINE=10
++ AC_DEFINE(NEWLINE, 10)
++# NEWLINE=-DNEWLINE=10
+ fi
+ )
+
+@@ -91,7 +93,7 @@
+ AC_SUBST(HAVE_STRERROR)
+ AC_SUBST(LIBTOOL)
+ AC_SUBST(LIBSUFFIX)
+-AC_SUBST(NEWLINE)
++#AC_SUBST(NEWLINE)
+ AC_SUBST(UTF8)
+ AC_SUBST(PCRE_MAJOR)
+ AC_SUBST(PCRE_MINOR)