|
From: <sv...@va...> - 2005-07-20 13:18:27
|
Author: njn Date: 2005-07-20 14:18:23 +0100 (Wed, 20 Jul 2005) New Revision: 4215 Log: Move config.h inclusion from pub_tool_basics.h to pub_core_basics.h so it= 's not seen by external tools. This was requested by Josef W. Modified: trunk/coregrind/pub_core_basics.h trunk/include/pub_tool_basics.h Modified: trunk/coregrind/pub_core_basics.h =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/coregrind/pub_core_basics.h 2005-07-20 09:32:35 UTC (rev 4214) +++ trunk/coregrind/pub_core_basics.h 2005-07-20 13:18:23 UTC (rev 4215) @@ -58,8 +58,12 @@ # error Unknown arch #endif =20 +// For jmp_buf #include <setjmp.h> =20 +// Autoconf-generated settings +#include "config.h" + #endif // __PUB_CORE_BASICS_H =20 /*--------------------------------------------------------------------*/ Modified: trunk/include/pub_tool_basics.h =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/include/pub_tool_basics.h 2005-07-20 09:32:35 UTC (rev 4214) +++ trunk/include/pub_tool_basics.h 2005-07-20 13:18:23 UTC (rev 4215) @@ -52,9 +52,6 @@ // For varargs types #include <stdarg.h> =20 -// Autoconf-generated settings -#include "config.h" - // Kernel types. Might as well have them here, they're used so broadly // (eg. in pub_core_threadstate.h). #if defined(VGO_linux) |