diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2004-03-05 08:34:24 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2004-03-05 08:34:24 +0000 |
| commit | ab9d5fdfd55c879611d69998fc58cbb39f25e73a (patch) | |
| tree | 90ff43013ac4579f2c4ba1a42b8777bfa4fecaaa /src/os/win32/ngx_win32_config.h | |
| parent | 6a9304522227d4b4df873d3716cf06093d497700 (diff) | |
| download | nginx-ab9d5fdfd55c879611d69998fc58cbb39f25e73a.tar.gz nginx-ab9d5fdfd55c879611d69998fc58cbb39f25e73a.tar.bz2 | |
nginx-0.0.2-2004-03-05-11:34:24 import
Diffstat (limited to 'src/os/win32/ngx_win32_config.h')
| -rw-r--r-- | src/os/win32/ngx_win32_config.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/os/win32/ngx_win32_config.h b/src/os/win32/ngx_win32_config.h index 2af600d5e..b1d7d5781 100644 --- a/src/os/win32/ngx_win32_config.h +++ b/src/os/win32/ngx_win32_config.h @@ -7,6 +7,10 @@ #define STRICT #define WIN32_LEAN_AND_MEAN +#ifdef __WATCOMC__ +#pragma disable_message(107) +#endif + /* * we need to include windows.h explicity before winsock2.h because * warning 4201 is enabled in windows.h @@ -34,6 +38,17 @@ #pragma warning(disable:4127) #endif + +#ifdef __WATCOMC__ +#pragma enable_message(107) +#if 0 +/* Symbol 'ngx_rbtree_min' has been defined, but not referenced */ +#pragma disable_message(202) +#endif +/* No prototype found for 'stricmp' */ +#pragma disable_message(301) +#endif + #include <ngx_auto_config.h> |
