diff options
author | Richard Levitte <levitte@openssl.org> | 2001-02-22 15:21:06 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2001-02-22 15:21:06 +0100 |
commit | 19f2192136f90752bb3fbec986733f609eb13074 (patch) | |
tree | ea19be00338c85f89efd9e11fe68918012f3d371 /apps/ca.c | |
parent | Always include opensslconf.h, even if it's already been done before. (diff) | |
download | openssl-19f2192136f90752bb3fbec986733f609eb13074.tar.xz openssl-19f2192136f90752bb3fbec986733f609eb13074.zip |
Windows does not know of strigs.h or strcasecmp, so when in Windows,
make strcasecmp a macro to _stricmp.
Diffstat (limited to '')
-rw-r--r-- | apps/ca.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -61,7 +61,6 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <strings.h> #include <ctype.h> #include <sys/types.h> #include <sys/stat.h> @@ -79,6 +78,12 @@ #include <openssl/pem.h> #include <openssl/engine.h> +#ifdef OPENSSL_SYS_WINDOWS +#define strcasecmp _stricmp +#else +#include <strings.h> +#endif + #ifndef W_OK # ifdef OPENSSL_SYS_VMS # if defined(__DECC) |