diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2000-05-17 01:52:48 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2000-05-17 01:52:48 +0000 |
commit | 710c1945d1cb1123bb503a7c23392647edb0365f (patch) | |
tree | 8a57b801508303a83a22e747fb6069fad1ea8346 /os | |
parent | 44f9229e2e68dc5a0106a9a96f287fb2f1669e03 (diff) | |
download | httpd-710c1945d1cb1123bb503a7c23392647edb0365f.tar.gz |
Cleanup ap_config.h fallout for Win32. Only a few very minor
changes to ap_config.h and util.c, but they might hurt someone...
please watch those two carefully.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85237 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r-- | os/win32/os.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/os/win32/os.h b/os/win32/os.h index bee53b9171..30e58227cd 100644 --- a/os/win32/os.h +++ b/os/win32/os.h @@ -136,12 +136,17 @@ every configuration function as __stdcall. #define MODULE_VAR_EXPORT __declspec(dllexport) - +#define HAVE_MEMMOVE #define HAVE_STRCASECMP #define HAVE_STRNCASECMP +#define HAVE_STRERROR +#define HAVE_STRDUP +#define HAVE_STRSTR #define strcasecmp(s1, s2) stricmp(s1, s2) #define strncasecmp(s1, s2, n) strnicmp(s1, s2, n) + +#define HAVE_SYS_STAT_H #define lstat(x, y) stat(x, y) #define S_ISLNK(m) (0) #define S_ISREG(m) ((m & _S_IFREG) == _S_IFREG) |