summaryrefslogtreecommitdiff
path: root/src/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.1123: Python 3 test is old stylev8.2.1123Bram Moolenaar2020-07-031-1/+0
| | | | | Problem: Python 3 test is old style. Solution: Turn into new style test. (Yegappan Lakshmanan, closes #6385)
* patch 8.2.1120: Python code not tested properlyv8.2.1120Bram Moolenaar2020-07-031-1/+1
| | | | | | Problem: Python code not tested properly. Solution: Add more tests and convert old-style test into new-style test. (Yegappan Lakshmanan, closes #6370)
* patch 8.2.1078: highlight and match functionality together in one filev8.2.1078Bram Moolenaar2020-06-281-0/+10
| | | | | | Problem: Highlight and match functionality together in one file. Solution: Move match functionality to a separate file. (Yegappan Lakshmanan, closes #6352)
* patch 8.2.0910: Vim is not reproducibly buildablev8.2.0910Bram Moolenaar2020-06-051-0/+1
| | | | | | 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.
* patch 8.2.0885: "make shadow" does not link new lua test dirv8.2.0885Bram Moolenaar2020-06-021-1/+3
| | | | | Problem: "make shadow" does not link new lua test dir. Solution: Also link testdir/testluaplugin. (Elimar Riesebieter)
* patch 8.2.0872: XIM code is mixed with multi-byte codev8.2.0872Bram Moolenaar2020-06-011-0/+11
| | | | | | 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.0859: no Turkish translation of the manualv8.2.0859Bram Moolenaar2020-05-311-0/+25
| | | | | Problem: No Turkish translation of the manual. Solution: Add Turkish translations. (Emir Sarı, closes #5641)
* patch 8.2.0849: BeOS code is not maintained and probably unusedv8.2.0849Bram Moolenaar2020-05-301-8/+1
| | | | | Problem: BeOS code is not maintained and probably unused. Solution: Remove the BeOS code. (Emir Sari, closes #5817)
* patch 8.2.0847: typval related code is spread outv8.2.0847Bram Moolenaar2020-05-301-0/+10
| | | | | Problem: Typval related code is spread out. Solution: Move code to new typval.c file. (Yegappan Lakshmanan, closes #6093)
* patch 8.2.0803: libvterm code lags behind the upstream versionv8.2.0803Bram Moolenaar2020-05-201-1/+1
| | | | | Problem: Libvterm code lags behind the upstream version. Solution: Include revisions 764 - 767
* 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.0739: incomplete profiling when exiting because of a dealy signalv8.2.0739Bram Moolenaar2020-05-111-1/+3
| | | | | Problem: Incomplete profiling when exiting because of a dealy signal. Solution: Call __gcov_flush() if available.
* patch 8.2.0674: some source files are too bigv8.2.0674Bram Moolenaar2020-05-011-0/+10
| | | | | | Problem: Some source files are too big. Solution: Move text formatting functions to a new file. (Yegappan Lakshmanan, closes #6021)
* patch 8.2.0673: cannot build Haiku in shadow directoryv8.2.0673Bram Moolenaar2020-05-011-1/+1
| | | | | Problem: Cannot build Haiku in shadow directory. Solution: Add symlink. (Ozaki Kiichi, closes #6023)
* patch 8.2.0667: cannot install Haiku version from sourcev8.2.0667Bram Moolenaar2020-04-301-2/+10
| | | | | Problem: Cannot install Haiku version from source. Solution: Update Makefile and rdef file. (Emir Sari, closes #6013)
* patch 8.2.0664: included undesired changes in Makefilev8.2.0664Bram Moolenaar2020-04-291-11/+11
| | | | | Problem: Included undesired changes in Makefile. Solution: Revert the changes.
* patch 8.2.0661: eval test is still old stylev8.2.0661Bram Moolenaar2020-04-291-1/+0
| | | | | Problem: Eval test is still old style. Solution: Change into new style tests. (Yegappan Lakshmanan, closes #6009)
* patch 8.2.0660: the search.c file is a bit bigv8.2.0660Bram Moolenaar2020-04-291-12/+22
| | | | | | 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.0622: Haiku: GUI does not compilev8.2.0622Bram Moolenaar2020-04-231-2/+2
| | | | | Problem: Haiku: GUI does not compile. Solution: Various fixes. (Emir Sari, closes #5961)
* patch 8.2.0621: after running tests asan files may remainv8.2.0621Bram Moolenaar2020-04-231-1/+2
| | | | | Problem: After running tests asan files may remain. Solution: Clean up asan files with "make testclean".
* patch 8.2.0527: Vim9: function types insufficiently testedv8.2.0527Bram Moolenaar2020-04-071-1/+1
| | | | | Problem: Vim9: function types insufficiently tested. Solution: Add more tests. Fix white space check. Add "test_vim9" target.
* patch 8.2.0516: client-server code is spread outv8.2.0516Bram Moolenaar2020-04-051-0/+10
| | | | | | Problem: Client-server code is spread out. Solution: Move client-server code to a new file. (Yegappan Lakshmanan, closes #5885)
* patch 8.2.0489: Vim9: memory leaksv8.2.0489Bram Moolenaar2020-04-011-1/+4
| | | | | Problem: Vim9: memory leaks. Solution: Free memory in the right place. Add hints for using asan.
* patch 8.2.0443: clipboard code is spread outv8.2.0443Bram Moolenaar2020-03-241-0/+10
| | | | | | Problem: Clipboard code is spread out. Solution: Move clipboard code to its own file. (Yegappan Lakshmanan, closes #5827)
* patch 8.2.0320: no Haiku supportv8.2.0320Bram Moolenaar2020-02-261-0/+75
| | | | | Problem: No Haiku support. Solution: Add support for Haiku. (Emir Sari, closes #5605)
* patch 8.2.0256: time and timer related code is spread outv8.2.0256Bram Moolenaar2020-02-141-0/+10
| | | | | | Problem: Time and timer related code is spread out. Solution: Move time and timer related code to a new file. (Yegappan Lakshmanan, closes #5604)
* patch 8.2.0149: maintaining a Vim9 branch separately is more workv8.2.0149Bram Moolenaar2020-01-261-21/+51
| | | | | Problem: Maintaining a Vim9 branch separately is more work. Solution: Merge the Vim9 script changes.
* patch 8.2.0113: "make cmdidxs" failsv8.2.0113Bram Moolenaar2020-01-121-1/+1
| | | | | Problem: "make cmdidxs" fails. Solution: Allow address for ":cquit". Add --not-a-term to avoid a delay.
* patch 8.2.0014: test69 and test95 are old stylev8.2.0014Bram Moolenaar2019-12-161-2/+1
| | | | | Problem: Test69 and test95 are old style. Solution: Convert to new style tests. (Yegappan Lakshmanan, closes #5365)
* patch 8.2.0010: test64 is old stylev8.2.0010Bram Moolenaar2019-12-151-1/+1
| | | | | Problem: Test64 is old style. Solution: Convert to new style test. (Yegappan Lakshmanan, closes #5363)
* patch 8.2.0008: test72 is old stylev8.2.0008Bram Moolenaar2019-12-141-1/+1
| | | | | Problem: Test72 is old style. Solution: Convert to new style test. (Yegappan Lakshmanan, closes #5362)
* patch 8.2.0003: Build file dependencies are incompletev8.2.0003Bram Moolenaar2019-12-141-0/+3
| | | | | Problem: Build file dependencies are incomplete. Solution: Fix the dependencies. (Ken Takata, closes #5356)
* Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar2019-12-121-1/+1
|
* patch 8.1.2422: "make depend" does not work correctly for libvtermv8.1.2422Bram Moolenaar2019-12-111-13/+19
| | | | | Problem: "make depend" does not work correctly for libvterm. Solution: Fix build dependencies. And a few minor improvements.
* patch 8.1.2421: test88 is old stylev8.1.2421Bram Moolenaar2019-12-111-1/+1
| | | | | Problem: Test88 is old style. Solution: Turn into a new style test. (Yegappan Lakshmanan, closes #5347)
* patch 8.1.2407: proto files, dependencies and build instructions outdatedv8.1.2407Bram Moolenaar2019-12-071-36/+36
| | | | | Problem: proto file, dependenciess and Build instructions outdated. Solution: Update proto files, dependencies and build instructions.
* patch 8.1.2402: typos and other small thingsv8.1.2402Bram Moolenaar2019-12-061-1/+3
| | | | | Problem: Typos and other small things. Solution: Small fixes.
* patch 8.1.2400: test39 is old stylev8.1.2400Bram Moolenaar2019-12-061-1/+0
| | | | | | Problem: Test39 is old style. Solution: Convert the test cases into new style. (Yegappan Lakshmanan, closes #5324)
* patch 8.1.2390: test94 is old style, fix 7.4.441 not testedv8.1.2390Bram Moolenaar2019-12-051-1/+1
| | | | | | Problem: Test94 is old style, fix 7.4.441 not tested. Solution: Turn test94 into a new style test. Add tests for the fix in patch 7.4.441. (Yegappan Lakshmanan, closes #5316)
* patch 8.1.2384: test 48 is old stylev8.1.2384Bram Moolenaar2019-12-031-1/+1
| | | | | | Problem: Test 48 is old style. Solution: Merge test cases into new style test. (Yegappan Lakshmanan, closes #5307)
* patch 8.1.2327: cannot build with Hangul inputv8.1.2327Bram Moolenaar2019-11-211-16/+3
| | | | | Problem: Cannot build with Hangul input. Solution: Remove Hangul input support.
* patch 8.1.2203: running libvterm tests without the +terminal featurev8.1.2203Bram Moolenaar2019-10-231-1/+1
| | | | | Problem: Running libvterm tests without the +terminal feature. Solution: Only add the libvterm test target when building libvterm.
* patch 8.1.2128: renamed libvterm sources makes merging difficultv8.1.2128Bram Moolenaar2019-10-101-20/+24
| | | | | | | Problem: Renamed libvterm sources makes merging difficult. Solution: Rename back to the original name and only rename the .o files. Also clean the libvterm build artifacts. (James McCoy, closes #5027)
* patch 8.1.2127: the indent.c file is a bit bigv8.1.2127Bram Moolenaar2019-10-091-0/+10
| | | | | | | Problem: The indent.c file is a bit big. Solution: Move C-indent code a a new cindent.c file. Move other indent-related code to indent.c. (Yegappan Lakshmanan, closes #5031)
* patch 8.1.2094: the fileio.c file is too bigv8.1.2094Bram Moolenaar2019-09-281-0/+10
| | | | | | Problem: The fileio.c file is too big. Solution: Move buf_write() to bufwrite.c. (Yegappan Lakshmanan, closes #4990)
* patch 8.1.2087: cannot easily select one test function to executev8.1.2087Bram Moolenaar2019-09-271-0/+4
| | | | | | Problem: Cannot easily select one test function to execute. Solution: Support the $TEST_FILTER environment variable. (Ozaki Kiichi, closes #2695)
* patch 8.1.2082: some files have a weird name to fit in 8.3 charactersv8.1.2082Bram Moolenaar2019-09-271-6/+6
| | | | | Problem: Some files have a weird name to fit in 8.3 characters. Solution: Use a nicer names.
* patch 8.1.2081: the spell.c file is too bigv8.1.2081Bram Moolenaar2019-09-271-0/+10
| | | | | | Problem: The spell.c file is too big. Solution: Move the code for spell suggestions to a separate file. (Yegappan Lakshmanan, closes #4988)
* patch 8.1.2077: the ops.c file is too bigv8.1.2077Bram Moolenaar2019-09-251-0/+10
| | | | | | Problem: The ops.c file is too big. Solution: Move code for dealing with registers to a new file. (Yegappan Lakshmanan, closes #4982)
* patch 8.1.2062: the mouse code is spread outv8.1.2062Bram Moolenaar2019-09-211-3/+13
| | | | | | Problem: The mouse code is spread out. Solution: Move all the mouse code to mouse.c. (Yegappan Lakshmanan, closes #4959)