summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-11-19 18:35:14 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-11-19 18:35:14 +0000
commit25fca5429418d098b7b3d3465fadb4938049a944 (patch)
treef6cc8478447a18f906b467629bb8b7853a9e66d5 /os
parenta17358b2807b1558f72dc3a78292bb2b76ba100f (diff)
downloadhttpd-25fca5429418d098b7b3d3465fadb4938049a944.tar.gz
Disable two features, with warnings, if a relatively Win32 SDK headers
are not available (e.g. stock distribution of MSVC 5.0). Submitted by: Jeff Trawick Reviewed by: Will Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87027 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r--os/win32/mod_isapi.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/os/win32/mod_isapi.c b/os/win32/mod_isapi.c
index 80ec124bed..bc2f3b9ab4 100644
--- a/os/win32/mod_isapi.c
+++ b/os/win32/mod_isapi.c
@@ -91,6 +91,15 @@
/* We use the exact same header file as the original */
#include <HttpExt.h>
+#if !defined(HSE_REQ_MAP_URL_TO_PATH_EX) \
+ || !defined(HSE_REQ_SEND_RESPONSE_HEADER_EX)
+#pragma message("WARNING: This build of Apache is missing the recent changes")
+#pragma message("in the Microsoft Win32 Platform SDK; some mod_isapi features")
+#pragma message("will be disabled. To obtain the latest Platform SDK files,")
+#pragma message("please refer to:")
+#pragma message("http://msdn.microsoft.com/downloads/sdks/platform/platform.asp")
+#endif
+
/* TODO: Unknown errors that must be researched for correct codes */
#define TODO_ERROR 1
@@ -980,6 +989,7 @@ BOOL WINAPI ServerSupportFunction(HCONN hConn, DWORD dwHSERequest,
SetLastError(ERROR_INVALID_PARAMETER);
return FALSE;
+#ifdef HSE_REQ_MAP_URL_TO_PATH_EX
case 1012: /* HSE_REQ_MAP_URL_TO_PATH_EX */
{
/* Map a URL to a filename */
@@ -1048,6 +1058,7 @@ BOOL WINAPI ServerSupportFunction(HCONN hConn, DWORD dwHSERequest,
| (subreq->finfo.protection & APR_UEXECUTE ? 0x204 : 0);
return TRUE;
}
+#endif
case 1014: /* HSE_REQ_ABORTIVE_CLOSE */
if (cid->sconf->LogNotSupported)
@@ -1066,6 +1077,7 @@ BOOL WINAPI ServerSupportFunction(HCONN hConn, DWORD dwHSERequest,
SetLastError(ERROR_INVALID_PARAMETER);
return FALSE;
+#ifdef HSE_REQ_SEND_RESPONSE_HEADER_EX
case 1016: /* HSE_REQ_SEND_RESPONSE_HEADER_EX Added in ISAPI 4.0 */
{
LPHSE_SEND_HEADER_EX_INFO shi
@@ -1094,6 +1106,7 @@ BOOL WINAPI ServerSupportFunction(HCONN hConn, DWORD dwHSERequest,
return TRUE;
}
+#endif
case 1017: /* HSE_REQ_CLOSE_CONNECTION Added after ISAPI 4.0 */
if (cid->sconf->LogNotSupported)