From: Jack Jansen Date: Mon, 24 Jul 2000 19:42:53 +0000 (+0000) Subject: Put in an earlier include of sys/signal.h (within ifdef USE_GUSI) to forestal a multi... X-Git-Tag: v2.0b1~734 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5199c54e38e9b28c84e3c8a05f05a170d86e20b6;p=thirdparty%2FPython%2Fcpython.git Put in an earlier include of sys/signal.h (within ifdef USE_GUSI) to forestal a multiple define. --- diff --git a/Mac/tclmods/tclMacNotify.c b/Mac/tclmods/tclMacNotify.c index 140dadb8bbe2..8fc313aee252 100644 --- a/Mac/tclmods/tclMacNotify.c +++ b/Mac/tclmods/tclMacNotify.c @@ -13,6 +13,10 @@ * SCCS: @(#) tclMacNotify.c 1.36 97/05/07 19:09:29 */ +#ifdef USE_GUSI +/* Move this include up otherwise tclPort.h tried to redefine signals */ +#include +#endif #include "tclInt.h" #include "tclPort.h" #include "tclMac.h" diff --git a/Mac/tclmods/tclSelectNotify.c b/Mac/tclmods/tclSelectNotify.c index ea35fc62365f..a728442fc156 100644 --- a/Mac/tclmods/tclSelectNotify.c +++ b/Mac/tclmods/tclSelectNotify.c @@ -23,6 +23,10 @@ #pragma import reset #endif +#ifdef USE_GUSI +/* Move this include up otherwise tclPort.h tried to redefine signals */ +#include +#endif #include "tclInt.h" #include "tclPort.h" #include