[xml/sgml-commit] r291 - packages/libxml2/tags/2.6.11-4/debian

Mike Hommey glandium-guest@haydn.debian.org
Sat, 16 Oct 2004 01:22:38 -0600


Author: glandium-guest
Date: 2004-10-16 01:22:29 -0600 (Sat, 16 Oct 2004)
New Revision: 291

Modified:
   packages/libxml2/tags/2.6.11-4/debian/changelog
   packages/libxml2/tags/2.6.11-4/debian/control
   packages/libxml2/tags/2.6.11-4/debian/rules
Log:
Last minute change to compile without gcc-3.2 on hppa

Modified: packages/libxml2/tags/2.6.11-4/debian/changelog
===================================================================
--- packages/libxml2/tags/2.6.11-4/debian/changelog	2004-10-16 07:13:46 UTC (rev 290)
+++ packages/libxml2/tags/2.6.11-4/debian/changelog	2004-10-16 07:22:29 UTC (rev 291)
@@ -29,8 +29,10 @@
   * xmlIO.c: Fixed typo (Closes: #265740).
   * nanohttp.c, nanoftp.c: no_proxy environment variable doesn't disable proxy
     anymore. (Closes: #266430)
+  * debian/rules, debian/control: Removed the workaround to compile with
+    gcc-3.2 on hppa, since $254549 is closed.
 
- -- Mike Hommey <mh@glandium.org>  Sat, 16 Oct 2004 15:38:20 +0900
+ -- Mike Hommey <mh@glandium.org>  Sat, 16 Oct 2004 16:20:54 +0900
 
 libxml2 (2.6.11-3) unstable; urgency=low
 

Modified: packages/libxml2/tags/2.6.11-4/debian/control
===================================================================
--- packages/libxml2/tags/2.6.11-4/debian/control	2004-10-16 07:13:46 UTC (rev 290)
+++ packages/libxml2/tags/2.6.11-4/debian/control	2004-10-16 07:22:29 UTC (rev 291)
@@ -4,7 +4,7 @@
 Maintainer: Debian XML/SGML Group <debian-xml-sgml-pkgs@lists.alioth.debian.org>
 Uploaders: Mike Hommey <mh@glandium.org>
 Standards-Version: 3.6.1
-Build-Depends: debhelper (>= 4.0.0), zlib1g-dev | libz-dev, python2.3-dev, autotools-dev, gcc-3.2 [hppa]
+Build-Depends: debhelper (>= 4.0.0), zlib1g-dev | libz-dev, python2.3-dev, autotools-dev
 
 Package: libxml2
 Architecture: any

Modified: packages/libxml2/tags/2.6.11-4/debian/rules
===================================================================
--- packages/libxml2/tags/2.6.11-4/debian/rules	2004-10-16 07:13:46 UTC (rev 290)
+++ packages/libxml2/tags/2.6.11-4/debian/rules	2004-10-16 07:22:29 UTC (rev 291)
@@ -14,10 +14,6 @@
       CFLAGS += -O2
 endif
 
-ifeq (hppa,$(shell dpkg --print-architecture))
-	FORCEGCC := CC=gcc-3.2
-endif
-
 build: build-stamp
 build-stamp:
 	dh_testdir
@@ -28,7 +24,7 @@
 	done
 
 	# ./configure
-	$(FORCEGCC) CFLAGS="$(CFLAGS)" ./configure --prefix=/usr --with-python=/usr/bin/python2.3
+	CFLAGS="$(CFLAGS)" ./configure --prefix=/usr --with-python=/usr/bin/python2.3
 	echo "all:" > example/Makefile
 	echo "install:" >> example/Makefile
 	echo "distclean:" >> example/Makefile