diff options
author | WiSo <wiso@xbmc.org> | 2011-03-26 22:55:51 +0100 |
---|---|---|
committer | WiSo <wiso@xbmc.org> | 2011-03-26 22:55:51 +0100 |
commit | 28367e94710f1c23a455a82f4d5362a0231537ed (patch) | |
tree | 8efaee746b0f71a956d4566d0ccbbbfe287aef44 /lib/timidity | |
parent | e8064cdef65f66d04a1a77c26682e0ae45accd2a (diff) |
[WIN32] fixed: make timidity independent of some mingw libs
Diffstat (limited to 'lib/timidity')
-rw-r--r-- | lib/timidity/Makefile.win32 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/timidity/Makefile.win32 b/lib/timidity/Makefile.win32 index 0704d5cb88..5f0fbbaad2 100644 --- a/lib/timidity/Makefile.win32 +++ b/lib/timidity/Makefile.win32 @@ -14,7 +14,7 @@ CC=gcc lib: $(LIB) $(LIB): $(OBJS) exports.def - g++ -shared -o $@ $(OBJS) + g++ -shared -static-libgcc -o $@ $(OBJS) clean: rm -rf *.o |