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
This commit is contained in:
Richard Frith-MacDonald 2010-05-22 04:41:32 +00:00
parent 2a3ef7b2d9
commit 20e7daac62
3 changed files with 10 additions and 10 deletions

View file

@ -1,3 +1,13 @@
2010-05-22 Richard Frith-Macdonald <rfm@gnu.org>
* 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 <rmottola@users.sf.net>
* Source/ObjectiveC2/runtime.h:

View file

@ -30,11 +30,6 @@
#define __NSObjCRuntime_h_GNUSTEP_BASE_INCLUDE
#include <stdarg.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <limits.h>
#import <GNUstepBase/GSVersionMacros.h>

View file

@ -1,9 +1,4 @@
#include "config.h"
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <stddef.h>
#include <sys/types.h>
#include "ObjectiveC2/Availability.h"