Author: jim
Date: Wed Aug 16 16:13:03 2017
New Revision: 1805215

URL: http://svn.apache.org/viewvc?rev=1805215&view=rev
Log:
Note that we are requiring at least 10.9 (Mavericks) and
that the newest SDK we can use is 10.11, due to QuickTime
and the VCL module.

Modified:
    openoffice/trunk/main/configure.ac

Modified: openoffice/trunk/main/configure.ac
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/configure.ac?rev=1805215&r1=1805214&r2=1805215&view=diff
==============================================================================
--- openoffice/trunk/main/configure.ac (original)
+++ openoffice/trunk/main/configure.ac Wed Aug 16 16:13:03 2017
@@ -3824,7 +3824,7 @@ AC_SUBST(LIBXML_LIBS)
 
 
 dnl ===================================================================
-dnl Checks for a MacOS platform SDK compatible with an OSX 10.7 deployment 
target
+dnl Checks for a MacOS platform SDK compatible with an OSX 10.9 deployment 
target
 dnl ===================================================================
 if test  "$_os" = "Darwin"; then
    sdk_target=10.9
@@ -3833,11 +3833,11 @@ if test  "$_os" = "Darwin"; then
    sdk_minor=`echo $sdk_target | cut -d"." -f2`
 
    if test "$sdk_minor" -lt "9"; then
-      AC_MSG_ERROR([SDK version < 10.7 is not longer supported])
+      AC_MSG_ERROR([SDK version < 10.9 is not longer supported])
    else
       MACOSX_DEPLOYMENT_TARGET=$sdk_target
 
-      sdk_found=`xcodebuild -showsdks | $EGREP "sdk macosx10.(9|10|11|12)" | 
sed -e "s/.*sdk //" | tail -n1`
+      sdk_found=`xcodebuild -showsdks | $EGREP "sdk macosx10.(9|10|11)" | sed 
-e "s/.*sdk //" | tail -n1`
       if test -z "$sdk_found"; then
          AC_MSG_ERROR([No SDK with OSX $sdk_target compatibility found])
       else


Reply via email to