From: James Taylor Date: Wed, 17 Dec 2014 08:14:34 +0000 (+0000) Subject: Change ifdef to check for __GLIBC__ instead of __linux__ to prevent errors with other... X-Git-Tag: rec-3.7.0-rc1~109^2~6^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a61508c53512e9d28332d6e450314a515360737;p=thirdparty%2Fpdns.git Change ifdef to check for __GLIBC__ instead of __linux__ to prevent errors with other libc's --- 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) {