mirror of
https://github.com/apache/httpd.git
synced 2026-01-26 19:01:35 +03:00
This prevented the inclusion of apr_compat.h. PR: 7773 Submitted by: Oleg Broytmann <phd@phd.pp.ru> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89217 13f79535-47bb-0310-9956-ffa450edef68
13 lines
285 B
C
13 lines
285 B
C
#ifndef AP_COMPAT_H
|
|
#define AP_COMPAT_H
|
|
|
|
/* Drag in apu (and therefore apr) renamed symbols */
|
|
#include "apu_compat.h"
|
|
|
|
/* redefine 1.3.x symbols to the new symbol names */
|
|
|
|
#define MODULE_VAR_EXPORT AP_MODULE_DECLARE_DATA
|
|
#define ap_send_http_header(r) ;
|
|
|
|
#endif /* AP_COMPAT_H */
|