This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Removed dependency on libgcc_s_sjlj-1.dll when building with mingw64
- Loading branch information
Showing
with
4 additions
and 9 deletions.
- +2 −1 build-scripts/ltmain.sh
- +1 −4 configure
- +1 −4 configure.in
have_loadso=yes | ||
fi | ||
# Set up the system libraries we need | ||
# SDL is unicode, and unicows emulates this on Windows 98/ME | ||
# You can get this here: http://libunicows.sourceforge.net/ | ||
#EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lunicows" | ||
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lversion -luuid" | ||
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lshell32 -lversion -luuid -static-libgcc" | ||
# The Windows platform requires special setup | ||
VERSION_SOURCES="$srcdir/src/main/windows/*.rc" | ||
SDLMAIN_SOURCES="$srcdir/src/main/windows/*.c" |