Apply patch #7822 by Stanislav Yaglo, which makes the NSFramework_* classes

into subclasses of NSObject (they were root classes before).


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@35407 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Niels Grewe 2012-08-15 14:46:33 +00:00
parent 695f80a68f
commit 668142d56f
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-08-15 Stansilav Yaglo <stanislav-yaglo@yandex.ru>
* Instance/framework.make: Patch #7822. Make dummy framework classes
subclasses of NSObject.
2012-07-05 Quentin Mathe <quentin.mathe@gmail.com>
* configure.ac: Fixed ObjC non fragile ABI check to restore CFLAGS

View file

@ -483,8 +483,9 @@ $(DUMMY_FRAMEWORK_FILE): $(DERIVED_SOURCES_DIR)/.stamp $(OBJ_FILES_TO_LINK) GNUm
classarray="$$classarray)"; \
fi; \
echo "$$classarray" > $(DUMMY_FRAMEWORK_CLASS_LIST); \
echo "#include <Foundation/NSObject.h>" > $@; \
echo "#include <Foundation/NSString.h>" > $@; \
echo "@interface $(DUMMY_FRAMEWORK)" >> $@; \
echo "@interface $(DUMMY_FRAMEWORK) : NSObject" >> $@; \
echo "+ (NSString *)frameworkEnv;" >> $@; \
echo "+ (NSString *)frameworkPath;" >> $@; \
echo "+ (NSString *)frameworkVersion;" >> $@; \