Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
7c653e6a
Commit
7c653e6a
authored
Nov 03, 2014
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32: sign dlls and exe
parent
ac7ec2d2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
extras/package/win32/package.mak
extras/package/win32/package.mak
+12
-0
No files found.
extras/package/win32/package.mak
View file @
7c653e6a
...
...
@@ -106,6 +106,14 @@ package-win-strip: package-win-common
$(OBJCOPY)
--add-gnu-debuglink
=
"
$(win32_debugdir)
/
`
basename
$$
i.dbg
`
"
"
$$
i"
;
\
fi
;
\
done
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"
;
\
mv
"
$$
i.sign"
"
$$
i"
;
\
fi
;
\
done
\
fi
package-win32-webplugin-common
:
package-win-strip
...
...
@@ -173,6 +181,10 @@ package-win32-exe: package-win-strip $(win32_destdir)/NSIS/UAC.dll $(win32_destd
fi
;
\
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";
\
mv "$(WINVERSION).exe.sign" "$(WINVERSION).exe" ;
\
fi
package-win32-zip
:
package-win-strip
rm
-f
--
$(WINVERSION)
.zip
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment