[Pkg-voip-commits] r4672 - in /asterisk/trunk/debian: changelog rules

paravoid at alioth.debian.org paravoid at alioth.debian.org
Fri Oct 5 21:20:56 UTC 2007


Author: paravoid
Date: Fri Oct  5 21:20:55 2007
New Revision: 4672

URL: http://svn.debian.org/wsvn/pkg-voip/?sc=1&rev=4672
Log:
* Build with -O1 on hppa to workaround gcc-4.2 ICE (#445336).

Modified:
    asterisk/trunk/debian/changelog
    asterisk/trunk/debian/rules

Modified: asterisk/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-voip/asterisk/trunk/debian/changelog?rev=4672&op=diff
==============================================================================
--- asterisk/trunk/debian/changelog (original)
+++ asterisk/trunk/debian/changelog Fri Oct  5 21:20:55 2007
@@ -23,8 +23,9 @@
   * Re-enable IMAP support and enable ODBC support; this time they are
     provided as app_voicemail_imap.so and _odbc.so so that they don't break
     existing setups.
-
- -- Faidon Liambotis <paravoid at debian.org>  Fri, 05 Oct 2007 10:14:46 +0300
+  * Build with -O1 on hppa to workaround gcc-4.2 ICE (#445336).
+
+ -- Faidon Liambotis <paravoid at debian.org>  Sat, 06 Oct 2007 00:20:43 +0300
 
 asterisk (1:1.4.11~dfsg-4) unstable; urgency=low
 

Modified: asterisk/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-voip/asterisk/trunk/debian/rules?rev=4672&op=diff
==============================================================================
--- asterisk/trunk/debian/rules (original)
+++ asterisk/trunk/debian/rules Fri Oct  5 21:20:55 2007
@@ -16,7 +16,14 @@
 
 export PROC := $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU)
 
-BUILDFLAGS += OPTIMIZE=-O2 MAKECMDGOALS=dont-optimize
+ifneq ($(PROC),hppa)
+	BUILDFLAGS += OPTIMIZE=-O2
+else
+	# gcc-4.2 ICE on -O2, #445336
+	BUILDFLAGS += OPTIMIZE=-O1
+endif
+
+BUILDFLAGS += MAKECMDGOALS=dont-optimize
 
 # show full gcc arguments instead of [CC] and [LD]
 BUILDFLAGS += NOISY_BUILD=yes




More information about the Pkg-voip-commits mailing list