diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-07-10 01:15:29 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-07-10 01:15:29 +0000 |
commit | 4874eef48302d2709175b698361f91c680b76bf5 (patch) | |
tree | e73e09595ac3f76aa35a05cad9f9ce7d81c2d582 | |
parent | e67bcdd98554514e24acd96370ad013ef8afeba1 (diff) | |
download | ffmpeg-4874eef48302d2709175b698361f91c680b76bf5.tar.gz |
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
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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" |