From 9a74945c626290cf8a394436f45da2b3e69401b6 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Wed, 22 Nov 2017 19:59:12 +0100 Subject: utils: fix one compilation error with --with-mini-gmp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restore some code that is needed, until we have a version of gmp_printf that takes variable arguments. In file included from ../include/utils.h:12:0, from ../include/nftables.h:6, from ../include/rule.h:5, from segtree.c:15: segtree.c: In function ‘ei_insert’: ../include/gmputil.h:12:20: error: too many arguments to function ‘mpz_printf’ #define gmp_printf mpz_printf Signed-off-by: Pablo Neira Ayuso --- include/utils.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/utils.h b/include/utils.h index 36919524..310389c2 100644 --- a/include/utils.h +++ b/include/utils.h @@ -15,7 +15,11 @@ #define pr_debug(fmt, arg...) printf(fmt, ##arg) +#if defined(HAVE_LIBGMP) #define pr_gmp_debug(fmt, arg...) gmp_printf(fmt, ##arg) +#else +#define pr_gmp_debug(fmt, arg...) ({ if (false) {}; 0; }) +#endif #define __fmtstring(x, y) __attribute__((format(printf, x, y))) #if 0 -- cgit v1.2.3