diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2007-10-15 14:02:01 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2007-10-15 14:02:01 +0000 |
commit | 85aec3bd480c5c9f8836989c988fc795478eedc3 (patch) | |
tree | b3e1946d40547a147fda217d470d5ace8cd9b186 | |
parent | 9a3fb64000d0ce0e7666f1c4942a9aca1eb2bfdf (diff) | |
download | ffmpeg-85aec3bd480c5c9f8836989c988fc795478eedc3.tar.gz |
Remove gcc import libraries from Win32 builds.
They weren't even installed, and [1] suggests linking directly to the dll.
[1] http://sourceware.org/binutils/docs-2.18/ld/WIN32.html
Originally committed as revision 10740 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1184,7 +1184,7 @@ case $targetos in SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)' SLIB_EXTRA_CMD='-lib /machine:i386 /def:$(@:$(SLIBSUF)=.def)' SLIB_INSTALL_EXTRA_CMD='-install -m 644 $(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib) "$(SHLIBDIR)/$(SLIBNAME_WITH_MAJOR:$(SLIBSUF)=.lib)"' - SHFLAGS='-shared -Wl,--output-def,$(@:$(SLIBSUF)=.def),--out-implib,lib$(SLIBNAME:$(SLIBSUF)=.dll.a) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base' + SHFLAGS='-shared -Wl,--output-def,$(@:$(SLIBSUF)=.def) -Wl,--enable-runtime-pseudo-reloc -Wl,--enable-auto-image-base' ;; cygwin*) targetos=cygwin @@ -1200,7 +1200,7 @@ case $targetos in SLIBSUF=".dll" SLIBNAME_WITH_VERSION='$(SLIBPREF)$(NAME)-$(LIBVERSION)$(SLIBSUF)' SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(NAME)-$(LIBMAJOR)$(SLIBSUF)' - SHFLAGS='-shared -Wl,--out-implib=lib$(NAME).dll.a -Wl,--enable-auto-image-base' + SHFLAGS='-shared -Wl,--enable-auto-image-base' ;; linux) LDLATEFLAGS="-Wl,--as-needed $LDLATEFLAGS" |