summaryrefslogtreecommitdiff
path: root/src/configure.ac
AgeCommit message (Collapse)Author
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)