On Tue, 26 Feb 2002, Richard Levitte - VMS Whacker wrote: > From: Tim Rice <[EMAIL PROTECTED]> > > tim> > UnixWare 2.0x does not have strings.h so I changed apps.c and ca.c > tim> > ....... > tim> > # ifdef NO_STRINGS_H > tim> > int strcasecmp(); > tim> > # else > tim> > # include <strings.h> > tim> > # endif /* NO_STRINGS_H */ > tim> > ....... > > I wonder, does UnixWare 2.0x have string.h (not strings.h)? And does > that one declare strcasecmp()? In that case, we have an easier fix > that should work everywhere (one less conditional is a good > conditional :-)).
It does have string.h but it doesn't declare strcasecmp(). It's actually declared in /usr/ucbinclude/strings.h but it's best not to use the BSD compatability stuff. > > -- Tim Rice Multitalents (707) 887-1469 [EMAIL PROTECTED] ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED]
