From: Jeff Trawick Date: Wed, 23 May 2001 13:56:34 +0000 (+0000) Subject: include/ap_compat.h tested and set APR_COMPAT_H instead of AP_COMPAT_H. X-Git-Tag: 2.0.19~176 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5e23c1edc6fa37883d313a19284891e5d3468524;p=thirdparty%2Fapache%2Fhttpd.git include/ap_compat.h tested and set APR_COMPAT_H instead of AP_COMPAT_H. This prevented the inclusion of apr_compat.h. PR: 7773 Submitted by: Oleg Broytmann git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89217 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 5170be89bbc..2799c361604 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ Changes with Apache 2.0.19-dev + *) include/ap_compat.h tested and set APR_COMPAT_H instead of AP_COMPAT_H. + This prevented the inclusion of apr_compat.h. PR #7773 + [Oleg Broytmann ] + *) Moved util_uri to the apr-util library. This required a bunch of apr_name changes for the uri utility functions. [Justin Erenkrantz] diff --git a/include/ap_compat.h b/include/ap_compat.h index facc2561a24..f7793679b18 100644 --- a/include/ap_compat.h +++ b/include/ap_compat.h @@ -1,5 +1,5 @@ -#ifndef APR_COMPAT_H -#define APR_COMPAT_H +#ifndef AP_COMPAT_H +#define AP_COMPAT_H /* Drag in apu (and therefore apr) renamed symbols */ #include "apu_compat.h" @@ -9,4 +9,4 @@ #define MODULE_VAR_EXPORT AP_MODULE_DECLARE_DATA #define ap_send_http_header(r) ; -#endif /* APR_COMPAT_H */ +#endif /* AP_COMPAT_H */