From af2c8d283665f741f82b4e16b06c520e702c012b Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 20 Aug 2019 00:18:07 +0900 Subject: Fixed the check for OSX version Should compare minimum required version, and with the particular macro defined for each version. Also made the error messages consistent. --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index c201a3597e..e437dbd62f 100644 --- a/configure.ac +++ b/configure.ac @@ -780,11 +780,11 @@ AS_CASE(["$target_os"], RUBY_PREPEND_OPTION(LIBS, -lobjc) RUBY_APPEND_OPTIONS(CPPFLAGS, -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT) AC_MSG_CHECKING(whether Mac OS X 10.5 or later) - AC_TRY_CPP([#include - #if MAC_OS_X_VERSION_MAX_ALLOWED <= 1040 - #error pre OS X 10.4 - [!<===== pre OS X 10.4 =====>] - #endif + AC_TRY_CPP([@%:@include + @%:@if MAC_OS_X_VERSION_MIN_REQUIRED < __MAC_10_5 + @%:@error pre OS X 10.5 + [!<===== pre OS X 10.5 =====>] + @%:@endif ], [macosx_10_5=yes], [macosx_10_5=no]) AC_MSG_RESULT($macosx_10_5) -- cgit v1.2.3