diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2001-08-30 07:52:25 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2001-08-30 07:52:25 +0200 |
commit | 43e68337349be6ec5aef250e93ef54a487165dc9 (patch) | |
tree | ed88738f4ce56263e8920a460cffd7b06f8da793 /os/config.m4 | |
parent | dont block when handling non-ssl request (diff) | |
download | apache2-43e68337349be6ec5aef250e93ef54a487165dc9.tar.xz apache2-43e68337349be6ec5aef250e93ef54a487165dc9.zip |
* configure.in: added Cygwin specific APR_SETVARs.
* os/config.m4: added Cygwin specific values for $OS and $OS_DIR.
$OS_DIR will change to "cygwin" as soon as I get the DSO/DLL things
clean as with 1.3.20.
* support/logresolve.c: added OS specific #ifdef statement to define
h_errno as extern __declspec(dllimport); it's imported from the
cygwin1.dll itself.
Submitted by: Stipe Tolj <tolj@wapme-systems.de>
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90805 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 669c0bd67a..704204360f 100644 --- a/os/config.m4 +++ b/os/config.m4 @@ -13,6 +13,10 @@ bs2000*) OS="unix" OS_DIR=bs2000 # only the OS_DIR is platform specific. ;; +*cygwin*) + OS="cygwin" + OS_DIR="unix" + ;; *) OS="unix" OS_DIR=$OS;; |