]> granicus.if.org Git - python/commitdiff
Issue #25798: Update OS X 10.5+ 32-bit-only installer to build
authorNed Deily <nad@acm.org>
Sun, 6 Dec 2015 04:47:34 +0000 (23:47 -0500)
committerNed Deily <nad@acm.org>
Sun, 6 Dec 2015 04:47:34 +0000 (23:47 -0500)
and link with OpenSSL 1.0.2e.

Mac/BuildScript/build-installer.py
Mac/BuildScript/openssl_sdk_makedepend.patch
Misc/NEWS

index 74c9cfb9e730d172712a91a4659848eedc6bc88f..a049b7a83be7fb40f971a7f7ad0b65c8a46784aa 100755 (executable)
@@ -237,9 +237,9 @@ def library_recipes():
 
         result.extend([
           dict(
-              name="OpenSSL 1.0.2d",
-              url="https://www.openssl.org/source/openssl-1.0.2d.tar.gz",
-              checksum='38dd619b2e77cbac69b99f52a053d25a',
+              name="OpenSSL 1.0.2e",
+              url="https://www.openssl.org/source/openssl-1.0.2e.tar.gz",
+              checksum='5262bfa25b60ed9de9f28d5d52d77fc5',
               patches=[
                   "openssl_sdk_makedepend.patch",
                    ],
index 86a0f2f4d5f2392a97d62b9cf89bdceca57eaa04..85bd69be4c00585367c2ec83d0af47c03f580ac3 100644 (file)
@@ -1,8 +1,8 @@
 # HG changeset patch
-# Parent  25a9af415e8c3faf591c360d5f0e361d049b2b43
+# Parent  ff8a7557607cffd626997e57ed31c1012a3018aa
 # openssl_sdk_makedepend.patch
 #
-#      using openssl 1.0.2d
+#      using openssl 1.0.2e
 #
 # - support building with an OS X SDK
 # - allow "make depend" to use compilers with names other than "gcc"
@@ -12,7 +12,7 @@ diff Configure
 diff --git a/Configure b/Configure
 --- a/Configure
 +++ b/Configure
-@@ -617,12 +617,12 @@
+@@ -635,12 +635,12 @@
  
  ##### MacOS X (a.k.a. Rhapsody or Darwin) setup
  "rhapsody-ppc-cc","cc:-O3 -DB_ENDIAN::(unknown):MACOSX_RHAPSODY::BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:${no_asm}::",
@@ -31,24 +31,26 @@ diff --git a/Configure b/Configure
  "debug-darwin-ppc-cc","cc:-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -DB_ENDIAN -g -Wall -O::-D_REENTRANT:MACOSX::BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:${ppc32_asm}:osx32:dlfcn:darwin-shared:-fPIC:-dynamiclib:.\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib",
  # iPhoneOS/iOS
  "iphoneos-cross","llvm-gcc:-O3 -isysroot \$(CROSS_TOP)/SDKs/\$(CROSS_SDK) -fomit-frame-pointer -fno-common::-D_REENTRANT:iOS:-Wl,-search_paths_first%:BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR:${no_asm}:dlfcn:darwin-shared:-fPIC -fno-common:-dynamiclib:.\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib",
-@@ -1685,7 +1685,7 @@
+@@ -1714,8 +1714,7 @@
                s/^CC=.*$/CC= $cc/;
                s/^AR=\s*ar/AR= $ar/;
                s/^RANLIB=.*/RANLIB= $ranlib/;
 -              s/^MAKEDEPPROG=.*$/MAKEDEPPROG= $cc/ if $cc eq "gcc";
-+              s/^MAKEDEPPROG=.*$/MAKEDEPPROG= $cc/;
+-              s/^MAKEDEPPROG=.*$/MAKEDEPPROG= $cc/ if $ecc eq "gcc" || $ecc eq "clang";
++              s/^MAKEDEPPROG=.*$/MAKEDEPPROG= $cc/
                }
        s/^CFLAG=.*$/CFLAG= $cflags/;
        s/^DEPFLAG=.*$/DEPFLAG=$depflags/;
 diff --git a/util/domd b/util/domd
 --- a/util/domd
 +++ b/util/domd
-@@ -14,7 +14,7 @@
+@@ -14,8 +14,7 @@
  cp Makefile Makefile.save
  # fake the presence of Kerberos
  touch $TOP/krb5.h
--if expr "$MAKEDEPEND" : '.*gcc$' > /dev/null; then
-+if true ; then  # was: if expr "$MAKEDEPEND" : '.*gcc$' > /dev/null; then
+-if ${MAKEDEPEND} --version 2>&1 | grep -q "clang" ||
+-   echo $MAKEDEPEND | grep -q "gcc"; then
++if true ; then
      args=""
      while [ $# -gt 0 ]; do
        if [ "$1" != "--" ]; then args="$args $1"; fi
index 54dd10118cf2327f6a6b8638246ee6cece942aed..1bef3670e776e48631e8d50feed06b8f26fd0c30 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -53,6 +53,12 @@ Tests
 - Issue #25616: Tests for OrderedDict are extracted from test_collections
   into separate file test_ordered_dict.
 
+Build
+-----
+
+- Issue #25798: Update OS X 10.5+ 32-bit-only installer to build
+  and link with OpenSSL 1.0.2e.
+
 
 What's New in Python 2.7.11?
 ============================