diff options
author | Ramiro Polla <ramiro@lisha.ufsc.br> | 2006-08-25 15:53:16 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-08-25 15:53:16 +0000 |
commit | b89c8f589af0fcb350614d9f49cf6ff2a5e92c43 (patch) | |
tree | 8517c99457b58876d7a0dcd89b7d4fdcf662dd98 /configure | |
parent | 92c3ef657b3d36017ec60399bccb35ea64a676da (diff) | |
download | ffmpeg-b89c8f589af0fcb350614d9f49cf6ff2a5e92c43.tar.gz |
The FFLDFLAGS for MinGW are only meant for the shared libraries and not
all executables. So they should really be SHFLAGS.
patch by Ramiro Polla, angustia at arrozcru d.t no-ip d.t org
Originally committed as revision 6090 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -897,7 +897,7 @@ EOF SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)' SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)' SLIB_EXTRA_CMD="-lib /machine:i386 /def:\$(@:${SLIBSUF}=.def)" - FFLDFLAGS="-Wl,--output-def,\$(@:${SLIBSUF}=.def),--out-implib,lib\$(SLIBNAME:\$(SLIBSUF)=.dll.a)" + SHFLAGS="-shared -Wl,--output-def,\$(@:${SLIBSUF}=.def),--out-implib,lib\$(SLIBNAME:\$(SLIBSUF)=.dll.a)" if test "$force_prefix" != yes; then PREFIX="$PROGRAMFILES/FFmpeg"; fi if test "$force_libdir" != yes; then bindir='${PREFIX}'; fi shlibdir='${PREFIX}' |