summaryrefslogtreecommitdiffstats
path: root/src/auto
AgeCommit message (Collapse)Author
2018-09-13patch 8.1.0379: build dependencies are incompletev8.1.0379Bram Moolenaar
Problem: Build dependencies are incomplete. Solution: Update the build dependencies, mainly for xdiff. Adjust object directory for libvterm and xdiff.
2018-09-12patch 8.1.0371: argument types for select() may be wrongv8.1.0371Bram Moolenaar
Problem: Argument types for select() may be wrong. Solution: Use a configure macro. (Tobias Ulmer)
2018-08-04patch 8.1.0237: Ruby on Cygwin doesn't always workv8.1.0237Bram Moolenaar
Problem: Ruby on Cygwin doesn't always work. Solution: Use LIBRUBY_SO if LIBRUBY_ALIASES isn't set. (Ken Takata)
2018-07-27patch 8.1.0215: no error if configure --with-x cannot configure Xv8.1.0215Bram Moolenaar
Problem: No error if configure --with-x cannot configure X. Solution: Check that when --with-x is used X can be configured.
2018-05-13patch 8.0.1832: cannot use :unlet for an environment variablev8.0.1832Bram Moolenaar
Problem: Cannot use :unlet for an environment variable. Solution: Make it work. Use unsetenv() if available. (Ken Takata, closes #2855)
2018-05-12patch 8.0.1826: configure uses old compiler flagv8.0.1826Bram Moolenaar
Problem: Configure uses old compiler flag. Solution: Remove _DARWIN_C_SOURCE. (Kazunobu Kuriyama)
2018-04-19patch 8.0.1736: check for C99 features is incompletev8.0.1736Bram Moolenaar
Problem: Check for C99 features is incomplete. Solution: Use AC_PROG_CC_C99 and when C99 isn't fully supported check the features we need. (James McCoy, closes #2820)
2018-04-18patch 8.0.1735: flexible array member feature not supported by HP-UXv8.0.1735Bram Moolenaar
Problem: Flexible array member feature not supported by HP-UX. (John Marriott) Solution: Do not use the flexible array member feature of C99.
2018-04-17patch 8.0.1730: no configure check for the used C99 featuresv8.0.1730Bram Moolenaar
Problem: No configure check for the used C99 features. Solution: Add a compilation check. Tentatively document C99 features.
2018-04-15patch 8.0.1719: cannot specify which Python executable configure should usev8.0.1719Bram Moolenaar
Problem: Cannot specify which Python executable configure should use. Solution: Add --with-python-command and --with-python3-command.
2018-04-15patch 8.0.1717: C89 check causes too much troublev8.0.1717Bram Moolenaar
Problem: C89 check causes too much trouble. Solution: Remove enforcing C89 for now.
2018-04-14patch 8.0.1710: building with Ruby failsv8.0.1710Bram Moolenaar
Problem: Building with Ruby fails. Solution: Don't add -ansi when building with Ruby.
2018-04-14patch 8.0.1709: some non-C89 code may slip throughv8.0.1709Bram Moolenaar
Problem: Some non-C89 code may slip through. Solution: Enforce C89 in configure. Fix detected problems. (James McCoy, closes #2735)
2018-04-11patch 8.0.1699: leftover stuff for Python 1.4v8.0.1699Bram Moolenaar
Problem: Leftover stuff for Python 1.4. Solution: Remove outdated Python 1.4 stuff. (Naoki Inada, closes #2794)
2018-04-10patch 8.0.1692: Python may not work when using statically linked libraryv8.0.1692Bram Moolenaar
Problem: Python may not work when using statically linked library . Solution: Do not define PYTHON_HOME and PYTHON3_HOME in configure if the Python library is linked statically.
2018-04-10patch 8.0.1686: Python does not work when configuring with specific dirv8.0.1686Bram Moolenaar
Problem: Python does not work when configuring with specific dir. (Rajdeep) Solution: Do define PYTHON_HOME and PYTHON3_HOME in configure if the Python config dir was specified.
2018-04-10patch 8.0.1683: Python upgrade breaks Vim when defining PYTHON_HOMEv8.0.1683Bram Moolenaar
Problem: Python upgrade breaks Vim when defining PYTHON_HOME. Solution: Do not define PYTHON_HOME and PYTHON3_HOME in configure. (Naoki Inada, closes #2787)
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-10-18patch 8.0.0045v8.0.0045Bram Moolenaar
Problem: Calling job_stop() right after job_start() does not work. Solution: Block signals while fork is still busy. (Ozaki Kiichi, closes #1155)
2016-08-14patch 7.4.2210v7.4.2210Bram Moolenaar
Problem: On OSX configure mixes up a Python framework and the Unix layout. Solution: Make configure check properly. (Tim D. Smith, closes #980)
2016-07-26patch 7.4.2105v7.4.2105Bram Moolenaar
Problem: Configure reports default features to be "normal" while it is "huge". Solution: Change the default text.
2016-04-24patch 7.4.1784v7.4.1784Bram Moolenaar
Problem: The termtruecolor feature is enabled differently from many other features. Solution: Enable the termtruecolor feature for the big build, not through configure.
2016-04-21patch 7.4.1770v7.4.1770Bram Moolenaar
Problem: Cannot use true color in the terminal. Solution: Add the 'guicolors' option. (Nikolai Pavlov)
2016-04-21patch 7.4.1767v7.4.1767Bram Moolenaar
Problem: When installing Vim on a GTK system the icon cache is not updated. Solution: Update the GTK icon cache when possible. (Kazunobu Kuriyama)
2016-04-14patch 7.4.1733v7.4.1733Bram Moolenaar
Problem: "make install" doesn't know about cross-compiling. (Christian Neukirchen) Solution: Add CROSS_COMPILING. (closes #740)
2016-03-11patch 7.4.1537v7.4.1537Bram Moolenaar
Problem: Too many feature flags for pipes, jobs and channels. Solution: Only use FEAT_JOB_CHANNEL.
2016-02-29patch 7.4.1463v7.4.1463Bram Moolenaar
Problem: Configure doesn't find isinf() and isnan() on some systems. Solution: Use a configure check that includes math.h.