* Don't run the directfb testsuite on kfreebsd as it hangs; proposed patch

by Petr Salinger; closes: #431477.
This commit is contained in:
Loïc Minier 2007-07-03 17:03:45 +00:00
parent e7ae9a955c
commit fcfb36c08d
2 changed files with 14 additions and 2 deletions

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
gtk+2.0 (2.11.5-2) UNRELEASED; urgency=low
* Don't run the directfb testsuite on kfreebsd as it hangs; proposed patch
by Petr Salinger; closes: #431477.
-- Loic Minier <lool@dooz.org> Tue, 03 Jul 2007 18:59:23 +0200
gtk+2.0 (2.11.5-1) experimental; urgency=low
* New upstream development release, with API additions; the new API may

9
debian/rules vendored
View File

@ -25,8 +25,7 @@ PATCH_DIR := debian/patches
DEB_BUILD_OPTIONS_PARALLEL ?= $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
MAKEFLAGS += $(if $(DEB_BUILD_OPTIONS_PARALLEL),-j$(DEB_BUILD_OPTIONS_PARALLEL))
# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU)
@ -34,6 +33,7 @@ DEB_BUILD_GNU_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU)
# ppc64 support; see #386815
# XXX Should probably be fixed in binutils
# XXX Use LDFLAGS instead of CFLAGS?
# XXX shouldn't we check the arch instead of the CPU?
ifeq ($(DEB_BUILD_GNU_CPU),powerpc64)
CFLAGS += -mminimal-toc
endif
@ -80,7 +80,12 @@ ALL_PKGS := $(BINARY_INDEP_PKGS) $(BINARY_ARCH_PKGS)
FLAVORS := directfb shared static
# list of flavors to run the test suite on
# don't run the directfb testsuite on kfreebsd as it hangs; see #431477
ifeq ($(DEB_HOST_ARCH_OS), kfreebsd)
CHECK_FLAVORS := $(filter shared static, $(FLAVORS))
else
CHECK_FLAVORS := $(filter directfb shared static, $(FLAVORS))
endif
# build dir for the current flavor; this is only expanded in flavor specific
# targets