[vlc-commits] win32 manifest files: don't force x86 arch

Rafaël Carré git at videolan.org
Wed Sep 28 23:34:48 CEST 2011


vlc | branch: master | Rafaël Carré <funman at videolan.org> | Wed Sep 28 17:31:55 2011 -0400| [2d9ad63e2fcaf22706ac4e1547e4a56846264a3a] | committer: Rafaël Carré

win32 manifest files: don't force x86 arch

we make binaries for other arch
having the field set to x86 doesn't prevent binary to run
it doesn't prevent loading 64bits DLLs either, except when it does
(qt4 plugin for example)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2d9ad63e2fcaf22706ac4e1547e4a56846264a3a
---

 extras/package/win32/libvlc.dll.manifest |    4 ++--
 extras/package/win32/vlc.exe.manifest    |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/extras/package/win32/libvlc.dll.manifest b/extras/package/win32/libvlc.dll.manifest
index e510bb6..35e9724 100755
--- a/extras/package/win32/libvlc.dll.manifest
+++ b/extras/package/win32/libvlc.dll.manifest
@@ -2,9 +2,9 @@
 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
 	<assemblyIdentity
 		version="1.0.0.0"
-		processorArchitecture="x86"
+		processorArchitecture="*"
 		name="libvlc.dll"
 		type="win32"
 	/>
 	<description>LibVLC</description>
-</assembly>
\ No newline at end of file
+</assembly>
diff --git a/extras/package/win32/vlc.exe.manifest b/extras/package/win32/vlc.exe.manifest
index 3291111..60122a4 100644
--- a/extras/package/win32/vlc.exe.manifest
+++ b/extras/package/win32/vlc.exe.manifest
@@ -2,7 +2,7 @@
 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
 	<assemblyIdentity
 		version="1.0.0.0"
-		processorArchitecture="X86"
+		processorArchitecture="*"
 		name="VideoLAN.VLC"
 		type="win32"
 	/>
@@ -20,7 +20,7 @@
 				type="win32"
 				name="Microsoft.Windows.Common-Controls"
 				version="6.0.0.0"
-				processorArchitecture="X86"
+				processorArchitecture="*"
 				publicKeyToken="6595b64144ccf1df"
 				language="*"
 			/>



More information about the vlc-commits mailing list