From 4874eef48302d2709175b698361f91c680b76bf5 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Mon, 10 Jul 2006 01:15:29 +0000 Subject: [PATCH] MinGW should set FFLDFLAGS and not LDFLAGS so that the LDFLAGS env var works. Originally committed as revision 5703 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 8bd9957eb0..d80c0e4fa9 100755 --- a/configure +++ b/configure @@ -868,7 +868,8 @@ EOF if test "$mingwce" = "yes"; then protocols="no" fi - LDFLAGS=-Wl,--output-def,$(@:.dll=.def),--out-implib,lib$(SLIBNAME:$(SLIBSUF)=.dll.a) + #FIXME: This ignores --extra-ldflags. + FFLDFLAGS=-Wl,--output-def,$(@:.dll=.def),--out-implib,lib$(SLIBNAME:$(SLIBSUF)=.dll.a) SLIBPREF="" SLIBSUF=".dll" EXESUF=".exe"