[vlc-devel] commit: Add manifests to browser plugins (Geoffroy Couprie )
git version control
git at videolan.org
Mon Nov 24 22:37:51 CET 2008
vlc | branch: master | Geoffroy Couprie <geo.couprie at gmail.com> | Mon Nov 24 22:33:11 2008 +0100| [86f0fc91f623d8989fab8bfaffd220183b7ef731] | committer: Geoffroy Couprie
Add manifests to browser plugins
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=86f0fc91f623d8989fab8bfaffd220183b7ef731
---
Makefile.am | 2 ++
projects/activex/axvlc.dll.manifest | 22 ++++++++++++++++++++++
projects/mozilla/npvlc.dll.manifest | 22 ++++++++++++++++++++++
3 files changed, 46 insertions(+), 0 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 990a879..77a0d35 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -725,6 +725,7 @@ package-win-common:
if BUILD_MOZILLA
mkdir -p "$(win32_destdir)/mozilla"
cp $(top_builddir)/projects/mozilla/.libs/npvlc$(LIBEXT) $(win32_destdir)/mozilla/
+ cp $(top_builddir)/projects/mozilla/npvlc.dll.manifest $(win32_destdir)/mozilla/
endif
# ActiveX plugin
@@ -735,6 +736,7 @@ if BUILD_ACTIVEX
unix2dos $(win32_destdir)/activex/*
cp $(top_builddir)/projects/activex/.libs/axvlc$(LIBEXT) $(win32_destdir)/activex/
+ cp $(top_builddir)/projects/activex/axvlc.dll.manifest $(win32_destdir)/activex/
endif
# Rebase all those DLLs to speed up loading (need cygwin rebase)
diff --git a/projects/activex/axvlc.dll.manifest b/projects/activex/axvlc.dll.manifest
new file mode 100755
index 0000000..9f7acaf
--- /dev/null
+++ b/projects/activex/axvlc.dll.manifest
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+ <assemblyIdentity
+ version="1.0.0.0"
+ processorArchitecture="x86"
+ name="axvlc.dll"
+ type="win32"
+ />
+ <description>VLC ActiveX plugin</description>
+ <dependency>
+ <dependentAssembly>
+ <assemblyIdentity
+ type="win32"
+ name="Microsoft-Windows-MSVCRT20"
+ version="6.0.6000.16386"
+ processorArchitecture="x86"
+ publicKeyToken="31bf3856ad364e35"
+ language="*"
+ />
+ </dependentAssembly>
+ </dependency>
+</assembly>
diff --git a/projects/mozilla/npvlc.dll.manifest b/projects/mozilla/npvlc.dll.manifest
new file mode 100755
index 0000000..a0935f0
--- /dev/null
+++ b/projects/mozilla/npvlc.dll.manifest
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+ <assemblyIdentity
+ version="1.0.0.0"
+ processorArchitecture="x86"
+ name="npvlc.dll"
+ type="win32"
+ />
+ <description>VLC Mozilla plugin</description>
+ <dependency>
+ <dependentAssembly>
+ <assemblyIdentity
+ type="win32"
+ name="Microsoft-Windows-MSVCRT20"
+ version="6.0.6000.16386"
+ processorArchitecture="x86"
+ publicKeyToken="31bf3856ad364e35"
+ language="*"
+ />
+ </dependentAssembly>
+ </dependency>
+</assembly>
\ No newline at end of file
More information about the vlc-devel
mailing list