summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/utils.h4
1 files changed, 4 insertions, 0 deletions
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