summaryrefslogtreecommitdiffstats
path: root/src/Make_ming.mak
AgeCommit message (Collapse)Author
2017-09-23patch 8.0.1141: MS-Windows build dependencies are incompletev8.0.1141Bram Moolenaar
Problem: MS-Windows build dependencies are incomplete. Solution: Fix the dependencies. (Ken Takata)
2014-11-05updated for version 7.4.496v7.4.496Bram Moolenaar
Problem: Many lines are both in Make_cyg.mak and Make_ming.mak Solution: Move the common parts to one file. (Ken Takata)
2014-10-15updated for version 7.4.476v7.4.476Bram Moolenaar
Problem: MingW: compiling with "XPM=no" doesn't work. Solution: Check for the "no" value. (KF Leong) Also for Cygwin. (Ken Takata)
2014-08-10updated for version 7.4.401v7.4.401Bram Moolenaar
Problem: Can't build on MS-Windows. Solution: Include the new files in all the Makefiles.
2014-08-06updated for version 7.4.393v7.4.393Bram Moolenaar
Problem: Text drawing on newer MS-Windows systems is suboptimal. Some multi-byte characters are not displayed, even though the same font in Notepad can display them. (Srinath Avadhanula) Solution: Add the 'renderoptions' option to enable Direct-X drawing. (Taro Muraoka)
2014-01-06updated for version 7.4.134v7.4.134Bram Moolenaar
Problem: Spurious space in MingW Makefile. Solution: Remove the space. (Michael Soyka)
2013-12-11updated for version 7.4.117v7.4.117Bram Moolenaar
Problem: Can't build with Cygwin/MingW and Perl 5.18. Solution: Add a linker argument for the Perl library. (Cesar Romani) Adjust CFLAGS and LIB. (Cesar Romani) Move including inline.h further down. (Ken Takata)
2013-07-06updated for version 7.3.1313v7.3.1313Bram Moolenaar
Problem: :py and :py3 don't work when compiled with Cygwin or MingW with 64 bit. Solution: Add -DMS_WIN64 to the build command. (Ken Takata)
2013-06-03updated for version 7.3.1109v7.3.1109Bram Moolenaar
Problem: Building on MS-Windows doesn't see changes in if_py_both.h. Solution: Add a dependency. (Ken Takata)
2013-05-19updated for version 7.3.970v7.3.970Bram Moolenaar
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)
2013-03-07updated for version 7.3.848v7.3.848Bram Moolenaar
Problem: Can't build with Ruby 2.0 when using MinGW x64 or MSVC10. Solution: Fix it. Also detect RUBY_PLATFORM and RUBY_INSTALL_NAME for x64. (Ken Takata)
2013-02-26updated for version 7.3.836v7.3.836Bram Moolenaar
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)
2013-01-30updated for version 7.3.791v7.3.791Bram Moolenaar
Problem: MzScheme interface doesn't work propely. Solution: Make it work better. (Sergey Khorev)
2013-01-23updated for version 7.3.775v7.3.775Bram Moolenaar
Problem: Cygwin and Mingw builds miss dependency on gui_w48.c. Solution: Add a build rule. (Ken Takata)
2012-11-28updated for version 7.3.735v7.3.735Bram Moolenaar
Problem: Cannot build Ruby 1.9 with MingW or Cygwin. Solution: Add another include directory. (Ken Takata)
2012-09-05updated for version 7.3.653v7.3.653Bram Moolenaar
Problem: MingW needs build rule for included XPM files. Object directory for 32 and 64 builds is the same, also for MSVC. Solution: Add MingW build rule to use included XPM files. Add the CPU or architecture to the object directory name. (Sergey Khorev)
2012-08-02updated for version 7.3.620v7.3.620Bram Moolenaar
Problem: Building with recent Ruby on Win32 doesn't work. Solution: Add a separate argument for the API version. (Yasuhiro Matsumoto)
2012-07-06updated for version 7.3.586v7.3.586Bram Moolenaar
Problem: When compiling with Cygwin or MingW MEMORYSTATUSEX is not defined. Solution: Set the default for WINVER to 0x0500.
2012-04-20updated for version 7.3.500v7.3.500Bram Moolenaar
Problem: Ming makefile unconditionally sets WINVER. Solution: Only defined when not already defined. (Yasuhiro Matsumoto)
2012-03-28updated for version 7.3.486v7.3.486Bram Moolenaar
Problem: Build error with mingw64 on Windows 7. Solution: Avoid the step of going through vimres.res. (Guopeng Wen)
2012-02-29updated for version 7.3.460v7.3.460Bram Moolenaar
Problem: Win32: UPX does not compress 64 bit binaries. Solution: Mention and add the alternative: mpress. (Dave Bodenstab)
2011-10-12updated for version 7.3.334v7.3.334Bram Moolenaar
Problem: Latest MingW about XSUBPP referencing itself. (Gongqian Li) Solution: Rename the first use to XSUBPPTRY.
2011-09-30updated for version 7.3.326v7.3.326Bram Moolenaar
Problem: MingW 4.6 no longer supports the -mno-cygwin option. Solution: Split the Cygwin and MingW makefiles. (Matsushita Shougo)
2011-09-14updated for version 7.3.304v7.3.304Bram Moolenaar
Problem: Strawberry Perl doesn't work on MS-Windows. Solution: Use xsubpp if needed. (Yasuhiro Matsumoto)
2011-06-19updated for version 7.3.223v7.3.223Bram Moolenaar
Problem: MingW cross compilation doesn't work with tiny features. Solution: Move acp_to_enc(), enc_to_utf16() and utf16_to_enc() outside of "#ifdef CLIPBOARD". Fix typo in makefile.
2010-12-30updated for version 7.3.093v7.3.093Bram Moolenaar
Problem: New DLL dependencies in MingW with gcc 4.5.0. Solution: Add STATIC_STDCPLUS, LDFLAGS and split up WINDRES. (Guopeng Wen)
2010-11-03updated for version 7.3.049v7.3.049Bram Moolenaar
Problem: PLT has rebranded their Scheme to Racket. Solution: Add support for Racket 5.x. (Sergey Khorev)
2010-09-29updated for version 7.3.018v7.3.018Bram Moolenaar
Problem: Missing argument to windres in MingW makefiles. Solution: Add the argument that was wrapped in the patch. (Jon Maken)
2010-09-29updated for version 7.3.012v7.3.012Bram Moolenaar
Problem: Problems building with MingW. Solution: Adjust the MingW makefiles. (Jon)
2010-07-17Added support for Python 3. (Roland Puntaier)Bram Moolenaar
2010-07-14Added Lua interfae. (Luis Carvalho)Bram Moolenaar
2010-05-18Add blowfish and sha256 source files to more Makefiles.Bram Moolenaar
2010-03-17updated for version 7.2.399v7.2.399Bram Moolenaar
Problem: Cannot compile on MingW Solution: Move ifneq to separate line. (Vlad Sandrini, Dominique Pelle)
2010-03-10updated for version 7.2.388v7.2.388Bram Moolenaar
Problem: Ruby with MingW still doesn't build all versions. Solution: Different approach to build file. (Sergey Khorev)
2010-02-26updated for version 7.2.377v7.2.377Bram Moolenaar
Problem: Misplaced assignment. Duplicate build line for gvimext.dll. Solution: Move setting CROSS_COMPILE to before ifneq. Remove the wrong build line. (Markus Heidelberg)
2010-02-24updated for version 7.2.372v7.2.372Bram Moolenaar
Problem: Cross-compiling GvimExt and xxd doesn't work. Solution: Change the build files. (Markus Heidelberg)
2009-09-11updated for version 7.2-248v7.2.248Bram Moolenaar
2009-05-26updated for version 7.2-191v7.2.191Bram Moolenaar
2007-08-12updated for version 7.1-065v7.1.065Bram Moolenaar
2007-05-10updated for version 7.1bBram Moolenaar
2006-03-24updated for version 7.0bBram Moolenaar
2005-10-03updated for version 7.0153Bram Moolenaar
2005-07-23updated for version 7.0114v7.0114Bram Moolenaar
2005-07-21updated for version 7.0112Bram Moolenaar
2005-03-22updated for version 7.0063Bram Moolenaar
2005-03-07updated for version 7.0057Bram Moolenaar
2005-02-28updated for version 7.0054Bram Moolenaar
2005-01-31updated for version 7.0046Bram Moolenaar
2005-01-25updated for version 7.0044Bram Moolenaar
2005-01-19updated for version 7.0042Bram Moolenaar