1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-29 01:19:11 +00:00

(svn r11467) -Fix [FS#1450]: OpenBSD has ALIGN already defined, causing compilation failures.

This commit is contained in:
rubidium
2007-11-18 20:21:41 +00:00
parent 96d156944f
commit e15a5365d1

View File

@@ -360,6 +360,8 @@ CDECL error(const char *str, ...);
#elif defined(OPENBSD)
/* OpenBSD uses strcasecmp(3) */
#define _stricmp strcasecmp
/* OpenBSD furthermore already has an ALIGN macro. */
#undef ALIGN
#endif
#if !defined(MORPHOS) && !defined(OPENBSD)