mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
* 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:
parent
60db720863
commit
f60daee123
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue