diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-12-28 01:08:19 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-12-28 01:08:19 +0000 |
commit | b7b4167ac371c2ac7b77e3a7753f6a863e6310b6 (patch) | |
tree | d3121c87685e60a4d0f534229cbfe842c6bf0872 | |
parent | 0e085515c869e2a16044a23005c80e0a8243610e (diff) | |
download | xine-lib-b7b4167ac371c2ac7b77e3a7753f6a863e6310b6.tar.gz xine-lib-b7b4167ac371c2ac7b77e3a7753f6a863e6310b6.tar.bz2 |
Work around version number breakage in libavcodec.pc (libavcodec-dev).
CVS patchset: 8470
CVS date: 2006/12/28 01:08:19
-rw-r--r-- | debian/changelog | 9 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 11 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 65b43a20a..d308350d2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +xine-lib (1.1.3-0) unstable; urgency=medium + + * New upstream release. + + [Darren Salt] + * debian/rules: work around version number breakage in libavcodec.pc. + + -- Darren Salt <linux@youmustbejoking.demon.co.uk> Thu, 28 Dec 2006 00:16:11 +0000 + xine-lib (1.1.2+dfsg-2) unstable; urgency=medium * Bug fix: "CVE-2006-6172: xine-lib libreal Buffer Overflow diff --git a/debian/rules b/debian/rules index 51584c749..ef1347e49 100755 --- a/debian/rules +++ b/debian/rules @@ -67,6 +67,8 @@ CONFIGURE_FLAGS := --prefix=/usr \ --with-external-libdts \ --disable-cacatest \ $(DEB_BUILD_CONFIG_OPTIONS) \ + FFMPEG_CFLAGS="`pkg-config --cflags libavcodec`" \ + FFMPEG_LIBS="`pkg-config --libs libavcodec`" \ CFLAGS="$(CFLAGS)" configure: configure-stamp |