[Pkg-mono-svn-commits] rev 3178 - mono/trunk/debian

Mirco Bauer meebey-guest at alioth.debian.org
Tue May 29 20:57:30 UTC 2007


Author: meebey-guest
Date: 2007-05-29 20:57:30 +0000 (Tue, 29 May 2007)
New Revision: 3178

Modified:
   mono/trunk/debian/changelog
   mono/trunk/debian/rules
Log:
- mono 1.2.4-3 release



Modified: mono/trunk/debian/changelog
===================================================================
--- mono/trunk/debian/changelog	2007-05-28 22:43:10 UTC (rev 3177)
+++ mono/trunk/debian/changelog	2007-05-29 20:57:30 UTC (rev 3178)
@@ -1,3 +1,12 @@
+mono (1.2.4-3) unstable; urgency=low
+
+  * Mirco 'meebey' Bauer:
+    + debian/rules:
+      - Enable sigaltstack only for i386 and amd64, fixes FTBFS for ia64 and
+        possibly other archs.
+
+ -- Mirco Bauer <meebey at debian.org>  Tue, 29 May 2007 22:54:24 +0200
+
 mono (1.2.4-2) unstable; urgency=low
 
   * Mirco 'meebey' Bauer:

Modified: mono/trunk/debian/rules
===================================================================
--- mono/trunk/debian/rules	2007-05-28 22:43:10 UTC (rev 3177)
+++ mono/trunk/debian/rules	2007-05-29 20:57:30 UTC (rev 3178)
@@ -23,10 +23,15 @@
 endif
 
 ifeq ($(DEB_BUILD_ARCH_OS), kfreebsd)
-	CONF_FLAGS += --with-tls=__thread
         CONF_FLAGS += --enable-minimal=aot
+endif
+
+ifeq ($(DEB_BUILD_ARCH), i386)
+	CONF_FLAGS += --with-sigaltstack=yes
 else ifeq ($(DEB_BUILD_ARCH), amd64)
-	CONF_FLAGS += --with-tls=__thread
+	CONF_FLAGS += --with-sigaltstack=yes
+else
+	CONF_FLAGS += --with-sigaltstack=no
 endif
 
 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
@@ -37,8 +42,8 @@
 		./configure $(CONF_FLAGS) --prefix=/usr \
 		  --mandir=\$${prefix}/share/man \
 		  --infodir=\$${prefix}/share/info --sysconfdir=/etc \
-		  --with-sigaltstack=yes \
 		  --with-jit=yes --with-ikvm-native=no --with-preview=yes \
+		  --with-tls=__thread \
 		  --with-libgdiplus=installed --with-x=yes
 
 # Include dpatch stuff.




More information about the Pkg-mono-svn-commits mailing list