summaryrefslogtreecommitdiffstats
path: root/src/Make_mvc.mak
AgeCommit message (Collapse)Author
2022-09-22patch 9.0.0546: supporting Ruby 1.8 makes code complicatedv9.0.0546K.Takata
Problem: Supporting Ruby 1.8 makes code complicated. Solution: Drop Ruby 1.8 support, it is ancient. (Ken Takata, closes #11195)
2022-09-22patch 9.0.0542: MSVC build still has support for 2012 editionv9.0.0542Bram Moolenaar
Problem: MSVC build still has support for 2012 edition. Solution: Drop MSVC 2012 support. (Ken Takata, closes #11191)
2022-09-21patch 9.0.0526: MS-Windows: still some support for XP and old compilersv9.0.0526K.Takata
Problem: MS-Windows: still some support for XP and old compilers. Solution: Remove XP support and mention of old compilers. (Ken Takata, closes #11183)
2022-09-18patch 9.0.0496: no good reason to keep supporting Windows-XPv9.0.0496K.Takata
Problem: No good reason to keep supporting Windows-XP. Solution: Drop Windows-XP support. (Ken Takata, closes #11089)
2022-09-09patch 9.0.0421: MS-Windows makefiles are inconsistently namedv9.0.0421K.Takata
Problem: MS-Windows makefiles are inconsistently named. Solution: Use consistent names. (Ken Takata, closes #11088)
2022-06-13patch 8.2.5084: when the GUI shows a dialog tests get stuckv8.2.5084Bram Moolenaar
Problem: When the GUI shows a dialog tests get stuck. Solution: Add the --gui-dialog-file argument.
2022-03-07patch 8.2.4524: MS-Windows: cannot build with some sodium librariesv8.2.4524K.Takata
Problem: MS-Windows: cannot build with some sodium libraries. Solution: Make the DLL name configuragle. Add build instructions. (Ken Takata, closes #9905)
2022-03-02patch 8.2.4491: MS-Windows makefile dependencies are outdatedv8.2.4491K.Takata
Problem: MS-Windows makefile dependencies are outdated. Solution: Update dependencies. (Ken Takata, closes #9876)
2022-01-31patch 8.2.4271: MS-Windows: cannot build with Ruby 3.1.0v8.2.4271K.Takata
Problem: MS-Windows: cannot build with Ruby 3.1.0. Solution: Adjust the DLL name and include directory. (Ken Takata, closes #9666)
2022-01-31patch 8.2.4270: generating nv_cmdidxs.h requires building Vim twicev8.2.4270ichizok
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)
2022-01-29patch 8.2.4252: generating the normal command table at runtime is inefficientv8.2.4252Yegappan Lakshmanan
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)
2022-01-28patch 8.2.4244: MS-Windows: warning from MSVC on debug buildv8.2.4244K.Takata
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)
2022-01-26patch 8.2.4222: MS-Windows: clumsy way to suppress progress on CIv8.2.4222K.Takata
Problem: MS-Windows: clumsy way to suppress progress on CI. Solution: Check for "$CI" in the Makefile itself. (Ken Takata, closes #9631)
2022-01-26patch 8.2.4220: MS-Windows: some old compiler support remainsv8.2.4220K.Takata
Problem: MS-Windows: some old compiler support remains. Solution: Remove obsolete compiler support. (Ken Takata, closes #9627)
2022-01-25patch 8.2.4213: too much code for supporting old MSVC versionsv8.2.4213K.Takata
Problem: Too much code for supporting old MSVC versions. Solution: Remove MSVC 2003 support. (Ken Takata, closes #9623)
2022-01-20patch 8.2.4153: MS-Windows: Global IME is no longer supportedv8.2.4153K.Takata
Problem: MS-Windows: Global IME is no longer supported. Solution: Remove the Global IME implementation. (Ken Takata, closes #9562)
2022-01-19patch 8.2.4144: cannot load libsodium dynamicallyv8.2.4144K.Takata
Problem: Cannot load libsodium dynamically. Solution: Support dynamic loading on MS-Windows. (Ken Takata, closes #9554)
2022-01-18patch 8.2.4130: MS-Windows: MSVC build may have libraries duplicatedv8.2.4130K.Takata
Problem: MS-Windows: MSVC build may have libraries duplicated. Solution: Improve the MSVC Makefile. (Ken Takata, closes #9547)
2022-01-13patch 8.2.4081: CodeQL reports problem in if_cscope causing it to failv8.2.4081ichizok
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)
2021-12-20patch 8.2.3860: Vim9: codecov struggles with the file sizev8.2.3860Bram Moolenaar
Problem: Vim9: codecov struggles with the file size. Solution: Split vim9compile.c into four files.
2021-12-16patch 8.2.3824: no ASAN support for MSVCv8.2.3824Yegappan Lakshmanan
Problem: No ASAN support for MSVC. Solution: Add ASAN support and fix a coupld of uncovered problems. (Yegappan Lakshmanan, closes #9357)
2021-11-19patch 8.2.3620: memory leak reported in libtlibv8.2.3620Bram Moolenaar
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.
2021-08-06patch 8.2.3301: memory allocation functions don't have their own placev8.2.3301Yegappan Lakshmanan
Problem: Memory allocation functions don't have their own place. Solution: Move memory allocation functions to alloc.c. (Yegappan Lakshmanan, closes #8717)
2021-07-30patch 8.2.3250: MS-Windows: cannot build with libsodiumv8.2.3250Christian Brabandt
Problem: MS-Windows: cannot build with libsodium. Solution: Change FEAT_SODIUM into HAVE_SODIUM. (Christian Brabandt, closes #8668, closes #8663)
2021-07-10patch 8.2.3139: functions for string manipulation are spread outv8.2.3139Yegappan Lakshmanan
Problem: Functions for string manipulation are spread out. Solution: Move string related functions to a new source file. (Yegappan Lakshmanan, closes #8470)
2021-06-21patch 8.2.3032: build problems with MSVC, other crypt issues with libsodiumv8.2.3032Christian Brabandt
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)
2021-06-20patch 8.2.3022: available encryption methods are not strong enoughv8.2.3022Christian Brabandt
Problem: Available encryption methods are not strong enough. Solution: Add initial support for xchaha20. (Christian Brabandt, closes #8394)
2021-06-02patch 8.2.2928: the evalfunc.c file is too bigv8.2.2928Yegappan Lakshmanan
Problem: The evalfunc.c file is too big. Solution: Move float related functionality to a separate file. (Yegappan Lakshmanan, closes #8287)
2021-05-24patch 8.2.2883: MS-Windows manifest file name is misleadingv8.2.2883matveyt
Problem: MS-Windows manifest file name is misleading. Solution: Rename the file. (closes #8241)
2021-04-21patch 8.2.2793: MS-Windows: string literals are writable with MSVCv8.2.2793Bram Moolenaar
Problem: MS-Windows: string literals are writable with MSVC. Solution: Add the /GF compiler flag. Make mch_write() safer. (Ken Takata, closes #8133)
2021-02-20patch 8.2.2535: MS-Windows: cannot run all vim9 testsv8.2.2535Bram Moolenaar
Problem: MS-Windows: cannot run all vim9 tests. Solution: Make test_vim9 target work.
2020-11-14patch 8.2.1987: MS-Windows: Win32.mak is no longer neededv8.2.1987Bram Moolenaar
Problem: MS-Windows: Win32.mak is no longer needed. Solution: Do not include Win32.mak. (Jason McHugh, closes #7290)
2020-09-05patch 8.2.1597: the channel source file is too bigv8.2.1597Bram Moolenaar
Problem: The channel source file is too big. Solution: Move job related code to a new source file.
2020-08-13patch 8.2.1444: error messages are spread out and names can be confusingv8.2.1444Bram Moolenaar
Problem: Error messages are spread out and names can be confusing. Solution: Start moving error messages to a separate file and use clear names.
2020-08-13patch 8.2.1439: tiny and small builds have no test coveragev8.2.1439Bram Moolenaar
Problem: Tiny and small builds have no test coverage. Solution: Restore tests that do not depend on the +eval feature. (Ken Takata, closes #6696)
2020-08-11patch 8.2.1420: test 49 is old stylev8.2.1420Bram Moolenaar
Problem: Test 49 is old style. Solution: Convert remaining parts to new style. Remove obsolete items. (Yegappan Lakshmanan, closes #6683)
2020-08-09patch 8.2.1405: Vim9: vim9compile.c is getting too bigv8.2.1405Bram Moolenaar
Problem: Vim9: vim9compile.c is getting too big. Solution: Split off type code to vim9type.c.
2020-08-06patch 8.2.1381: MS-Windows: crash with Python 3.5 when stdin is redirectedv8.2.1381Bram Moolenaar
Problem: MS-Windows: crash with Python 3.5 when stdin is redirected. Solution: Reconnect stdin. (Yasuhiro Matsumoto, Ken Takata, closes #6641)
2020-07-22patch 8.2.1269: language and locale code spread outv8.2.1269Bram Moolenaar
Problem: Language and locale code spread out. Solution: Move relevant code to src/locale.c. (Yegappan Lakshmanan, closes #6509)
2020-07-21patch 8.2.1262: src/ex_cmds.c file is too bigv8.2.1262Bram Moolenaar
Problem: src/ex_cmds.c file is too big. Solution: Move help related code to src/help.c. (Yegappan Lakshmanan, closes #6506)
2020-06-28patch 8.2.1078: highlight and match functionality together in one filev8.2.1078Bram Moolenaar
Problem: Highlight and match functionality together in one file. Solution: Move match functionality to a separate file. (Yegappan Lakshmanan, closes #6352)
2020-06-06patch 8.2.0914: MS-Windows: cannot specify a "modified by" textv8.2.0914Bram Moolenaar
Problem: MS-Windows: cannot specify a "modified by" text. Solution: Add MODIFIED_BY in the MSVC build file. (Chen Lei, closes #1275)
2020-06-01patch 8.2.0872: XIM code is mixed with multi-byte codev8.2.0872Bram Moolenaar
Problem: XIM code is mixed with multi-byte code. Solution: Move the XIM code to a separate file. (Yegappan Lakshmanan, closes #6177)
2020-05-30patch 8.2.0847: typval related code is spread outv8.2.0847Bram Moolenaar
Problem: Typval related code is spread out. Solution: Move code to new typval.c file. (Yegappan Lakshmanan, closes #6093)
2020-05-17patch 8.2.0783: libvterm code lags behind the upstream versionv8.2.0783Bram Moolenaar
Problem: Libvterm code lags behind the upstream version. Solution: Include revisions 728 - 729.
2020-05-15patch 8.2.0756: MS-Windows: still a compiler warningv8.2.0756Bram Moolenaar
Problem: MS-Windows: still a compiler warning. Solution: Move flag to another place in the Makefile. (Ken Takata, closes #6083)
2020-05-01patch 8.2.0674: some source files are too bigv8.2.0674Bram Moolenaar
Problem: Some source files are too big. Solution: Move text formatting functions to a new file. (Yegappan Lakshmanan, closes #6021)
2020-04-29patch 8.2.0660: the search.c file is a bit bigv8.2.0660Bram Moolenaar
Problem: The search.c file is a bit big. Solution: Split off the text object code to a separate file. (Yegappan Lakshmanan, closes #6007)
2020-04-18patch 8.2.0594: MS-Windows: cannot build with WINVER set to 0x0501v8.2.0594Bram Moolenaar
Problem: MS-Windows: cannot build with WINVER set to 0x0501. Solution: Only use inet_ntop() when available. (Ozaki Kiichi, closes #5946)
2020-04-17patch 8.2.0591: MS-Windows: should always support IPv6v8.2.0591Bram Moolenaar
Problem: MS-Windows: should always support IPv6 Solution: Add build flag. (Ozaki Kiichi, closes #5944)