diff options
author | Michael Gilbert <mgilbert@debian.org> | 2015-01-30 13:53:13 +0800 |
---|---|---|
committer | Aron Xu <aron@debian.org> | 2015-01-30 13:53:13 +0800 |
commit | 6ce71e04b64aac89fd3c5d28123fd179126baf21 (patch) | |
tree | 151c931dc92730b00e0f5a567b401556b6c5490e | |
parent | 6fc1222c54b905a1fb0b1d9f173a4d049f7d6d06 (diff) | |
download | libxml2-6ce71e04b64aac89fd3c5d28123fd179126baf21.tar.gz |
Enable icu support (Closes: #776254)
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/debian/control b/debian/control index c51f493..1a7b3cc 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Standards-Version: 3.9.6 Build-Depends: debhelper (>= 9), dh-autoreconf, autotools-dev, pkg-config, libpython-all-dev, libpython-all-dbg, python-all-dev:any (>= 2.7.5-5~), python-all-dbg:any, - zlib1g-dev | libz-dev, liblzma-dev + zlib1g-dev | libz-dev, liblzma-dev, libicu-dev Homepage: http://xmlsoft.org/ Vcs-Git: git://anonscm.debian.org/debian-xml-sgml/libxml2.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-xml-sgml/libxml2.git diff --git a/debian/rules b/debian/rules index 51dacc5..54416c6 100755 --- a/debian/rules +++ b/debian/rules @@ -32,7 +32,7 @@ DH_OPTIONS += -Npython-libxml2 -Npython-libxml2-dbg export DH_OPTIONS endif -CONFIGURE_FLAGS := --disable-silent-rules --with-history CC="$(CC)" CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" --cache-file="$(CURDIR)/builddir/config.cache" +CONFIGURE_FLAGS := --disable-silent-rules --with-history CC="$(CC)" CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" --cache-file="$(CURDIR)/builddir/config.cache" --with-icu override_dh_auto_configure: $(TARGETS:%=doconfigure-%) |