From ca80756c70ad8f05ccd5d37c01c38641f7da3d3d Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 10 Oct 2002 09:05:05 +0000 Subject: VMS below version 7 doesn't have strcasecmp, so let's roll our own on VMS. PR: 184 --- apps/apps.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'apps/apps.h') diff --git a/apps/apps.h b/apps/apps.h index dae52bd016..31dd0dc9e1 100644 --- a/apps/apps.h +++ b/apps/apps.h @@ -139,6 +139,12 @@ long app_RAND_load_files(char *file); /* `file' is a list of files to read, int WIN32_rename(char *oldname,char *newname); #endif +/* VMS below version 7.0 doesn't have strcasecmp() */ +#ifdef OPENSSL_SYS_VMS +#define strcasecmp(str1,str2) VMS_strcasecmp((str1),(str2)) +int VMS_strcasecmp(const char *str1, const char *str2); +#endif + #ifndef MONOLITH #define MAIN(a,v) main(a,v) -- cgit v1.2.3