From 31473d5ff91e6062eca22b4ba2d23c8ee12c3710 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 24 Sep 2015 15:12:19 +0200 Subject: [PATCH] Build fix after removing DOS checks After removing the "#if ...DOS...", the following #elif also must be adjusted. See https://github.com/wxWidgets/wxWidgets/pull/100 --- include/wx/platform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/platform.h b/include/wx/platform.h index 05f454b0bb..572ddd0985 100644 --- a/include/wx/platform.h +++ b/include/wx/platform.h @@ -242,7 +242,7 @@ finally for Unix-like systems Mac OS X matches this case (__MACH__), prior Mac OS do not. */ -#elif defined(__UNIX__) || defined(__unix) || defined(__unix__) || \ +#if defined(__UNIX__) || defined(__unix) || defined(__unix__) || \ defined(____SVR4____) || defined(__LINUX__) || defined(__sgi) || \ defined(__hpux) || defined(sun) || defined(__SUN__) || defined(_AIX) || \ defined(__VMS) || defined(__BEOS__) || defined(__MACH__)