]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
winnt-utf8.manifest: Use XML example from Microsoft
authorJonathan Yong <10walls@gmail.com>
Tue, 13 Jan 2026 16:51:50 +0000 (16:51 +0000)
committerJonathan Yong <10walls@gmail.com>
Tue, 13 Jan 2026 17:41:09 +0000 (17:41 +0000)
Based on example from:
https://learn.microsoft.com/en-us/windows/win32/sbscs/application-manifests#activecodepage

PR driver/108865

gcc:
* config/i386/winnt-utf8.manifest: correct XML tags

Signed-off-by: Jonathan Yong <10walls@gmail.com>
gcc/config/i386/winnt-utf8.manifest

index dab929e1515a2bdf20e2e89afe9cc3985ca95da2..aed4c322eec61774094f0f4833d2888f97e69beb 100644 (file)
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
-<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
-  <application>
-    <windowsSettings>
-      <activeCodePage xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">UTF-8</activeCodePage>
-    </windowsSettings>
-  </application>
+<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
+  <asmv3:application>
+    <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2019/WindowsSettings">
+      <activeCodePage>UTF-8</activeCodePage>
+    </asmv3:windowsSettings>
+  </asmv3:application>
 </assembly>