summaryrefslogtreecommitdiffstats
path: root/build/nw_export.inc
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2002-01-08 22:46:18 +0100
committerBradley Nicholes <bnicholes@apache.org>2002-01-08 22:46:18 +0100
commitf5cfd12c02d555131b8471ce8d737d8652ed86a0 (patch)
treec1bb596830109cdb9195ea3bd691f8dc3a692419 /build/nw_export.inc
parentAdded a stub for ap_os_create_privileged_process() for NetWare (diff)
downloadapache2-f5cfd12c02d555131b8471ce8d737d8652ed86a0.tar.xz
apache2-f5cfd12c02d555131b8471ce8d737d8652ed86a0.zip
Fixed the export list generation for NetWare to make sure that only real APIs
are being exported git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92777 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/nw_export.inc')
-rw-r--r--build/nw_export.inc47
1 files changed, 47 insertions, 0 deletions
diff --git a/build/nw_export.inc b/build/nw_export.inc
new file mode 100644
index 0000000000..27185ead30
--- /dev/null
+++ b/build/nw_export.inc
@@ -0,0 +1,47 @@
+/* Must include ap_config.h first so that we can redefine
+ the standard prototypes macros after it messes with
+ them. */
+#include "ap_config.h"
+
+/* Define all of the standard prototype macros as themselves
+ so that httpd.h will not mess with them. This allows
+ them to pass untouched so that the AWK script can pick
+ them out of the preprocessed result file. */
+#define AP_DECLARE AP_DECLARE
+#define AP_CORE_DECLARE AP_CORE_DECLARE
+#define AP_DECLARE_NONSTD AP_DECLARE_NONSTD
+#define AP_CORE_DECLARE_NONSTD AP_CORE_DECLARE_NONSTD
+#define AP_DECLARE_HOOK AP_DECLARE_HOOK
+#define AP_DECLARE_DATA AP_DECLARE_DATA
+
+#include "httpd.h"
+
+/* Preprocess all of the standard HTTPD headers. */
+#include "ap_compat.h"
+#include "ap_listen.h"
+#include "ap_mmn.h"
+#include "ap_mpm.h"
+#include "ap_release.h"
+#include "http_config.h"
+#include "http_connection.h"
+#include "http_core.h"
+#include "http_log.h"
+#include "http_main.h"
+#include "http_protocol.h"
+#include "http_request.h"
+#include "http_vhost.h"
+#include "mpm_common.h"
+#include "pcreposix.h"
+#include "rfc1413.h"
+#include "scoreboard.h"
+#include "util_cfgtree.h"
+#include "util_charset.h"
+#include "util_ebcdic.h"
+#include "util_filter.h"
+/*#include "util_ldap.h"*/
+#include "util_md5.h"
+#include "util_script.h"
+#include "util_time.h"
+#include "util_xml.h"
+
+#include "mod_core.h"