summaryrefslogtreecommitdiffstats
path: root/server/main.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-11-02 05:44:43 +0100
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-11-02 05:44:43 +0100
commitf95da0f52568084016ecca9524f386a25e5e1abd (patch)
tree2b6b820ce1cb55720bcf306069d505dd0adf551b /server/main.c
parent Cause the command line version of mpm_winnt to do nothing with the (diff)
downloadapache2-f95da0f52568084016ecca9524f386a25e5e1abd.tar.xz
apache2-f95da0f52568084016ecca9524f386a25e5e1abd.zip
Get win32 building again... we need something just a little more sophisticated here
Submitted by: John Sterling <sterling@covalent.net Reviewed by: rbb, wrowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86796 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/main.c')
-rw-r--r--server/main.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/main.c b/server/main.c
index 6cd35b6474..24324efcb5 100644
--- a/server/main.c
+++ b/server/main.c
@@ -294,11 +294,13 @@ int main(int argc, char *argv[])
apr_initialize();
+#ifndef WIN32 /* A -feature- (?) macro is needed here */
/* This ugly little hack pulls any function referenced in exports.c into
* the web server. exports.c is generated by buildconf, and it
* has all of the apr functions specified by httpd.exp.
*/
ap_ugly_hack = apr_initialize;
+#endif
process = create_process(argc, argv);
pglobal = process->pool;