From: James Taylor Date: Wed, 17 Dec 2014 08:59:19 +0000 (+0000) Subject: Missed some traceback handler ifdefs X-Git-Tag: rec-3.7.0-rc1~109^2~6^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2005fe2ed6c20bf221433cbaa68364154620e1dd;p=thirdparty%2Fpdns.git Missed some traceback handler ifdefs --- diff --git a/pdns/receiver.cc b/pdns/receiver.cc index eb82ff8be8..763ca8f36d 100644 --- a/pdns/receiver.cc +++ b/pdns/receiver.cc @@ -405,7 +405,7 @@ int main(int argc, char **argv) s_programname="pdns"; s_starttime=time(0); -#ifdef __linux__ +#ifdef __GLIBC__ signal(SIGSEGV,tbhandler); signal(SIGFPE,tbhandler); signal(SIGABRT,tbhandler); @@ -470,7 +470,7 @@ int main(int argc, char **argv) // we really need to do work - either standalone or as an instance -#ifdef __linux__ +#ifdef __GLIBC__ if(!::arg().mustDo("traceback-handler")) { L<