Commit 514e6957 authored by Geoffroy Couprie's avatar Geoffroy Couprie Committed by Jean-Baptiste Kempf

Add manifests to browser plugins

(cherry picked from commit 86f0fc91)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent a643d7e5
......@@ -719,6 +719,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
......@@ -729,6 +730,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)
......
<?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>
<?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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment