Merge lp:~peter-pearse/ubuntu/natty/libxml2/prop001 into lp:ubuntu/natty/libxml2

Proposed by Peter Pearse
Status: Needs review
Proposed branch: lp:~peter-pearse/ubuntu/natty/libxml2/prop001
Merge into: lp:ubuntu/natty/libxml2
Diff against target: 40 lines (+17/-0)
2 files modified
debian/changelog (+6/-0)
debian/rules (+11/-0)
To merge this branch: bzr merge lp:~peter-pearse/ubuntu/natty/libxml2/prop001
Reviewer Review Type Date Requested Status
Steve Langasek Pending
Review via email: mp+56957@code.launchpad.net
To post a comment you must log in.

Unmerged revisions

41. By Peter Pearse

Patch for cross building.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'debian/changelog'
--- debian/changelog 2010-12-25 10:48:27 +0000
+++ debian/changelog 2011-04-08 14:44:25 +0000
@@ -1,3 +1,9 @@
1libxml2 (2.7.8.dfsg-2ubuntu1) natty; urgency=low
2
3 * Patch for cross building
4
5 -- Peter Pearse <peter.pearse@linaro.org> Fri, 08 Apr 2011 08:49:59 +0000
6
1libxml2 (2.7.8.dfsg-2) unstable; urgency=low7libxml2 (2.7.8.dfsg-2) unstable; urgency=low
28
3 * xpath.c: Fix a double-freeing error in XPath processing code.9 * xpath.c: Fix a double-freeing error in XPath processing code.
410
=== modified file 'debian/rules'
--- debian/rules 2010-06-29 12:42:35 +0000
+++ debian/rules 2011-04-08 14:44:25 +0000
@@ -1,5 +1,8 @@
1#!/usr/bin/make -f1#!/usr/bin/make -f
22
3DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
4DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
5
3# The versions of python currently supported6# The versions of python currently supported
4PYVERS=$(shell pyversions -s)7PYVERS=$(shell pyversions -s)
5# The current default version of python8# The current default version of python
@@ -26,6 +29,14 @@
26endif29endif
2730
28CONFIGURE_FLAGS := --with-history CC="gcc -Wl,--as-needed" CFLAGS="$(CFLAGS)" --cache-file="$(CURDIR)/build/config.cache"31CONFIGURE_FLAGS := --with-history CC="gcc -Wl,--as-needed" CFLAGS="$(CFLAGS)" --cache-file="$(CURDIR)/build/config.cache"
32ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE))
33 CONFIGURE_FLAGS += --host $(DEB_HOST_GNU_TYPE) --build $(DEB_BUILD_GNU_TYPE)
34 CONFIGURE_FLAGS += CC="$(DEB_HOST_GNU_TYPE)-gcc -Wl,--as-needed"
35else
36 CONFIGURE_FLAGS += CC="gcc -Wl,--as-needed"
37endif
38
39
2940
30override_dh_auto_configure: $(TARGETS:%=configure-%)41override_dh_auto_configure: $(TARGETS:%=configure-%)
3142

Subscribers

People subscribed via source and target branches

to all changes: