summaryrefslogtreecommitdiffstats
path: root/os/config.m4
diff options
context:
space:
mode:
authorPaul Querna <pquerna@apache.org>2006-07-15 11:03:52 +0200
committerPaul Querna <pquerna@apache.org>2006-07-15 11:03:52 +0200
commitf9d3d9f6a55c9f1a700c6295c7f37041c93297fd (patch)
tree22acfa69533b940e0590badf16f708a1ea40e370 /os/config.m4
parentUse <string.h>-compatible versions of ap_str* functions. (diff)
downloadapache2-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.m44
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;;