Make sure headers don't conflict with MacOSX headers

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@15202 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-12-03 03:24:42 +00:00
parent 5253d8ce66
commit 181fda8a83
4 changed files with 6 additions and 6 deletions

View file

@ -73,7 +73,7 @@ endif
ADDITIONAL_OBJC_FLAGS += $(BACKEND_DEFINE)
# Additional include directories the compiler should search
ADDITIONAL_INCLUDE_DIRS = -I../Headers -I../Headers/gnustep
ADDITIONAL_INCLUDE_DIRS = -I../Headers
# What are the libraries this library depends upon. This is needed for some
# systems where building a shared library requires to pass to the linker

View file

@ -24,8 +24,8 @@
*/
#include <Foundation/NSObjCRuntime.h>
#include <AppKit/GMArchiver.h>
#include "AppKit/IMCustomObject.h"
#include "gnustep/gui/GMArchiver.h"
#include "gnustep/gui/IMCustomObject.h"
@implementation NSObject(ModelUnarchiving)

View file

@ -32,8 +32,8 @@
#import <Foundation/NSNotification.h>
#import <AppKit/AppKit.h>
#import <AppKit/GMArchiver.h>
#import "AppKit/IMLoading.h"
#import "gnustep/gui/GMArchiver.h"
#import "gnustep/gui/IMLoading.h"
#import "IBClasses.h"
#import "Translator.h"

View file

@ -42,7 +42,7 @@ int main ()
printf ("Convert nib files to GNU model files.\n");
printf ("usage: %s nib-file gmodel-file\n",
[[processInfo processName] cString]);
exit (1);
return (1);
}
translator = [[Translator new] autorelease];