summaryrefslogtreecommitdiff
path: root/src/config.h.in
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.0.1832: cannot use :unlet for an environment variablev8.0.1832Bram Moolenaar2018-05-131-0/+1
| | | | | | Problem: Cannot use :unlet for an environment variable. Solution: Make it work. Use unsetenv() if available. (Ken Takata, closes #2855)
* patch 8.0.1300: file permissions may end up wrong when writingv8.0.1300Bram Moolenaar2017-11-161-1/+3
| | | | | | Problem: File permissions may end up wrong when writing. Solution: Use fchmod() instead of chmod() when possible. Don't truncate until we know we can change the file.
* patch 8.0.1295: cannot automatically get a server name in a terminalv8.0.1295Bram Moolenaar2017-11-121-0/+3
| | | | | | Problem: Cannot automatically get a server name in a terminal. Solution: Add the --enable-autoservername flag to configure. (Cimbali, closes #2317)
* patch 8.0.1236: Mac features are confusingv8.0.1236Bram Moolenaar2017-10-281-0/+1
| | | | | | Problem: Mac features are confusing. Solution: Make feature names more consistent, add "osxdarwin". Rename feature flags, cleanup Mac code. (Kazunobu Kuriyama, closes #2178)
* patch 8.0.0693: no terminal emulator supportv8.0.0693Bram Moolenaar2017-07-071-0/+3
| | | | | | | Problem: No terminal emulator support. Cannot properly run commands in the GUI. Cannot run a job interactively with an ssh connection. Solution: Very early implementation of the :terminal command. Includes libvterm converted to ANSI C. Many parts still missing.
* patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not neededv8.0.0620Bram Moolenaar2017-06-051-3/+0
| | | | | | Problem: Since we only support GTK versions that have it, the ckeck for HAVE_GTK_MULTIHEAD is no longer needed. Solution: Remove HAVE_GTK_MULTIHEAD. (Kazunobu Kuriyama)
* patch 8.0.0464: can't find executable name on Solaris and FreeBSDv8.0.0464Bram Moolenaar2017-03-161-2/+2
| | | | | | Problem: Can't find executable name on Solaris and FreeBSD. Solution: Check for "/proc/self/path/a.out". (Danek Duvall) And for "/proc/curproc/file".
* patch 8.0.0450: v:progpath is not reliably setv8.0.0450Bram Moolenaar2017-03-121-0/+3
| | | | | | Problem: v:progpath is not reliably set. Solution: Read /proc/self/exe if possible. (idea by Michal Grochmal) Also fixes missing #if.
* patch 8.0.0445: getpgid is not supported on all systemsv8.0.0445Bram Moolenaar2017-03-111-2/+3
| | | | | Problem: Getpgid is not supported on all systems. Solution: Add a configure check.
* patch 8.0.0109v8.0.0109Bram Moolenaar2016-12-011-2/+0
| | | | | | Problem: Still checking if memcmp() exists while every system should have it now. Solution: Remove vim_memcmp(). (James McCoy, closes #1295)
* patch 8.0.0082v8.0.0082Bram Moolenaar2016-11-121-2/+2
| | | | | Problem: Extension for configure should be ".ac". Solution: Rename configure.in to configure.ac. (James McCoy, closes #1173)
* patch 8.0.0045v8.0.0045Bram Moolenaar2016-10-181-0/+1
| | | | | | Problem: Calling job_stop() right after job_start() does not work. Solution: Block signals while fork is still busy. (Ozaki Kiichi, closes #1155)
* patch 7.4.1784v7.4.1784Bram Moolenaar2016-04-241-3/+0
| | | | | | | Problem: The termtruecolor feature is enabled differently from many other features. Solution: Enable the termtruecolor feature for the big build, not through configure.
* patch 7.4.1770v7.4.1770Bram Moolenaar2016-04-211-0/+3
| | | | | Problem: Cannot use true color in the terminal. Solution: Add the 'guicolors' option. (Nikolai Pavlov)
* patch 7.4.1537v7.4.1537Bram Moolenaar2016-03-111-1/+1
| | | | | Problem: Too many feature flags for pipes, jobs and channels. Solution: Only use FEAT_JOB_CHANNEL.
* patch 7.4.1437v7.4.1437Bram Moolenaar2016-02-271-0/+9
| | | | | | Problem: Old system doesn't have isinf() and NAN. (Ben Fritz) Solution: Adjust #ifdefs. Detect isnan() and isinf() functions with configure. Use a replacement when missing. (Kazunobu Kuriyama)
* patch 7.4.1433v7.4.1433Bram Moolenaar2016-02-271-3/+0
| | | | | | Problem: The Sniff interface is no longer useful, the tool has not been available for may years. Solution: Delete the Sniff interface and related code.
* patch 7.4.1402v7.4.1402Bram Moolenaar2016-02-231-0/+3
| | | | | Problem: GTK 3 is not supported. Solution: Add GTK 3 support. (Kazunobu Kuriyama)
* patch 7.4.1218v7.4.1218Bram Moolenaar2016-01-301-1/+0
| | | | | Problem: Missing change in configure. More changes for function style. Solution: Avoid the typos.
* patch 7.4.1169v7.4.1169Bram Moolenaar2016-01-241-0/+3
| | | | | | Problem: The socket I/O is intertwined with the netbeans code. Solution: Start refactoring the netbeans communication to split off the socket I/O. Add the +channel feature.
* patch 7.4.1070v7.4.1070Bram Moolenaar2016-01-091-0/+3
| | | | | Problem: The Tcl interface can't be loaded dynamically on Unix. Solution: Make it possible to load it dynamically. (Ken Takata)
* patch 7.4.995v7.4.995Bram Moolenaar2015-12-291-0/+3
| | | | | | Problem: gdk_pixbuf_new_from_inline() is deprecated. Solution: Generate auto/gui_gtk_gresources.c. (Kazunobu Kazunobu, closes #507)
* patch 7.4.861v7.4.861Bram Moolenaar2015-09-081-0/+3
| | | | | Problem: pango_shape_full() is not always available. Solution: Add a configure check.
* updated for version 7.4.475v7.4.475Bram Moolenaar2014-10-111-0/+3
| | | | | | Problem: Can't compile on a system where Xutf8SetWMProperties() is not in the X11 library. Issue 265. Solution: Add a configure check.
* updated for version 7.4.238v7.4.238Bram Moolenaar2014-04-021-0/+1
| | | | | Problem: Vim does not support the smack library. Solution: Add smack support (Jose Bollo)
* updated for version 7.4.188v7.4.188Bram Moolenaar2014-02-231-2/+2
| | | | | Problem: SIZEOF_LONG clashes with similar defines in header files. Solution: Rename to a name starting with VIM_. Also for SIZEOF_INT.
* updated for version 7.4.055v7.4.055Bram Moolenaar2013-11-021-0/+3
| | | | | Problem: Mac: Where availability macros are defined depends on the system. Solution: Add a configure check. (Felix Bünemann)
* updated for version 7.3.836v7.3.836Bram Moolenaar2013-02-261-0/+3
| | | | | | 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.631v7.3.631Bram Moolenaar2012-08-151-0/+1
| | | | | Problem: Cannot complete user names. Solution: Add user name completion. (Dominique Pelle)
* updated for version 7.3.432v7.3.432Bram Moolenaar2012-02-051-0/+1
| | | | | Problem: ACLs are not supported for ZFS or NFSv4 on Solaris. Solution: Add configure check and code. (Danek Duvall)
* updated for version 7.3.291v7.3.291Bram Moolenaar2011-09-021-0/+3
| | | | | | Problem: Configure doesn't work properly with Python3. Solution: Put -ldl before $LDFLAGS. Add PY3_NO_RTLD_GLOBAL. (Roland Puntaier)
* updated for version 7.3.043v7.3.043Bram Moolenaar2010-10-271-0/+3
| | | | | Problem: Can't load Ruby dynamically on Unix. Solution: Adjust the configure script. (James Vega)
* Add a configure check for RTLD_GLOBAL. (James Vega, Roland Puntaier)Bram Moolenaar2010-08-131-0/+3
|
* Make it possible to load Lua dynamically on Unix. (Luis Carvalho)Bram Moolenaar2010-07-221-0/+3
|
* Make it possible to load Perl dynamically on Unix. (James Vega)Bram Moolenaar2010-07-211-0/+3
|
* Added support for Python 3. (Roland Puntaier)Bram Moolenaar2010-07-171-0/+9
|
* Added Lua interfae. (Luis Carvalho)Bram Moolenaar2010-07-141-0/+3
|
* Change remaining HAVE_GTK2 to FEAT_GUI_GTK.Bram Moolenaar2010-06-261-3/+0
|
* Correct use of long instead of off_t for file size. (James Vega)Bram Moolenaar2010-05-311-2/+9
|
* A few more fixes for undo file. Split test in two parts so that it doesn'tBram Moolenaar2010-05-301-0/+3
| | | | fail with tiny features.
* Use UINT32_T in the code, define it to uint32_t or unsigned int.Bram Moolenaar2010-05-191-0/+2
| | | | Better autoconf check for uint32_t.
* Fixed encryption big/little endian test.Bram Moolenaar2010-05-171-0/+6
| | | | | | Use uint32_t to avoid crash on 64 bit machines. Added error numbers for Blowfish errors. Fixed the tiny version not building.
* updated for version 7.2.413v7.2.413Bram Moolenaar2010-05-071-0/+5
| | | | | Problem: Large file support is incorrect. Solution: Add AC_SYS_LARGEFILE to configure. (James Vega)
* updated for version 7.2.371v7.2.371Bram Moolenaar2010-02-241-1/+0
| | | | | Problem: Build problems on Tandem NonStop. Solution: A few changes to #ifdefs (Joachim Schmitz)
* updated for version 7.2-300v7.2.300Bram Moolenaar2009-11-171-0/+3
|
* updated for version 7.2-294v7.2.294Bram Moolenaar2009-11-171-0/+1
|
* updated for version 7.2-184v7.2.184Bram Moolenaar2009-05-211-0/+3
|
* updated for version 7.2-173v7.2.173Bram Moolenaar2009-05-141-0/+3
|
* updated for version 7.2-130v7.2.130Bram Moolenaar2009-03-021-0/+3
|
* updated for version 7.2aBram Moolenaar2008-06-241-0/+5
|