From: Guenter Knauf Date: Wed, 25 Apr 2012 10:36:37 +0000 (+0000) Subject: Fixed position of the NEED_ENHANCED_ESCAPES define. X-Git-Tag: 2.5.0-alpha~7046 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7fa1a7c928083066f1c06d223a33067774cc1098;p=apache Fixed position of the NEED_ENHANCED_ESCAPES define. This define should be outside of the else case so that it gets also defined if we cross-compile for Win32 or OS2. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1330189 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/gen_test_char.c b/server/gen_test_char.c index 1c40bde93e..e25238f31b 100644 --- a/server/gen_test_char.c +++ b/server/gen_test_char.c @@ -29,10 +29,10 @@ #include "apr.h" #include "apr_lib.h" -#if defined(WIN32) || defined(OS2) -#define NEED_ENHANCED_ESCAPES #endif +#if defined(WIN32) || defined(OS2) +#define NEED_ENHANCED_ESCAPES #endif #if APR_HAVE_STDIO_H