From 4f213460324961cac749deceadaf6cec512e347c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20Malo?= Date: Mon, 28 Jul 2003 12:30:42 +0000 Subject: [PATCH] add the ability to change the maximum txt:map line length at compile time without patching the code git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100809 13f79535-47bb-0310-9956-ffa450edef68 --- modules/mappers/mod_rewrite.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/mappers/mod_rewrite.c b/modules/mappers/mod_rewrite.c index 5f8153792b..6fbff0b592 100644 --- a/modules/mappers/mod_rewrite.c +++ b/modules/mappers/mod_rewrite.c @@ -215,7 +215,9 @@ #define REWRITELOCK_MODE ( APR_UREAD | APR_UWRITE | APR_GREAD | APR_WREAD ) /* max line length (incl.\n) in text rewrite maps */ +#ifndef REWRITE_MAX_TXT_MAP_LINE #define REWRITE_MAX_TXT_MAP_LINE 1024 +#endif /* * +-------------------------------------------------------+ -- 2.50.1