summaryrefslogtreecommitdiff
path: root/src/configure.ac
AgeCommit message (Collapse)Author
2017-10-28patch 8.0.1236: Mac features are confusingBram Moolenaar
Problem: Mac features are confusing. Solution: Make feature names more consistent, add "osxdarwin". Rename feature flags, cleanup Mac code. (Kazunobu Kuriyama, closes #2178)
2017-10-28patch 8.0.1235: cannot disable the terminal feature in a huge buildBram Moolenaar
Problem: Cannot disable the terminal feature in a huge build. (lindhobe) Solution: Adjust the autoconf check. (Kazunobu Kuriyama, closes #2242)
2017-10-12patch 8.0.1185: Ruby library includes minor version numberBram Moolenaar
Problem: Ruby library includes minor version number. Solution: Only use the API version number. (Ben Boeckel, closes #2199)
2017-09-27patch 8.0.1156: trouble from removing one -W argument from Perl CFLAGSBram Moolenaar
Problem: Removing one -W argument from Perl CFLAGS may cause trouble. Solution: Remove all -W flags. (Christian Brabandt)
2017-09-15patch 8.0.1111: syntax error in configure when using PerlBram Moolenaar
Problem: Syntax error in configure when using Perl. Solution: Add missing quote
2017-09-14patch 8.0.1110: FORTIFY_SOURCE from Perl causes problemsBram Moolenaar
Problem: FORTIFY_SOURCE from Perl causes problems. (Scott Baker) Solution: Filter out the flag. (Christian Brabandt, closes #2068)
2017-09-03patch 8.0.1050: terminal window feature not included by defaultBram Moolenaar
Problem: Terminal window feature not included by default. Solution: Include the terminal feature for the "huge" build.
2017-07-18patch 8.0.0729: the help for the terminal configure option is wrongBram Moolenaar
Problem: The help for the terminal configure option is wrong. Solution: Change "Disable" to "Enable". (E Kawashima, closes #1849) Improve alignment.
2017-07-07patch 8.0.0693: no terminal emulator supportBram Moolenaar
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.
2017-06-05patch 8.0.0620: checking for HAVE_GTK_MULTIHEAD is not neededBram Moolenaar
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)
2017-04-28patch 8.0.0587: configure check for return value of tgetent skippedBram Moolenaar
Problem: Configure check for return value of tgetent is skipped. Solution: Always perform the check. (Marvin Schmidt, closes #1664)
2017-04-21patch 8.0.0576: can't build when configure choses "install-sh"Bram Moolenaar
Problem: Can't build when configure choses "install-sh". (Daniel Hahler) Solution: Always use install-sh. Fix remaining use of mkinstalldirs. (closes #1647)
2017-04-20patch 8.0.0570: can't run make with several jobsBram Moolenaar
Problem: Can't run make with several jobs, creating directories has a race condition. Solution: Use the MKDIR_P autoconf mechanism. (Eric N. Vander Weele, closes #1639)
2017-03-16patch 8.0.0464: can't find executable name on Solaris and FreeBSDBram Moolenaar
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".
2017-03-11patch 8.0.0445: getpgid is not supported on all systemsBram Moolenaar
Problem: Getpgid is not supported on all systems. Solution: Add a configure check.
2017-03-09patch 8.0.0434: clang version not correctly detectedBram Moolenaar
Problem: Clang version not correctly detected. Solution: Adjust the configure script. (Kazunobu Kuriyama)
2016-12-09patch 8.0.0130Bram Moolenaar
Problem: Configure uses "ushort" while the Vim code doesn't. Solution: Use "unsigned short" instead. (Fredrik Fornwall, closes #1314)
2016-12-01patch 8.0.0109Bram Moolenaar
Problem: Still checking if memcmp() exists while every system should have it now. Solution: Remove vim_memcmp(). (James McCoy, closes #1295)
2016-11-12patch 8.0.0082Bram Moolenaar
Problem: Extension for configure should be ".ac". Solution: Rename configure.in to configure.ac. (James McCoy, closes #1173)