diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2013-07-29 00:56:09 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2013-07-29 00:56:09 -0400 |
commit | f075bbffd23155cd111ddd6e61b5c8af74381fda (patch) | |
tree | 425c38c82e3388004dcfb1bd6238633863c6c4aa /WWW/Library/Implementation | |
parent | e16dad6521b5662ea017de8b639301bd996415c7 (diff) | |
download | lynx-snapshots-f075bbffd23155cd111ddd6e61b5c8af74381fda.tar.gz |
snapshot of project "lynx", label v2-8-8dev-15j
Diffstat (limited to 'WWW/Library/Implementation')
-rw-r--r-- | WWW/Library/Implementation/HTUtils.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h index a083df4a..74cf332f 100644 --- a/WWW/Library/Implementation/HTUtils.h +++ b/WWW/Library/Implementation/HTUtils.h @@ -1,5 +1,5 @@ /* - * $LynxId: HTUtils.h,v 1.113 2013/04/30 22:45:03 tom Exp $ + * $LynxId: HTUtils.h,v 1.115 2013/07/28 23:04:57 tom Exp $ * * Utility macros for the W3 code library * MACROS FOR GENERAL USE @@ -178,6 +178,9 @@ extern int ignore_unused; #endif #if defined(__CYGWIN__) /* 1998/12/31 (Thu) 16:13:46 */ +#ifdef USE_OPENSSL_INCL +#define NOCRYPT /* workaround for openssl 1.0.1e bug */ +#endif #include <windows.h> /* #include "windef.h" */ #define BOOLEAN_DEFINED #undef HAVE_POPEN /* FIXME: does this not work, or is it missing */ @@ -223,8 +226,10 @@ extern off_t LYatoll(const char *value); #include <dos.h> #endif +#if !defined(__MINGW32__) #undef sleep /* 1998/06/23 (Tue) 16:54:53 */ extern void sleep(unsigned __seconds); +#endif #define popen _popen #define pclose _pclose |