[Python-modules-commits] r34441 - in packages/numpy/branches/sid/debian (2 files)
morph at users.alioth.debian.org
morph at users.alioth.debian.org
Thu Oct 1 22:29:59 UTC 2015
Date: Thursday, October 1, 2015 @ 22:29:58
Author: morph
Revision: 34441
* debian/patches/ppc_noassert.patch
- fix 'if defined()' syntax, and select only powerpc and not powerpc64 as
well; thanks to Emilio Pozuelo Monfort
Modified:
packages/numpy/branches/sid/debian/changelog
packages/numpy/branches/sid/debian/patches/ppc_noassert.patch
Modified: packages/numpy/branches/sid/debian/changelog
===================================================================
--- packages/numpy/branches/sid/debian/changelog 2015-10-01 20:10:34 UTC (rev 34440)
+++ packages/numpy/branches/sid/debian/changelog 2015-10-01 22:29:58 UTC (rev 34441)
@@ -1,3 +1,11 @@
+python-numpy (1:1.9.2-5) UNRELEASED; urgency=medium
+
+ * debian/patches/ppc_noassert.patch
+ - fix 'if defined()' syntax, and select only powerpc and not powerpc64 as
+ well; thanks to Emilio Pozuelo Monfort
+
+ -- Sandro Tosi <morph at debian.org> Thu, 01 Oct 2015 23:29:28 +0100
+
python-numpy (1:1.9.2-4) unstable; urgency=medium
* debian/patches/ppc_noassert.patch
Modified: packages/numpy/branches/sid/debian/patches/ppc_noassert.patch
===================================================================
--- packages/numpy/branches/sid/debian/patches/ppc_noassert.patch 2015-10-01 20:10:34 UTC (rev 34440)
+++ packages/numpy/branches/sid/debian/patches/ppc_noassert.patch 2015-10-01 22:29:58 UTC (rev 34441)
@@ -7,7 +7,7 @@
*
* See LICENSE.txt for the license.
*/
-+#ifdef defined(__ppc__) || defined(__powerpc__) || defined(_ARCH_PPC)
++#if defined(__powerpc__) & !defined(__powerpc64__)
+#ifndef NDEBUG
+// disable asserts malloc broken
+// https://sourceware.org/bugzilla/show_bug.cgi?id=6527
More information about the Python-modules-commits
mailing list