aboutsummaryrefslogtreecommitdiffstats
path: root/apps/ca.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-02-22 14:21:06 +0000
committerRichard Levitte <levitte@openssl.org>2001-02-22 14:21:06 +0000
commit19f2192136f90752bb3fbec986733f609eb13074 (patch)
treeea19be00338c85f89efd9e11fe68918012f3d371 /apps/ca.c
parent1961b327eb0e019cedd48c6b2f907ff6c2e3ad17 (diff)
downloadopenssl-19f2192136f90752bb3fbec986733f609eb13074.tar.gz
Windows does not know of strigs.h or strcasecmp, so when in Windows,
make strcasecmp a macro to _stricmp.
Diffstat (limited to 'apps/ca.c')
-rw-r--r--apps/ca.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/ca.c b/apps/ca.c
index 5d5041fb9e..d13b08f7e3 100644
--- a/apps/ca.c
+++ b/apps/ca.c
@@ -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)