* Source/Makefile.postamble (libgnustep-base.def): Search for both

T and R symbols to work with multiple mingw/cygwin flavors.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20197 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2004-10-06 03:33:09 +00:00
parent 60db720863
commit f60daee123
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-10-05 Adam Fedor <fedor@gnu.org>
* Source/Makefile.postamble (libgnustep-base.def): Search for both
T and R symbols to work with multiple mingw/cygwin flavors.
2004-10-05 Richard Frith-Macdonald <rfm@gnu.org>
* Source/Additions/GSGategories.m: make whitespace test safe for

View file

@ -167,7 +167,7 @@ libgnustep-base.def: $(OBJ_FILES_TO_LINK)
rm -f $@
rm -f _tmp.def
cat win32-def.top > $@
nm $^ | grep '^........ [T] _' | sed 's/[^_]*_//' > _tmp.def
nm $^ | grep '^........ [TR] _' | sed 's/[^_]*_//' > _tmp.def
cat _tmp.def | grep "_class_name_" >> $@
rm -rf _tmp.def