summaryrefslogtreecommitdiff
path: root/win/create_manifest.js
diff options
context:
space:
mode:
authorunknown <iggy@amd64.(none)>2007-07-25 13:18:12 -0400
committerunknown <iggy@amd64.(none)>2007-07-25 13:18:12 -0400
commita34879ebd2c6c02f77a2df080c4696f0039ebffa (patch)
tree623fcc797d96706b72d917a9c10fd8f6c7fc0c05 /win/create_manifest.js
parent1370b325c65337bbe79ad0e7739e9e663444c481 (diff)
downloadmariadb-git-a34879ebd2c6c02f77a2df080c4696f0039ebffa.tar.gz
Bug#24732 Executables do not include Vista manifests
- Sign executables with MySQL AB security certificate. BitKeeper/etc/ignore: Bug#24732 Executables do not include Vista manifests - Ignore security catalog descriptions CMakeLists.txt: Bug#24732 Executables do not include Vista manifests - Search for additional tools necessary to embed, catalog and sign targets. win/README: Bug#24732 Executables do not include Vista manifests - Add internal only note to EMBED_MANIFESTS option. win/create_manifest.js: Bug#24732 Executables do not include Vista manifests - Added publicKeyToken attribute to manifest. win/mysql_manifest.cmake: Bug#24732 Executables do not include Vista manifests - Add additional commands to create security catalog and sign targets. - Add parameters to add appropiate hash attribute to manifest and create security content description of the security catalog.
Diffstat (limited to 'win/create_manifest.js')
-rwxr-xr-xwin/create_manifest.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/create_manifest.js b/win/create_manifest.js
index 8569bd508ff..dec8f6e62e2 100755
--- a/win/create_manifest.js
+++ b/win/create_manifest.js
@@ -56,7 +56,7 @@ try
manifest_xml+= "\t<assemblyIdentity name=\'" + app_name + "\'";
manifest_xml+= " version=\'" + app_version + "\'";
manifest_xml+= " processorArchitecture=\'" + app_arch + "\'";
- // TOADD - Add publicKeyToken attribute once we have Authenticode key.
+ manifest_xml+= " publicKeyToken=\'02ad33b422233ae3\'";
manifest_xml+= " type=\'win32\' />\r\n";
// Identify the application security requirements.
manifest_xml+= "\t<trustInfo xmlns=\'urn:schemas-microsoft-com:asm.v2\'>\r\n";