summaryrefslogtreecommitdiffstats
path: root/src/Makefile
AgeCommit message (Collapse)Author
2020-09-02patch 8.2.1567: no example to use ubsan with clangv8.2.1567Bram Moolenaar
Problem: No example to use ubsan with clang. Solution: Add example commands. (Dominique Pellé, issue #6811)
2020-08-30patch 8.2.1546: build rule for Vim.app is unusedv8.2.1546Bram Moolenaar
Problem: Build rule for Vim.app is unused. Solution: Delete the related build rules.
2020-08-20patch 8.2.1495: "make clean" may delete too many filesv8.2.1495Bram Moolenaar
Problem: "make clean" may delete too many files. Solution: Do not delete $APPDIR. (closes #6751)
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.1442: outdated references to the Mac Carbon GUIv8.2.1442Bram Moolenaar
Problem: Outdated references to the Mac Carbon GUI. Solution: Remove or update references. (Yee Cheng Chin, closes #6703)
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.1422: the Mac GUI implementation is outdatedv8.2.1422Bram Moolenaar
Problem: The Mac GUI implementation is outdated and probably doesn't even work. Solution: Remove the Mac GUI code. The MacVim project provides the supported Vim GUI version.
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-02patch 8.2.1354: test 59 is old stylev8.2.1354Bram Moolenaar
Problem: Test 59 is old style. Solution: Convert into a new style test. (Yegappan Lakshmanan, closes #6604)
2020-07-29patch 8.2.1316: test 42 is still old stylev8.2.1316Bram Moolenaar
Problem: Test 42 is still old style. Solution: Turn it into a new style test. (Yegappan Lakshmanan, closes #6561)
2020-07-27patch 8.2.1305: some tests are still old stylev8.2.1305Bram Moolenaar
Problem: Some tests are still old style. Solution: Convert tests 52 and 70 to new style. (Yegappan Lakshmanan, closes #6544) Fix error in FinishTesting().
2020-07-26patch 8.2.1295: tests 44 and 99 are old stylev8.2.1295Bram Moolenaar
Problem: Tests 44 and 99 are old style. Solution: Convert to new style tests. (Yegappan Lakshmanan, closes #6536)
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.1266: Makefile preference were accidentally includedv8.2.1266Bram Moolenaar
Problem: Makefile preference were accidentally included. Solution: Revert the Makefile changes.
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-07-03patch 8.2.1123: Python 3 test is old stylev8.2.1123Bram Moolenaar
Problem: Python 3 test is old style. Solution: Turn into new style test. (Yegappan Lakshmanan, closes #6385)
2020-07-03patch 8.2.1120: Python code not tested properlyv8.2.1120Bram Moolenaar
Problem: Python code not tested properly. Solution: Add more tests and convert old-style test into new-style test. (Yegappan Lakshmanan, closes #6370)
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-05patch 8.2.0910: Vim is not reproducibly buildablev8.2.0910Bram Moolenaar
Problem: Vim is not reproducibly buildable. Solution: Use the $SOURCE_DATE_EPOCH environment variable in configure. (James McCoy, closes #513) Give a warning about using it.
2020-06-02patch 8.2.0885: "make shadow" does not link new lua test dirv8.2.0885Bram Moolenaar
Problem: "make shadow" does not link new lua test dir. Solution: Also link testdir/testluaplugin. (Elimar Riesebieter)
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-31patch 8.2.0859: no Turkish translation of the manualv8.2.0859Bram Moolenaar
Problem: No Turkish translation of the manual. Solution: Add Turkish translations. (Emir Sarı, closes #5641)
2020-05-30patch 8.2.0849: BeOS code is not maintained and probably unusedv8.2.0849Bram Moolenaar
Problem: BeOS code is not maintained and probably unused. Solution: Remove the BeOS code. (Emir Sari, closes #5817)
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-20patch 8.2.0803: libvterm code lags behind the upstream versionv8.2.0803Bram Moolenaar
Problem: Libvterm code lags behind the upstream version. Solution: Include revisions 764 - 767
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-11patch 8.2.0739: incomplete profiling when exiting because of a dealy signalv8.2.0739Bram Moolenaar
Problem: Incomplete profiling when exiting because of a dealy signal. Solution: Call __gcov_flush() if available.
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-05-01patch 8.2.0673: cannot build Haiku in shadow directoryv8.2.0673Bram Moolenaar
Problem: Cannot build Haiku in shadow directory. Solution: Add symlink. (Ozaki Kiichi, closes #6023)
2020-04-30patch 8.2.0667: cannot install Haiku version from sourcev8.2.0667Bram Moolenaar
Problem: Cannot install Haiku version from source. Solution: Update Makefile and rdef file. (Emir Sari, closes #6013)
2020-04-29patch 8.2.0664: included undesired changes in Makefilev8.2.0664Bram Moolenaar
Problem: Included undesired changes in Makefile. Solution: Revert the changes.
2020-04-29patch 8.2.0661: eval test is still old stylev8.2.0661Bram Moolenaar
Problem: Eval test is still old style. Solution: Change into new style tests. (Yegappan Lakshmanan, closes #6009)
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-23patch 8.2.0622: Haiku: GUI does not compilev8.2.0622Bram Moolenaar
Problem: Haiku: GUI does not compile. Solution: Various fixes. (Emir Sari, closes #5961)
2020-04-23patch 8.2.0621: after running tests asan files may remainv8.2.0621Bram Moolenaar
Problem: After running tests asan files may remain. Solution: Clean up asan files with "make testclean".
2020-04-07patch 8.2.0527: Vim9: function types insufficiently testedv8.2.0527Bram Moolenaar
Problem: Vim9: function types insufficiently tested. Solution: Add more tests. Fix white space check. Add "test_vim9" target.
2020-04-05patch 8.2.0516: client-server code is spread outv8.2.0516Bram Moolenaar
Problem: Client-server code is spread out. Solution: Move client-server code to a new file. (Yegappan Lakshmanan, closes #5885)
2020-04-01patch 8.2.0489: Vim9: memory leaksv8.2.0489Bram Moolenaar
Problem: Vim9: memory leaks. Solution: Free memory in the right place. Add hints for using asan.
2020-03-24patch 8.2.0443: clipboard code is spread outv8.2.0443Bram Moolenaar
Problem: Clipboard code is spread out. Solution: Move clipboard code to its own file. (Yegappan Lakshmanan, closes #5827)
2020-02-26patch 8.2.0320: no Haiku supportv8.2.0320Bram Moolenaar
Problem: No Haiku support. Solution: Add support for Haiku. (Emir Sari, closes #5605)
2020-02-14patch 8.2.0256: time and timer related code is spread outv8.2.0256Bram Moolenaar
Problem: Time and timer related code is spread out. Solution: Move time and timer related code to a new file. (Yegappan Lakshmanan, closes #5604)
2020-01-26patch 8.2.0149: maintaining a Vim9 branch separately is more workv8.2.0149Bram Moolenaar
Problem: Maintaining a Vim9 branch separately is more work. Solution: Merge the Vim9 script changes.
2020-01-12patch 8.2.0113: "make cmdidxs" failsv8.2.0113Bram Moolenaar
Problem: "make cmdidxs" fails. Solution: Allow address for ":cquit". Add --not-a-term to avoid a delay.
2019-12-16patch 8.2.0014: test69 and test95 are old stylev8.2.0014Bram Moolenaar
Problem: Test69 and test95 are old style. Solution: Convert to new style tests. (Yegappan Lakshmanan, closes #5365)
2019-12-15patch 8.2.0010: test64 is old stylev8.2.0010Bram Moolenaar
Problem: Test64 is old style. Solution: Convert to new style test. (Yegappan Lakshmanan, closes #5363)
2019-12-14patch 8.2.0008: test72 is old stylev8.2.0008Bram Moolenaar
Problem: Test72 is old style. Solution: Convert to new style test. (Yegappan Lakshmanan, closes #5362)
2019-12-14patch 8.2.0003: Build file dependencies are incompletev8.2.0003Bram Moolenaar
Problem: Build file dependencies are incomplete. Solution: Fix the dependencies. (Ken Takata, closes #5356)
2019-12-12Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar
2019-12-11patch 8.1.2422: "make depend" does not work correctly for libvtermv8.1.2422Bram Moolenaar
Problem: "make depend" does not work correctly for libvterm. Solution: Fix build dependencies. And a few minor improvements.