diff options
author | Paul Querna <pquerna@apache.org> | 2006-07-15 11:03:52 +0200 |
---|---|---|
committer | Paul Querna <pquerna@apache.org> | 2006-07-15 11:03:52 +0200 |
commit | f9d3d9f6a55c9f1a700c6295c7f37041c93297fd (patch) | |
tree | 22acfa69533b940e0590badf16f708a1ea40e370 /os/config.m4 | |
parent | Use <string.h>-compatible versions of ap_str* functions. (diff) | |
download | apache2-f9d3d9f6a55c9f1a700c6295c7f37041c93297fd.tar.xz apache2-f9d3d9f6a55c9f1a700c6295c7f37041c93297fd.zip |
Bring in basic support for building the winnt MPM under mingw32, using the autoconf build system. Currently this will get you to the point of linking errors on gen_test_char.
configure.in: Default to winnt MPM on mingw32 hosts.
configure.in: Add AP_DECLARE_EXPORT for mingw32 hsots.
os/config.m4: Use win32 dir under mingw32.
os/win32/Makefile.in: Add in a new makefile to generate libos on win32.
server/mpm/config.m4: Add winnt MPM to the help string.
server/mpm/config.m4: winnt MPM is a threaded MPM.
server/mpm/winnt/child.c: SO_UPDATE_ACCEPT_CONTEXT is defined under a different header in mingw32.
server/mpm/winnt/{Makefile.in,config.m4}: Base build for winnt MPM.
os/win32,server/mpm/winnt: Update svn:ignore for .deps/.libs
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@422182 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/config.m4')
-rw-r--r-- | os/config.m4 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/os/config.m4 b/os/config.m4 index 336f360d75..b5ab86bd5b 100644 --- a/os/config.m4 +++ b/os/config.m4 @@ -17,6 +17,10 @@ bs2000*) OS="cygwin" OS_DIR="unix" ;; +*mingw32*) + OS="win32" + OS_DIR=$OS + ;; *) OS="unix" OS_DIR=$OS;; |