[Pkg-apache-commits] r1232 - in /trunk/apr: changelog rules
sf at alioth.debian.org
sf at alioth.debian.org
Mon Aug 30 21:44:02 UTC 2010
Author: sf
Date: Mon Aug 30 21:44:01 2010
New Revision: 1232
URL: http://svn.debian.org/wsvn/pkg-apache/?sc=1&rev=1232
Log:
Also disable robust pthread mutexes on alpha
Modified:
trunk/apr/changelog
trunk/apr/rules
Modified: trunk/apr/changelog
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apr/changelog?rev=1232&op=diff
==============================================================================
--- trunk/apr/changelog (original)
+++ trunk/apr/changelog Mon Aug 30 21:44:01 2010
@@ -1,3 +1,10 @@
+apr (1.4.2-6) unstable; urgency=low
+
+ * Also disable robust pthread mutexes on alpha, to fix hang in the test
+ suite on Linux 2.6.32.
+
+ -- Stefan Fritsch <sf at debian.org> Mon, 30 Aug 2010 23:42:23 +0200
+
apr (1.4.2-5) unstable; urgency=medium
* Fix FTBFS on armel: Disable robust pthread mutexes on armel, as they
Modified: trunk/apr/rules
URL: http://svn.debian.org/wsvn/pkg-apache/trunk/apr/rules?rev=1232&op=diff
==============================================================================
--- trunk/apr/rules (original)
+++ trunk/apr/rules Mon Aug 30 21:44:01 2010
@@ -30,9 +30,12 @@
apr_cv_dup3=no \
apr_cv_accept4=no
-# apr_cv_mutex_robust_shared causes hangs in procmutex test on armel
+# apr_cv_mutex_robust_shared causes hangs in procmutex test on armel and alpha
# let's just disable this for squeeze
ifneq (,$(findstring armel,$(DEB_BUILD_ARCH)))
+ CONFFLAGS += apr_cv_mutex_robust_shared=no
+endif
+ifneq (,$(findstring alpha,$(DEB_BUILD_ARCH)))
CONFFLAGS += apr_cv_mutex_robust_shared=no
endif
More information about the Pkg-apache-commits
mailing list