From ec1a25b261a8505de7c78cffdde5e6424371e3f8 Mon Sep 17 00:00:00 2001 From: "Ben \"root\" Anderson" Date: Sat, 9 Nov 2013 17:13:20 -0600 Subject: [PATCH] libstdc++ and libgcc DLLs are required by ffmpeg DLLs so no point to static linking --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1d530d2b4d..f77f17c67d 100644 --- a/configure.ac +++ b/configure.ac @@ -26,7 +26,7 @@ test "$DEFAULT_LDFLAGS" = "yes" && LDFLAGS="" # If on Windows, grab the prebuilts if test "$host_os" = "mingw32"; then CPPFLAGS="$CPPFLAGS -I$PWD/extern/for_mingw/include" - LDFLAGS="$LDFLAGS -L$PWD/extern/for_mingw/lib -static-libstdc++ -static-libgcc" + LDFLAGS="$LDFLAGS -L$PWD/extern/for_mingw/lib" # HACK: The prebuilts are 32bit only. Force the issue. CFLAGS="$CFLAGS -m32" CXXFLAGS="$CXXFLAGS -m32"