From 2005fe2ed6c20bf221433cbaa68364154620e1dd Mon Sep 17 00:00:00 2001 From: James Taylor Date: Wed, 17 Dec 2014 08:59:19 +0000 Subject: [PATCH] Missed some traceback handler ifdefs --- pdns/receiver.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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<