Package: rate-engine Severity: important Tags: patch Hi,
The current version of rate-engine fails to build on GNU/kFreeBSD. This is due to a missing check for glibc. Please find attached a patch to fix that. It would be nice if you could include it in the next upload. Thanks in advance, Aurelien -- System Information: Debian Release: testing/unstable Architecture: kfreebsd-i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: GNU/kFreeBSD 5.4-1-686 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
--- rate-engine-0.5.4.orig/rate_engine.c +++ rate-engine-0.5.4/rate_engine.c @@ -10,7 +10,7 @@ * $Id: rate_engine.c,v 1.26 2004/08/26 16:50:18 tholo Exp $ */ -#ifdef __linux__ +#if defined(__linux__) || defined(__GLIBC__) #define _GNU_SOURCE #endif