summaryrefslogtreecommitdiff
path: root/src/Make_cyg_ming.mak
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.3139: functions for string manipulation are spread outv8.2.3139Yegappan Lakshmanan2021-07-101-0/+1
| | | | | | 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.3022: available encryption methods are not strong enoughv8.2.3022Christian Brabandt2021-06-201-2/+13
| | | | | | 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/+1
| | | | | | 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-8/+8
| | | | | Problem: MS-Windows manifest file name is misleading. Solution: Rename the file. (closes #8241)
* patch 8.2.2408: MinGW: "--preprocessor" flag no longer supportedv8.2.2408Bram Moolenaar2021-01-251-2/+2
| | | | | | Problem: MinGW: "--preprocessor" flag no longer supported. Solution: Remove the flag, use the defaults. (Christopher Wellons, closes #7741)
* patch 8.2.1994: MS-Windows: MinGW always does a full buildv8.2.1994Bram Moolenaar2020-11-161-8/+8
| | | | | Problem: MS-Windows: MinGW always does a full build. Solution: Only check if $OUTDIR exists. (Masamichi Abe, closes #7311)
* patch 8.2.1981: MinGW: parallel compilation might failv8.2.1981Bram Moolenaar2020-11-131-1/+7
| | | | | Problem: MinGW: parallel compilation might fail. Solution: Add dependencies on $(OUTDIR). (Masamichi Abe, closes #7287)
* patch 8.2.1597: the channel source file is too bigv8.2.1597Bram Moolenaar2020-09-051-1/+1
| | | | | Problem: The channel source file is too big. Solution: Move job related code to a new source file.
* patch 8.2.1583: MS-Windows: cannot easily measure code coveragev8.2.1583Bram Moolenaar2020-09-031-0/+11
| | | | | Problem: MS-Windows: cannot easily measure code coverage. Solution: Add the COVERAGE option. (Ken Takata, closes #6842)
* 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.1405: Vim9: vim9compile.c is getting too bigv8.2.1405Bram Moolenaar2020-08-091-0/+3
| | | | | 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-0/+2
| | | | | 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/+1
| | | | | | 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/+1
| | | | | | 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/+1
| | | | | | Problem: Highlight and match functionality together in one file. Solution: Move match functionality to a separate file. (Yegappan Lakshmanan, closes #6352)
* patch 8.2.0903: comparing WINVER does not work correctlyv8.2.0903Bram Moolenaar2020-06-041-1/+1
| | | | | Problem: comparing WINVER does not work correctly. Solution: Use arithmethic expansion. (Ozaki Kiichi, closes #6197)
* patch 8.2.0872: XIM code is mixed with multi-byte codev8.2.0872Bram Moolenaar2020-06-011-0/+1
| | | | | | 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/+1
| | | | | 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.0674: some source files are too bigv8.2.0674Bram Moolenaar2020-05-011-0/+1
| | | | | | 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/+1
| | | | | | 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-0/+3
| | | | | 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/+1
| | | | | | 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/+1
| | | | | | Problem: Clipboard code is spread out. Solution: Move clipboard code to its own file. (Yegappan Lakshmanan, closes #5827)
* patch 8.2.0256: time and timer related code is spread outv8.2.0256Bram Moolenaar2020-02-141-0/+1
| | | | | | 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-0/+9
| | | | | 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.0100: macros for Ruby are too complicatedv8.2.0100Bram Moolenaar2020-01-071-3/+0
| | | | | | Problem: Macros for Ruby are too complicated. Solution: Do not use DYNAMIC_RUBY_VER, use RUBY_VERSION. (Ken Takata, closes #5452)
* patch 8.2.0081: MS-Windows also need the change to support INIT4()v8.2.0081Bram Moolenaar2020-01-031-1/+1
| | | | | Problem: MS-Windows also need the change to support INIT4(). Solution: Add the ctags arguments. (Ken Takata)
* patch 8.2.0003: Build file dependencies are incompletev8.2.0003Bram Moolenaar2019-12-141-4/+24
| | | | | Problem: Build file dependencies are incomplete. Solution: Fix the dependencies. (Ken Takata, closes #5356)
* patch 8.1.2417: MinGW/Cygwin build does not clean up all filesv8.1.2417Bram Moolenaar2019-12-101-0/+1
| | | | | Problem: MinGW/Cygwin build does not clean up all files. Solution: Delete *.map files. (Michael Soyka)
* patch 8.1.2413: cannot update ex_cmdidxs.h on MS-Windowsv8.1.2413Bram Moolenaar2019-12-091-0/+9
| | | | | Problem: Cannot update ex_cmdidxs.h on MS-Windows. Solution: Add build rules and dependencies. (Ken Takata, closes #5337)
* patch 8.1.2128: renamed libvterm sources makes merging difficultv8.1.2128Bram Moolenaar2019-10-101-10/+10
| | | | | | | 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/+1
| | | | | | | 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/+1
| | | | | | Problem: The fileio.c file is too big. Solution: Move buf_write() to bufwrite.c. (Yegappan Lakshmanan, closes #4990)
* patch 8.1.2082: some files have a weird name to fit in 8.3 charactersv8.1.2082Bram Moolenaar2019-09-271-5/+5
| | | | | 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/+1
| | | | | | 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/+4
| | | | | | 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-1/+2
| | | | | | Problem: The mouse code is spread out. Solution: Move all the mouse code to mouse.c. (Yegappan Lakshmanan, closes #4959)
* patch 8.1.2057: the screen.c file is much too bigv8.1.2057Bram Moolenaar2019-09-191-0/+2
| | | | | Problem: The screen.c file is much too big. Solution: Split it in three parts. (Yegappan Lakshmanan, closes #4943)
* patch 8.1.2045: the option.c file is too bigv8.1.2045Bram Moolenaar2019-09-161-0/+1
| | | | | | Problem: The option.c file is too big. Solution: Split off the code dealing with strings. (Yegappan Lakshmanan, closes #4937)
* patch 8.1.2027: MS-Windows: problem with ambiwidth charactersv8.1.2027Bram Moolenaar2019-09-131-1/+2
| | | | | | Problem: MS-Windows: problem with ambiwidth characters. Solution: handle ambiguous width characters in ConPTY on Windows 10 (1903). (Nobuhiro Takasaki, closes #4411)
* patch 8.1.2005: the regexp.c file is too bigv8.1.2005Bram Moolenaar2019-09-071-1/+1
| | | | | | Problem: The regexp.c file is too big. Solution: Move the backtracking engine to a separate file. (Yegappan Lakshmanan, closes #4905)
* patch 8.1.2001: some source files are too bigv8.1.2001Bram Moolenaar2019-09-071-0/+2
| | | | | | Problem: Some source files are too big. Solution: Move buffer and window related functions to evalbuffer.c and evalwindow.c. (Yegappan Lakshmanan, closes #4898)
* patch 8.1.1994: MS-Windows: cannot build with eval but without cscopev8.1.1994Bram Moolenaar2019-09-061-3/+1
| | | | | Problem: MS-Windows: cannot build with eval but without cscope Solution: Adjust the makefiles to always build if_cscope.obj.
* patch 8.1.1979: code for handling file names is spread outv8.1.1979Bram Moolenaar2019-09-041-0/+1
| | | | | Problem: Code for handling file names is spread out. Solution: Move code to new filepath.c file. Graduate FEAT_MODIFY_FNAME.
* patch 8.1.1933: the eval.c file is too bigv8.1.1933Bram Moolenaar2019-08-271-0/+1
| | | | | | Problem: The eval.c file is too big. Solution: Move code related to variables to evalvars.c. (Yegappan Lakshmanan, closes #4868)
* patch 8.1.1927: code for dealing with script files is spread outv8.1.1927Bram Moolenaar2019-08-251-0/+1
| | | | | Problem: Code for dealing with script files is spread out. Solution: Move the code to scriptfile.c. (Yegappan Lakshmanan, closes #4861)