From 1a61508c53512e9d28332d6e450314a515360737 Mon Sep 17 00:00:00 2001 From: James Taylor Date: Wed, 17 Dec 2014 08:14:34 +0000 Subject: [PATCH] Change ifdef to check for __GLIBC__ instead of __linux__ to prevent errors with other libc's --- pdns/receiver.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/receiver.cc b/pdns/receiver.cc index c8f3341739..eb82ff8be8 100644 --- a/pdns/receiver.cc +++ b/pdns/receiver.cc @@ -373,7 +373,7 @@ static void loadModules() } } -#ifdef __linux__ +#ifdef __GLIBC__ #include static void tbhandler(int num) { -- 2.47.2