mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-04 06:00:15 +00:00
(svn r10605) -Fix [FS#1046]: also OpenBSD does not know wchar. Patch by Matthias.
This commit is contained in:
parent
5b15a202ea
commit
524e306650
17
src/stdafx.h
17
src/stdafx.h
@ -341,13 +341,18 @@ NORETURN
|
||||
CDECL error(const char *str, ...);
|
||||
#define NOT_REACHED() error("NOT_REACHED triggered at line %i of %s", __LINE__, __FILE__)
|
||||
|
||||
#if !defined(MORPHOS)
|
||||
/* MorphOS doesn't know wchars, the rest does :( */
|
||||
#define HAS_WCHAR
|
||||
#else
|
||||
/* And MorphOS doesn't have C++ conformant _stricmp... */
|
||||
#if defined(MORPHOS)
|
||||
/* MorphOS doesn't have C++ conformant _stricmp... */
|
||||
#define _stricmp stricmp
|
||||
#endif /* !defined(MORHPOS) */
|
||||
#elif defined(OPENBSD)
|
||||
/* OpenBSD uses strcasecmp(3) */
|
||||
#define _stricmp strcasecmp
|
||||
#endif
|
||||
|
||||
#if !defined(MORPHOS) and !defined(OPENBSD)
|
||||
/* MorphOS & OpenBSD don't know wchars, the rest does :( */
|
||||
#define HAS_WCHAR
|
||||
#endif /* !defined(MORHPOS) and !defined(OPENBSD) */
|
||||
|
||||
#if !defined(MAX_PATH)
|
||||
# define MAX_PATH 260
|
||||
|
Loading…
Reference in New Issue
Block a user