--- debian/changelog | 9 +++++++++ debian/control | 2 +- debian/rules | 3 +-- 3 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/debian/changelog b/debian/changelog index 073f143..d488fda 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +tig (0.9-2) unstable; urgency=low + + * Add wide char support: + - Build-Depends on libncursesw5-dev instead of libncurses5-dev. + - Pass âLDLIBS=-lncurseswâ to the âmake all docâ call, overriding + the default âLDLIBS ?= -lcursesâ. + + -- Cyril Brulebois <[EMAIL PROTECTED]> Wed, 19 Dec 2007 14:59:33 +0100 + tig (0.9-1) unstable; urgency=low * New upstream release. diff --git a/debian/control b/debian/control index 7cf94e0..007b218 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: tig Section: utils Priority: optional Maintainer: Sebastian Harl <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 5), dpkg-dev (>= 1.14.6), libncurses5-dev, asciidoc (>= 7), xmlto, docbook-utils +Build-Depends: debhelper (>= 5), dpkg-dev (>= 1.14.6), libncursesw5-dev, asciidoc (>= 7), xmlto, docbook-utils Standards-Version: 3.7.2 Homepage: http://jonas.nitro.dk/tig/ XS-Vcs-Git: git://git.tokkee.org/pkg-tig.git diff --git a/debian/rules b/debian/rules index e43e5a3..966ee2a 100755 --- a/debian/rules +++ b/debian/rules @@ -19,8 +19,7 @@ build: build-stamp build-stamp: dh_testdir - CFLAGS="$(FLAGS)" $(MAKE) all doc - + CFLAGS="$(FLAGS)" $(MAKE) all doc LDLIBS=-lncursesw touch build-stamp clean: -- 1.5.3.7 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

