[vlc-commits] Win32: timestamp the signature
Jean-Baptiste Kempf
git at videolan.org
Sun Mar 1 23:56:04 CET 2015
vlc/vlc-2.2 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Mar 1 23:54:47 2015 +0100| [3a58c9a9021ffe85f7d601257eb85d605cb4d3a7] | committer: Jean-Baptiste Kempf
Win32: timestamp the signature
Close #14053
(cherry picked from commit f63dce330a12f1f25f233025375faf912234ebe6)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=3a58c9a9021ffe85f7d601257eb85d605cb4d3a7
---
extras/package/win32/package.mak | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/extras/package/win32/package.mak b/extras/package/win32/package.mak
index b733a49..db28134 100644
--- a/extras/package/win32/package.mak
+++ b/extras/package/win32/package.mak
@@ -107,7 +107,7 @@ package-win-strip: package-win-common package-win-npapi
if test -n "$(SIGNATURE)"; then \
cd $(win32_destdir); find . -type f \( -name '*$(LIBEXT)' -or -name '*$(EXEEXT)' \) | while read i; \
do if test -n "$$i" ; then \
- osslsigncode sign -certs $(SIGNATURE)/cert.cer -key $(SIGNATURE)/videolan.key -n "VLC media player" -i http://www.videolan.org/ -in "$$i" -out "$$i.sign"; \
+ osslsigncode sign -certs $(SIGNATURE)/cert.cer -key $(SIGNATURE)/videolan.key -n "VLC media player" -i http://www.videolan.org/ -t http://timestamp.verisign.com/scripts/timstamp.dll -in "$$i" -out "$$i.sign"; \
mv "$$i.sign" "$$i" ; \
fi ; \
done \
@@ -180,7 +180,7 @@ package-win32-exe: package-win-strip $(win32_destdir)/NSIS/UAC.dll $(win32_destd
eval "$$MAKENSIS $(win32_destdir)/spad.nsi"; \
eval "$$MAKENSIS $(win32_destdir)/vlc.win32.nsi"
if test -n "$(SIGNATURE)"; then \
- osslsigncode sign -certs $(SIGNATURE)/cert.cer -key $(SIGNATURE)/videolan.key -n "VLC media player" -i http://www.videolan.org/ -in "$(WINVERSION).exe" -out "$(WINVERSION).exe.sign"; \
+ osslsigncode sign -certs $(SIGNATURE)/cert.cer -key $(SIGNATURE)/videolan.key -n "VLC media player" -i http://www.videolan.org/ -t http://timestamp.verisign.com/scripts/timstamp.dll -in "$(WINVERSION).exe" -out "$(WINVERSION).exe.sign"; \
mv "$(WINVERSION).exe.sign" "$(WINVERSION).exe" ; \
fi
More information about the vlc-commits
mailing list