* Source/GNUmakefile.postamble (libgnustep-gui.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/gui/trunk@20198 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2004-10-06 03:34:46 +00:00
parent 2d88c43c22
commit f6d83285ae
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-10-05 Adam Fedor <fedor@gnu.org>
* Source/GNUmakefile.postamble (libgnustep-gui.def): Search for both
T and R symbols to work with multiple mingw/cygwin flavors.
2004-10-01 Adam Fedor <fedor@gnu.org>
* Documentation/ReleaseNotes.gsdoc: Format fixes.

View file

@ -116,6 +116,6 @@ libgnustep-gui.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