Mercurial > vim
annotate src/gvim.exe.mnf @ 21389:6f5129b51c49 v8.2.1245
patch 8.2.1245: build failure in tiny version
Commit: https://github.com/vim/vim/commit/f398238a37522fed9a2e7915741d1ab14ccc81a0
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jul 19 16:32:09 2020 +0200
patch 8.2.1245: build failure in tiny version
Problem: Build failure in tiny version.
Solution: Add #ifdef.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 19 Jul 2020 16:45:04 +0200 |
parents | a4e56c569f11 |
children |
rev | line source |
---|---|
7 | 1 <?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
1908 | 2 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" > |
7 | 3 <assemblyIdentity |
1072 | 4 processorArchitecture="*" |
18879 | 5 version="8.2.0.0" |
7 | 6 type="win32" |
7 name="Vim" | |
8 /> | |
9 <description>Vi Improved - A Text Editor</description> | |
10 <dependency> | |
11 <dependentAssembly> | |
12 <assemblyIdentity | |
13 type="win32" | |
14 name="Microsoft.Windows.Common-Controls" | |
15 version="6.0.0.0" | |
16 publicKeyToken="6595b64144ccf1df" | |
17 language="*" | |
1072 | 18 processorArchitecture="*" |
7 | 19 /> |
20 </dependentAssembly> | |
21 </dependency> | |
1702 | 22 <!-- Vista security requirements --> |
23 <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3"> | |
24 <security> | |
25 <requestedPrivileges> | |
26 <requestedExecutionLevel | |
27 level="asInvoker" | |
28 uiAccess="false"/> | |
29 </requestedPrivileges> | |
30 </security> | |
31 </trustInfo> | |
1908 | 32 <!-- Vista High DPI aware --> |
33 <asmv3:application> | |
34 <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings"> | |
35 <dpiAware>true</dpiAware> | |
36 </asmv3:windowsSettings> | |
37 </asmv3:application> | |
18985
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
38 <compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1"> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
39 <application> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
40 <!--The ID below indicates application support for Windows Vista --> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
41 <supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}"/> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
42 <!--The ID below indicates application support for Windows 7 --> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
43 <supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}"/> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
44 <!--The ID below indicates application support for Windows 8 --> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
45 <supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}"/> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
46 <!--The ID below indicates application support for Windows 8.1 --> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
47 <supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}"/> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
48 <!--The ID below indicates application support for Windows 10 --> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
49 <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
50 </application> |
a4e56c569f11
patch 8.2.0053: windowsversion() does not always return the right value
Bram Moolenaar <Bram@vim.org>
parents:
18879
diff
changeset
|
51 </compatibility> |
7 | 52 </assembly> |