configure.ac | 2 +- debian/changelog | 6 ++++++ debian/rules | 4 +++- 3 files changed, 10 insertions(+), 2 deletions(-)
New commits: commit f3723bb28b048f450af08afb0435249060887d53 Author: Julien Cristau <[email protected]> Date: Mon Mar 31 22:38:08 2014 +0200 Upload to unstable diff --git a/debian/changelog b/debian/changelog index b352e35..b9bf917 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xserver-xorg-video-vmware (1:13.0.2-2) unstable; urgency=medium + + * Fix build failure on kfreebsd (closes: #743239) + + -- Julien Cristau <[email protected]> Mon, 31 Mar 2014 22:37:52 +0200 + xserver-xorg-video-vmware (1:13.0.2-1) unstable; urgency=medium * New upstream release commit 5544fe0de73e5144f43cec1896445ef522dda3a7 Author: Julien Cristau <[email protected]> Date: Mon Mar 31 22:35:27 2014 +0200 configure: fix build without xatracker ACTION-IF-NOT-FOUND is the fourth argument to PKG_CHECK_MODULES, not the fifth. Debian bug#743239 <https://bugs.debian.org/743239> Signed-off-by: Julien Cristau <[email protected]> diff --git a/configure.ac b/configure.ac index dd3ad4e..be40ed7 100644 --- a/configure.ac +++ b/configure.ac @@ -126,7 +126,7 @@ if test x$BUILD_VMWGFX = xyes; then [PKG_CHECK_EXISTS([xatracker = 2.0.0], [AC_DEFINE([HAVE_XA_2], 1, [Has version 2 of XA])])], - [],[BUILD_VMWGFX=no]) + [BUILD_VMWGFX=no]) # # Check for prime. # commit 91f540ad132d0a62bcbe4018cbd1d3591de30e85 Author: Julien Cristau <[email protected]> Date: Mon Mar 31 22:34:43 2014 +0200 Mark 'build' as PHONY We use it as a build directory, so this unconfuses make. diff --git a/debian/rules b/debian/rules index 304c7ee..7fa7b81 100755 --- a/debian/rules +++ b/debian/rules @@ -19,5 +19,7 @@ override_dh_install: override_dh_shlibdeps: dh_shlibdeps -- --warnings=6 -%: +build %: dh $@ --with quilt,autoreconf,xsf --builddirectory=build/ + +.PHONY: build -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: https://lists.debian.org/[email protected]

