Blame build/nw_export.inc

Packit 90a5c9
/* Must include ap_config.h first so that we can redefine
Packit 90a5c9
    the standard prototypes macros after it messes with
Packit 90a5c9
    them. */
Packit 90a5c9
#include "ap_config.h"
Packit 90a5c9
Packit 90a5c9
/* Define all of the standard prototype macros as themselves
Packit 90a5c9
    so that httpd.h will not mess with them. This allows 
Packit 90a5c9
    them to pass untouched so that the AWK script can pick 
Packit 90a5c9
    them out of the preprocessed result file. */
Packit 90a5c9
#undef  AP_DECLARE
Packit 90a5c9
#define AP_DECLARE                 AP_DECLARE
Packit 90a5c9
#undef  AP_CORE_DECLARE
Packit 90a5c9
#define AP_CORE_DECLARE            AP_CORE_DECLARE
Packit 90a5c9
#undef  AP_DECLARE_NONSTD
Packit 90a5c9
#define AP_DECLARE_NONSTD          AP_DECLARE_NONSTD
Packit 90a5c9
#undef  AP_CORE_DECLARE_NONSTD
Packit 90a5c9
#define AP_CORE_DECLARE_NONSTD     AP_CORE_DECLARE_NONSTD
Packit 90a5c9
#undef  AP_DECLARE_HOOK
Packit 90a5c9
#define AP_DECLARE_HOOK            AP_DECLARE_HOOK
Packit 90a5c9
#undef  AP_DECLARE_DATA
Packit 90a5c9
#define AP_DECLARE_DATA            AP_DECLARE_DATA
Packit 90a5c9
#undef  APR_DECLARE_OPTIONAL_FN
Packit 90a5c9
#define APR_DECLARE_OPTIONAL_FN    APR_DECLARE_OPTIONAL_FN
Packit 90a5c9
#undef  APR_DECLARE_EXTERNAL_HOOK
Packit 90a5c9
#define APR_DECLARE_EXTERNAL_HOOK  APR_DECLARE_EXTERNAL_HOOK
Packit 90a5c9
#undef  APACHE_OS_H
Packit 90a5c9
Packit 90a5c9
#include "httpd.h"
Packit 90a5c9
Packit 90a5c9
/* Preprocess all of the standard HTTPD headers. */
Packit 90a5c9
#include "ap_compat.h"
Packit 90a5c9
#include "ap_listen.h"
Packit 90a5c9
#include "ap_mmn.h"
Packit 90a5c9
#include "ap_mpm.h"
Packit 90a5c9
#include "ap_provider.h"
Packit 90a5c9
#include "ap_release.h"
Packit 90a5c9
#include "ap_expr.h"
Packit 90a5c9
#include "http_config.h"
Packit 90a5c9
#include "http_connection.h"
Packit 90a5c9
#include "http_core.h"
Packit 90a5c9
#include "http_log.h"
Packit 90a5c9
#include "http_main.h"
Packit 90a5c9
#include "http_protocol.h"
Packit 90a5c9
#include "http_request.h"
Packit 90a5c9
#include "http_vhost.h"
Packit 90a5c9
#include "mpm_common.h"
Packit 90a5c9
#include "ap_regex.h"
Packit 90a5c9
#include "scoreboard.h"
Packit 90a5c9
#include "util_cfgtree.h"
Packit 90a5c9
#include "util_charset.h"
Packit 90a5c9
#include "util_cookies.h"
Packit 90a5c9
#include "util_ebcdic.h"
Packit 90a5c9
#include "util_fcgi.h"
Packit 90a5c9
#include "util_filter.h"
Packit 90a5c9
/*#include "util_ldap.h"*/
Packit 90a5c9
#include "util_md5.h"
Packit 90a5c9
#include "util_mutex.h"
Packit 90a5c9
#include "util_script.h"
Packit 90a5c9
#include "util_time.h"
Packit 90a5c9
#include "util_varbuf.h"
Packit 90a5c9
#include "util_xml.h"
Packit 90a5c9
Packit 90a5c9
#include "mod_core.h"
Packit 90a5c9
#include "mod_auth.h"
Packit 90a5c9
#include "mod_watchdog.h"
Packit 90a5c9