diff options
author | Siggi Langauf <siggi@users.sourceforge.net> | 2002-06-20 00:29:53 +0000 |
---|---|---|
committer | Siggi Langauf <siggi@users.sourceforge.net> | 2002-06-20 00:29:53 +0000 |
commit | 1caab3bdb77bca6c079890906ad01400e558ed75 (patch) | |
tree | 715424e56e36377f7eac83dabd46b2a18fef24c5 | |
parent | 24b7943016185571c079ea4a0e52588074540eeb (diff) | |
download | xine-lib-1caab3bdb77bca6c079890906ad01400e558ed75.tar.gz xine-lib-1caab3bdb77bca6c079890906ad01400e558ed75.tar.bz2 |
prepare for 0.9.11
CVS patchset: 2102
CVS date: 2002/06/20 00:29:53
-rw-r--r-- | debian/changelog | 9 | ||||
-rwxr-xr-x | debian/rules | 6 |
2 files changed, 13 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index e7e08e4ea..cb1ee83e8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +xine-lib (0.9.11-1) unstable; urgency=low + + * new upstream release + - pads Xv images, so width % 4 == 0 (closes: #134997) + - AVI demuxer checks for CAP_SEEKABLE (closes: #132771) + + + -- Siggi Langauf <siggi@debian.org> Thu, 20 Jun 2002 00:11:37 +0200 + xine-lib (0.9.10-2) unstable; urgency=high * disabled machine specific optimizations, so autobuilders will diff --git a/debian/rules b/debian/rules index e20e0e59f..d76f9f894 100755 --- a/debian/rules +++ b/debian/rules @@ -31,6 +31,7 @@ ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) BUILD_TARGET := debug endif +DEB_HOST_GNU_OPTION := # the "optimize" flag disables compatibility hacks ifeq (,$(findstring optimize,$(DEB_BUILD_OPTIONS))) $(warning trying to disable machine-specific optimizations) @@ -50,6 +51,7 @@ ifeq (,$(findstring optimize,$(DEB_BUILD_OPTIONS))) $(warning ignoring DEB_HOST_GNU_TYPE = $(DEB_HOST_GNU_TYPE)) DEB_HOST_GNU_TYPE := $(DEB_BUILD_GNU_TYPE) endif + DEB_HOST_GNU_OPTION := --host=$(DEB_HOST_GNU_TYPE) endif @@ -57,7 +59,7 @@ configure: configure-stamp configure-stamp: dh_testdir ./configure --prefix=/usr --mandir=\$${prefix}/share/man \ - --host=$(DEB_HOST_GNU_TYPE) + $(DEB_HOST_GNU_OPTION) touch configure-stamp build: configure-stamp build-stamp @@ -114,7 +116,7 @@ binary-arch: build install dh_strip dh_compress dh_fixperms - dh_makeshlibs -V 'libxine0 (>= 0.9.10)' + dh_makeshlibs -V 'libxine0 (>= 0.9.11)' dh_installdeb # dh_shlibdeps chmod +x debian/shlibdeps.sh |