summaryrefslogtreecommitdiff
path: root/src/Make_mvc.mak
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.4524: MS-Windows: cannot build with some sodium librariesv8.2.4524K.Takata2022-03-071-1/+2
| | | | | | Problem: MS-Windows: cannot build with some sodium libraries. Solution: Make the DLL name configuragle. Add build instructions. (Ken Takata, closes #9905)
* patch 8.2.4491: MS-Windows makefile dependencies are outdatedv8.2.4491K.Takata2022-03-021-7/+7
| | | | | Problem: MS-Windows makefile dependencies are outdated. Solution: Update dependencies. (Ken Takata, closes #9876)
* patch 8.2.4271: MS-Windows: cannot build with Ruby 3.1.0v8.2.4271K.Takata2022-01-311-0/+4
| | | | | | Problem: MS-Windows: cannot build with Ruby 3.1.0. Solution: Adjust the DLL name and include directory. (Ken Takata, closes #9666)
* patch 8.2.4270: generating nv_cmdidxs.h requires building Vim twicev8.2.4270ichizok2022-01-311-8/+8
| | | | | | Problem: Generating nv_cmdidxs.h requires building Vim twice. Solution: Move the table into a separate file and use a separate executable to extract the command characters. (Ozaki Kiichi, closes #9669)
* patch 8.2.4252: generating the normal command table at runtime is inefficientv8.2.4252Yegappan Lakshmanan2022-01-291-1/+11
| | | | | | Problem: Generating the normal command table at runtime is inefficient. Solution: Generate the table with a Vim script and put it in a header file. (Yegappan Lakshmanan, closes #9648)
* patch 8.2.4244: MS-Windows: warning from MSVC on debug buildv8.2.4244K.Takata2022-01-281-20/+25
| | | | | | Problem: MS-Windows: warning from MSVC on debug build. Solution: Adjust "/opt"o options. Remove unused variables. Make variables uppercase for consistency. (Ken Takata, closes #9647)
* patch 8.2.4222: MS-Windows: clumsy way to suppress progress on CIv8.2.4222K.Takata2022-01-261-1/+7
| | | | | Problem: MS-Windows: clumsy way to suppress progress on CI. Solution: Check for "$CI" in the Makefile itself. (Ken Takata, closes #9631)
* patch 8.2.4220: MS-Windows: some old compiler support remainsv8.2.4220K.Takata2022-01-261-84/+40
| | | | | Problem: MS-Windows: some old compiler support remains. Solution: Remove obsolete compiler support. (Ken Takata, closes #9627)
* patch 8.2.4213: too much code for supporting old MSVC versionsv8.2.4213K.Takata2022-01-251-12/+4
| | | | | Problem: Too much code for supporting old MSVC versions. Solution: Remove MSVC 2003 support. (Ken Takata, closes #9623)
* patch 8.2.4153: MS-Windows: Global IME is no longer supportedv8.2.4153K.Takata2022-01-201-16/+0
| | | | | Problem: MS-Windows: Global IME is no longer supported. Solution: Remove the Global IME implementation. (Ken Takata, closes #9562)
* patch 8.2.4144: cannot load libsodium dynamicallyv8.2.4144K.Takata2022-01-191-4/+12
| | | | | Problem: Cannot load libsodium dynamically. Solution: Support dynamic loading on MS-Windows. (Ken Takata, closes #9554)
* patch 8.2.4130: MS-Windows: MSVC build may have libraries duplicatedv8.2.4130K.Takata2022-01-181-6/+9
| | | | | Problem: MS-Windows: MSVC build may have libraries duplicated. Solution: Improve the MSVC Makefile. (Ken Takata, closes #9547)
* patch 8.2.4081: CodeQL reports problem in if_cscope causing it to failv8.2.4081ichizok2022-01-131-1/+1
| | | | | | Problem: CodeQL reports problem in if_cscope causing it to fail. Solution: Use execvp() instead of execl(). Merge the header file into the source file. (Ozaki Kiichi, closes #9519)
* patch 8.2.3860: Vim9: codecov struggles with the file sizev8.2.3860Bram Moolenaar2021-12-201-0/+12
| | | | | Problem: Vim9: codecov struggles with the file size. Solution: Split vim9compile.c into four files.
* patch 8.2.3824: no ASAN support for MSVCv8.2.3824Yegappan Lakshmanan2021-12-161-0/+8
| | | | | | Problem: No ASAN support for MSVC. Solution: Add ASAN support and fix a coupld of uncovered problems. (Yegappan Lakshmanan, closes #9357)
* patch 8.2.3620: memory leak reported in libtlibv8.2.3620Bram Moolenaar2021-11-191-1/+1
| | | | | | Problem: Memory leak reported in libtlib. Solution: Call del_curterm() when cleaning up memory. Rename term.h to termdefs.h to avoid a name clash.
* patch 8.2.3301: memory allocation functions don't have their own placev8.2.3301Yegappan Lakshmanan2021-08-061-0/+4
| | | | | | Problem: Memory allocation functions don't have their own place. Solution: Move memory allocation functions to alloc.c. (Yegappan Lakshmanan, closes #8717)
* patch 8.2.3250: MS-Windows: cannot build with libsodiumv8.2.3250Christian Brabandt2021-07-301-1/+1
| | | | | | Problem: MS-Windows: cannot build with libsodium. Solution: Change FEAT_SODIUM into HAVE_SODIUM. (Christian Brabandt, closes #8668, closes #8663)
* patch 8.2.3139: functions for string manipulation are spread outv8.2.3139Yegappan Lakshmanan2021-07-101-0/+4
| | | | | | Problem: Functions for string manipulation are spread out. Solution: Move string related functions to a new source file. (Yegappan Lakshmanan, closes #8470)
* patch 8.2.3032: build problems with MSVC, other crypt issues with libsodiumv8.2.3032Christian Brabandt2021-06-211-5/+9
| | | | | | | Problem: Build problems with MSVC, other crypt issues with libsodium. Solution: Adjust MSVC makefile. Disable swap file only when 'key' is set. Adjust error message used when key is wrong. Fix Coverity issues. (Christian Brabandt, closes #8420, closes #8411)
* patch 8.2.3022: available encryption methods are not strong enoughv8.2.3022Christian Brabandt2021-06-201-3/+26
| | | | | | Problem: Available encryption methods are not strong enough. Solution: Add initial support for xchaha20. (Christian Brabandt, closes #8394)
* patch 8.2.2928: the evalfunc.c file is too bigv8.2.2928Yegappan Lakshmanan2021-06-021-0/+4
| | | | | | Problem: The evalfunc.c file is too big. Solution: Move float related functionality to a separate file. (Yegappan Lakshmanan, closes #8287)
* patch 8.2.2883: MS-Windows manifest file name is misleadingv8.2.2883matveyt2021-05-241-3/+3
| | | | | Problem: MS-Windows manifest file name is misleading. Solution: Rename the file. (closes #8241)
* patch 8.2.2793: MS-Windows: string literals are writable with MSVCv8.2.2793Bram Moolenaar2021-04-211-1/+1
| | | | | | Problem: MS-Windows: string literals are writable with MSVC. Solution: Add the /GF compiler flag. Make mch_write() safer. (Ken Takata, closes #8133)
* patch 8.2.2535: MS-Windows: cannot run all vim9 testsv8.2.2535Bram Moolenaar2021-02-201-0/+10
| | | | | Problem: MS-Windows: cannot run all vim9 tests. Solution: Make test_vim9 target work.
* patch 8.2.1987: MS-Windows: Win32.mak is no longer neededv8.2.1987Bram Moolenaar2020-11-141-19/+1
| | | | | Problem: MS-Windows: Win32.mak is no longer needed. Solution: Do not include Win32.mak. (Jason McHugh, closes #7290)
* patch 8.2.1597: the channel source file is too bigv8.2.1597Bram Moolenaar2020-09-051-5/+7
| | | | | Problem: The channel source file is too big. Solution: Move job related code to a new source file.
* patch 8.2.1444: error messages are spread out and names can be confusingv8.2.1444Bram Moolenaar2020-08-131-1/+1
| | | | | | Problem: Error messages are spread out and names can be confusing. Solution: Start moving error messages to a separate file and use clear names.
* patch 8.2.1439: tiny and small builds have no test coveragev8.2.1439Bram Moolenaar2020-08-131-4/+14
| | | | | | Problem: Tiny and small builds have no test coverage. Solution: Restore tests that do not depend on the +eval feature. (Ken Takata, closes #6696)
* patch 8.2.1420: test 49 is old stylev8.2.1420Bram Moolenaar2020-08-111-10/+2
| | | | | | Problem: Test 49 is old style. Solution: Convert remaining parts to new style. Remove obsolete items. (Yegappan Lakshmanan, closes #6683)
* patch 8.2.1405: Vim9: vim9compile.c is getting too bigv8.2.1405Bram Moolenaar2020-08-091-0/+4
| | | | | Problem: Vim9: vim9compile.c is getting too big. Solution: Split off type code to vim9type.c.
* patch 8.2.1381: MS-Windows: crash with Python 3.5 when stdin is redirectedv8.2.1381Bram Moolenaar2020-08-061-1/+5
| | | | | Problem: MS-Windows: crash with Python 3.5 when stdin is redirected. Solution: Reconnect stdin. (Yasuhiro Matsumoto, Ken Takata, closes #6641)
* patch 8.2.1269: language and locale code spread outv8.2.1269Bram Moolenaar2020-07-221-0/+4
| | | | | | Problem: Language and locale code spread out. Solution: Move relevant code to src/locale.c. (Yegappan Lakshmanan, closes #6509)
* patch 8.2.1262: src/ex_cmds.c file is too bigv8.2.1262Bram Moolenaar2020-07-211-0/+4
| | | | | | Problem: src/ex_cmds.c file is too big. Solution: Move help related code to src/help.c. (Yegappan Lakshmanan, closes #6506)
* patch 8.2.1078: highlight and match functionality together in one filev8.2.1078Bram Moolenaar2020-06-281-0/+4
| | | | | | Problem: Highlight and match functionality together in one file. Solution: Move match functionality to a separate file. (Yegappan Lakshmanan, closes #6352)
* patch 8.2.0914: MS-Windows: cannot specify a "modified by" textv8.2.0914Bram Moolenaar2020-06-061-4/+17
| | | | | Problem: MS-Windows: cannot specify a "modified by" text. Solution: Add MODIFIED_BY in the MSVC build file. (Chen Lei, closes #1275)
* patch 8.2.0872: XIM code is mixed with multi-byte codev8.2.0872Bram Moolenaar2020-06-011-0/+4
| | | | | | Problem: XIM code is mixed with multi-byte code. Solution: Move the XIM code to a separate file. (Yegappan Lakshmanan, closes #6177)
* patch 8.2.0847: typval related code is spread outv8.2.0847Bram Moolenaar2020-05-301-0/+4
| | | | | Problem: Typval related code is spread out. Solution: Move code to new typval.c file. (Yegappan Lakshmanan, closes #6093)
* patch 8.2.0783: libvterm code lags behind the upstream versionv8.2.0783Bram Moolenaar2020-05-171-0/+1
| | | | | Problem: Libvterm code lags behind the upstream version. Solution: Include revisions 728 - 729.
* patch 8.2.0756: MS-Windows: still a compiler warningv8.2.0756Bram Moolenaar2020-05-151-3/+4
| | | | | | Problem: MS-Windows: still a compiler warning. Solution: Move flag to another place in the Makefile. (Ken Takata, closes #6083)
* patch 8.2.0674: some source files are too bigv8.2.0674Bram Moolenaar2020-05-011-0/+4
| | | | | | Problem: Some source files are too big. Solution: Move text formatting functions to a new file. (Yegappan Lakshmanan, closes #6021)
* patch 8.2.0660: the search.c file is a bit bigv8.2.0660Bram Moolenaar2020-04-291-0/+4
| | | | | | Problem: The search.c file is a bit big. Solution: Split off the text object code to a separate file. (Yegappan Lakshmanan, closes #6007)
* patch 8.2.0594: MS-Windows: cannot build with WINVER set to 0x0501v8.2.0594Bram Moolenaar2020-04-181-5/+7
| | | | | Problem: MS-Windows: cannot build with WINVER set to 0x0501. Solution: Only use inet_ntop() when available. (Ozaki Kiichi, closes #5946)
* patch 8.2.0591: MS-Windows: should always support IPv6v8.2.0591Bram Moolenaar2020-04-171-1/+1
| | | | | Problem: MS-Windows: should always support IPv6 Solution: Add build flag. (Ozaki Kiichi, closes #5944)
* patch 8.2.0557: no IPv6 support for channelsv8.2.0557Bram Moolenaar2020-04-121-1/+1
| | | | | Problem: No IPv6 support for channels. Solution: Add IPv6 support. (Ozaki Kiichi, closes #5893)
* patch 8.2.0516: client-server code is spread outv8.2.0516Bram Moolenaar2020-04-051-0/+4
| | | | | | Problem: Client-server code is spread out. Solution: Move client-server code to a new file. (Yegappan Lakshmanan, closes #5885)
* patch 8.2.0443: clipboard code is spread outv8.2.0443Bram Moolenaar2020-03-241-0/+4
| | | | | | Problem: Clipboard code is spread out. Solution: Move clipboard code to its own file. (Yegappan Lakshmanan, closes #5827)
* patch 8.2.0405: MSVC: build fails with some combination of featuresv8.2.0405Bram Moolenaar2020-03-191-4/+5
| | | | | Problem: MSVC: build fails with some combination of features. Solution: Enable CHANNEL if TERMINAL is enabled. (Mike Williams)
* patch 8.2.0317: MSVC: _CRT_SECURE_NO_DEPRECATE not defined on DEBUG buildv8.2.0317Bram Moolenaar2020-02-251-3/+6
| | | | | Problem: MSVC: _CRT_SECURE_NO_DEPRECATE not defined on DEBUG build. Solution: Move where CFLAGS is updated. (Ken Takata, closes #5692)
* patch 8.2.0273: MS-Windows uninstall may delete wrong batch filev8.2.0273Bram Moolenaar2020-02-171-1/+1
| | | | | | Problem: MS-Windows uninstall may delete wrong batch file. Solution: Add specific marker in the generated batch file. (Ken Takata, closes #5654)