blob: f7793679b18b223edf2c9832e44d728e32fb4b01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#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 */
|