* CoreDataHeaders.h: Conditionally use the defines for _, ASSIGN, and

RETAIN when the framework is not being compiled using GNUstep and
	GNUSTEP is not defined.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep@33286 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2011-06-12 13:44:48 +00:00
parent c6eb6061ae
commit a348369fbb
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2011-06-12 09:42-EDT Gregory John Casamento <greg.casamento@gmail.com>
* CoreDataHeaders.h: Conditionally use the defines for _, ASSIGN, and
RETAIN when the framework is not being compiled using GNUstep and
GNUSTEP is not defined.
2010-12-27 Nicola Pero <nicola.pero@meta-innovation.com>
* NSAttributeDescription.m ([-initWithCoder:],

View file

@ -22,6 +22,7 @@
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
*/
#ifndef GNUSTEP /* if and only if we are not compiling under GNUstep, should these be defined */
#ifndef ASSIGN
#define ASSIGN(VAR, VAL) [(VAR) autorelease], (VAR)=[(VAL) retain]
#endif
@ -34,6 +35,7 @@
#ifndef _
#define _(STR) STR
#endif
#endif
#import <CoreData/CoreData.h>
#import "CoreDataUtilities.h"