Author: jsc
Date: Thu May 23 17:34:03 2013
New Revision: 1485784

URL: http://svn.apache.org/r1485784
Log:
#122010# prepare configure to support Python 2.7.5 and newer on MacOS, 2.7.1 is 
now still supported

Modified:
    openoffice/trunk/main/configure.in

Modified: openoffice/trunk/main/configure.in
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/configure.in?rev=1485784&r1=1485783&r2=1485784&view=diff
==============================================================================
--- openoffice/trunk/main/configure.in (original)
+++ openoffice/trunk/main/configure.in Thu May 23 17:34:03 2013
@@ -4093,7 +4093,7 @@ if test "$_os" = "Darwin" && test "$with
    _python_hexversion=`$_python -c "import sys; print sys.hexversion;"`
    
    dnl hex version of Python 2.7.1 = 34013680
-   if test "$_python_hexversion" >= "34013680" ; then
+   if test $_python_hexversion -ge 34013680 ; then
       AC_MSG_RESULT([compiling against system python (version 
$_python_version)])
 
          _python_ver=`$_python -c "import distutils.sysconfig; 
print(distutils.sysconfig.get_config_var('VERSION'));"`


Reply via email to