summaryrefslogtreecommitdiffstats
path: root/src/configure.ac
AgeCommit message (Collapse)Author
2018-01-31patch 8.0.1444: missing -D_FILE_OFFSET_BITS=64 may cause problemsv8.0.1444Bram Moolenaar
Problem: Missing -D_FILE_OFFSET_BITS=64 may cause problems if a library is compiled with it. Solution: Include -D_FILE_OFFSET_BITS if some CFLAGS has it. (James McCoy, closes #2600)
2018-01-28patch 8.0.1437: pkg-config doesn't work with cross compilingv8.0.1437Bram Moolenaar
Problem: Pkg-config doesn't work with cross compiling. Solution: Use AC_PATH_TOOL() instead of AC_PATH_PROG(). (James McCoy, closes #2513)
2017-12-16patch 8.0.1392: build fails with --with-features=huge --disable-channelv8.0.1392Bram Moolenaar
Problem: Build fails with --with-features=huge --disable-channel. Solution: Don't enable the terminal feature when the channel feature is missing. (Dominique Pelle, closes #2453)
2017-12-07patch 8.0.1379: configure check for selinux does not check for header filev8.0.1379Bram Moolenaar
Problem: Configure check for selinux does not check for header file. Solution: Add an AC_CHECK_HEADER(). (Benny Siegert)
2017-11-16patch 8.0.1300: file permissions may end up wrong when writingv8.0.1300Bram Moolenaar
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.
2017-11-12patch 8.0.1295: cannot automatically get a server name in a terminalv8.0.1295Bram Moolenaar
Problem: Cannot automatically get a server name in a terminal. Solution: Add the --enable-autoservername flag to configure. (Cimbali, closes #2317)
2017-11-02patch 8.0.1256: typo in configure variable vim_cv_tgentv8.0.1256Bram Moolenaar
Problem: Typo in configure variable vim_cv_tgent. (Matthieu Guillard) Solution: Rename the variable. (closes #2281)
2017-10-28patch 8.0.1236: Mac features are confusingv8.0.1236Bram 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 buildv8.0.1235Bram 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 numberv8.0.1185Bram 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 CFLAGSv8.0.1156Bram 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 Perlv8.0.1111Bram Moolenaar
Problem: Syntax error in configure when using Perl. Solution: Add missing quote
2017-09-14patch 8.0.1110: FORTIFY_SOURCE from Perl causes problemsv8.0.1110Bram 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 defaultv8.0.1050Bram 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 wrongv8.0.0729Bram 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 supportv8.0.0693Bram 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 neededv8.0.0620Bram 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 skippedv8.0.0587Bram 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"v8.0.0576Bram 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 jobsv8.0.0570Bram 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 FreeBSDv8.0.0464Bram 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 systemsv8.0.0445Bram Moolenaar
Problem: Getpgid is not supported on all systems. Solution: Add a configure check.
2017-03-09patch 8.0.0434: clang version not correctly detectedv8.0.0434Bram Moolenaar
Problem: Clang version not correctly detected. Solution: Adjust the configure script. (Kazunobu Kuriyama)
2016-12-09patch 8.0.0130v8.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.0109v8.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.0082v8.0.0082Bram Moolenaar
Problem: Extension for configure should be ".ac". Solution: Rename configure.in to configure.ac. (James McCoy, closes #1173)