From 20e7daac62f771c03e4fbbb0d0570b91949e0326 Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Sat, 22 May 2010 04:41:32 +0000 Subject: [PATCH] quick fix t get trunk compiling again. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@30444 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 10 ++++++++++ Headers/Foundation/NSObjCRuntime.h | 5 ----- Source/ObjectiveC2/runtime.h | 5 ----- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4a4c0d1c6..2ebad8a89 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2010-05-22 Richard Frith-Macdonald + + * Headers/Foundation/NSObjCRuntime.h: + Remove include of stdint.h ... already included by GSConfig.h + * Source/ObjectiveC2/runtime.h: + Revert 'guarding' of stdint.h inclusion to get things to compile + again ... we *require* stdint.h to be present. + I guess on any system old enough not to have it, the solution + would be to generate and install our own version. + 2010-05-21 Riccardo Mottola * Source/ObjectiveC2/runtime.h: diff --git a/Headers/Foundation/NSObjCRuntime.h b/Headers/Foundation/NSObjCRuntime.h index ae4bb390f..b04c00499 100644 --- a/Headers/Foundation/NSObjCRuntime.h +++ b/Headers/Foundation/NSObjCRuntime.h @@ -30,11 +30,6 @@ #define __NSObjCRuntime_h_GNUSTEP_BASE_INCLUDE #include - -#ifdef HAVE_STDINT_H -#include -#endif - #include #import diff --git a/Source/ObjectiveC2/runtime.h b/Source/ObjectiveC2/runtime.h index b49c1a1a1..c557c4257 100644 --- a/Source/ObjectiveC2/runtime.h +++ b/Source/ObjectiveC2/runtime.h @@ -1,9 +1,4 @@ -#include "config.h" - -#ifdef HAVE_STDINT_H #include -#endif - #include #include #include "ObjectiveC2/Availability.h"