Source: ckermit Version: 302-1 Severity: important Tags: patch User: debian-h...@lists.debian.org Usertags: hurd
Hello, ckermit currently FTBFS on GNU/Hurd due to a missing definition of SELECT. The inlined patch of debian/rules below adds a test for Hurd in addition to the one for kFreeBSD. --- a/debian_rules 2012-01-29 03:27:10.000000000 +0100 +++ b/debian/rules 2012-05-07 23:15:51.000000000 +0200 @@ -20,7 +20,7 @@ endif DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS) -ifeq ($(DEB_HOST_ARCH_OS),kfreebsd) +ifneq (,$(or $(findstring kfreebsd, $(DEB_HOST_ARCH_OS)), $(findstring hurd, $(DEB_HOST_ARCH_OS)))) CFLAGS += -DSELECT endif -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org