summaryrefslogtreecommitdiff
path: root/src/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* updated for version 7.3.987v7.3.987Bram Moolenaar2013-05-211-0/+13
| | | | | | | Problem: No easy to run an individual test. Tests 64 fails when 'encoding' is not utf-8. Solution: Add individual test targets to the Makefile. Move some lines from test 64 to 95.
* updated for version 7.3.970v7.3.970Bram Moolenaar2013-05-191-6/+6
| | | | | | | Problem: Syntax highlighting can be slow. Solution: Include the NFA regexp engine. Add the 'regexpengine' option to select which one is used. (various authors, including Ken Takata, Andrei Aiordachioaie, Russ Cox, Xiaozhou Liua, Ian Young)
* updated for version 7.3.925v7.3.925Bram Moolenaar2013-05-061-11/+11
| | | | | Problem: Typos in source files. Solution: Fix the typos. (Ken Takata)
* updated for version 7.3.836v7.3.836Bram Moolenaar2013-02-261-1/+15
| | | | | | Problem: Clipboard does not work on Win32 when compiled with Cygwin. Solution: Move the Win32 clipboard code to a separate file and use it when building with os_unix.c. (Frodak Baksik, Ken Takata)
* updated for version 7.3.795v7.3.795Bram Moolenaar2013-01-301-1/+3
| | | | | | Problem: MzScheme does not build with tiny features. Solution: Add #ifdefs. Also add UNUSED to avoid warnings. And change library ordering.
* updated for version 7.3.722v7.3.722Bram Moolenaar2012-11-201-1/+2
| | | | | Problem: Perl flags may contain "-g", which breaks "make proto". Solution: Filter out the "-g" flag for cproto. (Ken Takata)
* updated for version 7.3.613v7.3.613Bram Moolenaar2012-07-251-8/+0
| | | | | | Problem: Including Python's config.c in the build causes trouble. It is not clear why it was there. Solution: Omit the config file. (James McCoy)
* updated for version 7.3.565v7.3.565Bram Moolenaar2012-06-201-1/+1
| | | | | Problem: Can't generate proto file for Python 3. Solution: Add PYTHON3_CFLAGS to LINT_CFLAGS.
* updated for version 7.3.555v7.3.555Bram Moolenaar2012-06-131-1/+4
| | | | | | Problem: Building on IBM z/OS fails. Solution: Adjust configure. Use the QUOTESED value from config.mk instead of the hard coded one in Makefile. (Stephen Bovy)
* updated for version 7.3.485v7.3.485Bram Moolenaar2012-03-281-1/+1
| | | | | Problem: When building Vim LDFLAGS isn't passed on to building xxd. Solution: Pass the LDFLAGS value. (James McCoy)
* updated for version 7.3.381v7.3.381Bram Moolenaar2011-12-141-1/+7
| | | | | Problem: Configure silently skips interfaces that won't work. Solution: Add the --enable-fail_if_missing argument. (Shlomi Fish)
* updated for version 7.3.368v7.3.368Bram Moolenaar2011-12-081-2/+2
| | | | | Problem: Gcc complains about redefining _FORTIFY_SOURCE. Solution: Undefine it before redefining it.
* updated for version 7.3.339v7.3.339Bram Moolenaar2011-10-201-0/+1
| | | | | Problem: "make shadow" doesn't link all test files. Solution: Add a line in Makefile and Filelist.
* updated for version 7.3.191v7.3.191Bram Moolenaar2011-05-191-8/+2
| | | | | | Problem: Still some RISC OS stuff to remove. Solution: Remove files and lines. (Hong Xu) Remove the 'osfiletype' option code.
* updated for version 7.3.147v7.3.147Bram Moolenaar2011-04-011-1/+1
| | | | | Problem: Can't build on HP-UX. Solution: Remove an unnecessary backslash. (John Marriott)
* updated for version 7.3.143Bram Moolenaar2011-03-221-16/+59
| | | | | | | Problem: Memfile is not tested sufficiently. Looking up blocks in a memfile is slow when there are many blocks. Solution: Add high level test and unittest. Adjust the number of hash buckets to the number of blocks. (Ivan Krasilnikov)
* updated for version 7.3.122v7.3.122Bram Moolenaar2011-02-151-5/+6
| | | | | | Problem: Having auto/config.mk in the repository causes problems. Solution: Remove auto/config.mk from the distribution. In the toplevel Makefile copy it from the "dist" file.
* updated for version 7.3.050v7.3.050Bram Moolenaar2010-11-031-1/+2
| | | | | | Problem: The link script is clumsy. Solution: Use the --as-needed linker option if available. (Kirill A. Shutemov)
* updated for version 7.3.043v7.3.043Bram Moolenaar2010-10-271-4/+9
| | | | | Problem: Can't load Ruby dynamically on Unix. Solution: Adjust the configure script. (James Vega)
* Last changes for the 7.3 release!v7.3Bram Moolenaar2010-08-151-1/+1
|
* Fix building the Mac version with GUI.Bram Moolenaar2010-08-141-0/+3
|
* Version 7.3f -> 7.3gBram Moolenaar2010-08-141-1/+1
|
* Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)Bram Moolenaar2010-08-131-0/+1
|
* When building with both Python 2 and Python 3 don't use RTLD_GLOBAL, so thatBram Moolenaar2010-08-091-0/+2
| | | | both may work.
* Version 7.3e -> 7.3f.Bram Moolenaar2010-08-091-1/+1
|
* Fixed: "make install" installed a few Amiga .info files.Bram Moolenaar2010-08-041-1/+3
|
* 7.3d -> 7.3e.Bram Moolenaar2010-08-041-1/+1
|
* Version 7.3c -> 7.3dBram Moolenaar2010-08-011-1/+1
|
* 7.3b -> 7.3cBram Moolenaar2010-07-251-1/+1
|
* Prepare for 7.3b release. Fix src/Makefile enabling python3 by default.Bram Moolenaar2010-07-251-3/+3
|
* Move some common code from if_python.c and if_python3.c to if_py_both.h.Bram Moolenaar2010-07-241-2/+2
|
* Make it possible to load Lua dynamically on Unix. (Luis Carvalho)Bram Moolenaar2010-07-221-4/+6
|
* Make it possible to load Perl dynamically on Unix. (James Vega)Bram Moolenaar2010-07-211-4/+7
|
* Vim 7.3a -> 7.3b.Bram Moolenaar2010-07-181-1/+1
|
* Fixes and improvements for MS-Windows build.Bram Moolenaar2010-07-181-1/+1
|
* Make automatic prototype generation work with more interfaces.Bram Moolenaar2010-07-181-26/+29
|
* Make it easier to build with Lua. Remove compiler warnings.Bram Moolenaar2010-07-181-2/+1
|
* Added support for Python 3. (Roland Puntaier)Bram Moolenaar2010-07-171-20/+64
|
* Added Lua interfae. (Luis Carvalho)Bram Moolenaar2010-07-141-4/+21
|
* Add clipboard support in Mac console. (Bjorn Winckler)Bram Moolenaar2010-07-141-2/+2
|
* Filter out -pthread for cproto.Bram Moolenaar2010-07-111-22/+19
|
* Remove the old and not well supported GTK 1 code. (James Vega)Bram Moolenaar2010-06-251-7/+3
|
* Add :nbstart and :nbclose.Bram Moolenaar2010-05-221-242/+251
|
* Undo undesired changes in src/Makefile.Bram Moolenaar2010-05-171-4/+4
|
* Add the blowfish encryption patch from Mohsin Ahmed. Needs more work.Bram Moolenaar2010-05-161-4/+16
|
* First step in the Vim 7.3 branch. Changed version numbers.Bram Moolenaar2010-05-151-2/+2
|
* updated for version 7.2.416v7.2.416Bram Moolenaar2010-05-071-2/+2
| | | | | Problem: Logtalk.dict is not installed. Solution: Add it to the install target. (Markus Heidelberg)
* updated for version 7.2.361v7.2.361Bram Moolenaar2010-02-171-1/+3
| | | | | Problem: Ruby 1.9 is not supported. Solution: Add Ruby 1.9 support. (Msaki Suketa)
* updated for version 7.2-191v7.2.191Bram Moolenaar2009-05-261-2/+6
|
* updated for version 7.2-185v7.2.185Bram Moolenaar2009-05-221-11/+18
|