]> git.sesse.net Git - ffmpeg/commitdiff
configure: add nologo switch to invocation of lib.exe
authorHendrik Leppkes <h.leppkes@gmail.com>
Fri, 3 Feb 2017 08:36:55 +0000 (09:36 +0100)
committerHendrik Leppkes <h.leppkes@gmail.com>
Sat, 4 Feb 2017 10:21:33 +0000 (11:21 +0100)
This suppresses the startup banner, which is consistent with all other calls
to the Windows SDK binaries.

configure

index b22c8b3389cc33e9beade93ebb244210a06daa09..d3d652f0f4d77738c2c1355abf4c9f7cc4531631 100755 (executable)
--- a/configure
+++ b/configure
@@ -4804,7 +4804,7 @@ case $target_os in
         SLIBNAME_WITH_MAJOR='$(SLIBPREF)$(FULLNAME)-$(LIBMAJOR)$(SLIBSUF)'
         dlltool="${cross_prefix}dlltool"
         if check_cmd lib.exe -list; then
-            SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); lib.exe /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
+            SLIB_EXTRA_CMD=-'sed -e "s/ @[^ ]*//" $$(@:$(SLIBSUF)=.orig.def) > $$(@:$(SLIBSUF)=.def); lib.exe /nologo /machine:$(LIBTARGET) /def:$$(@:$(SLIBSUF)=.def) /out:$(SUBDIR)$(SLIBNAME:$(SLIBSUF)=.lib)'
             if enabled x86_64; then
                 LIBTARGET=x64
             fi