summaryrefslogtreecommitdiff
path: root/src/auto
Commit message (Collapse)AuthorAgeFilesLines
* patch 9.0.0108: configure check for timer_create may give wrong errorv9.0.0108Bram Moolenaar2022-07-301-2/+4
| | | | | Problem: Configure check for timer_create may give wrong error. Solution: Give a warning instead of an error.
* patch 9.0.0103: if running configure with cached results -lrt may be missingv9.0.0103Bram Moolenaar2022-07-281-35/+50
| | | | | | Problem: If running configure with cached results -lrt may be missing. Solution: Use two cache variables, one without and one with -lrt. (closes #10799) Swap checks to avoid adding -lrt unnecessarily.
* patch 9.0.0098: missing include file in timer_create configure checkv9.0.0098Bram Moolenaar2022-07-281-3/+12
| | | | | Problem: missing include file in timer_create configure check. Solution: Inlucde stdlib.h.
* patch 9.0.0065: cross-compiling doesn't work because of timer_create checkv9.0.0065Richard Purdie2022-07-241-13/+20
| | | | | Problem: Cross-compiling doesn't work because of timer_create check. Solution: Use AC_CACHE_CHECK(). (Richard Purdie, closes #10777)
* patch 9.0.0023: on Solaris timer_create() exists but does not workv9.0.0023Bram Moolenaar2022-07-021-9/+27
| | | | | | Problem: On Solaris timer_create() exists but does not work. Solution: Adjust the configure check to run the test program. (closes #10647)
* patch 8.2.5135: running configure gives warnings for main() return typev8.2.5135Bram Moolenaar2022-06-191-13/+13
| | | | | Problem: Running configure gives warnings for main() return type. Solution: Specify "int" return type. Avoid a few more warnings.
* patch 8.2.5131: timeout implementation is not optimalv8.2.5131Bram Moolenaar2022-06-191-2/+4
| | | | | | Problem: Timeout implementation is not optimal. Solution: Further improvements for timeouts. Add a test for searchpair() timeout. (partly by Paul Ollis)
* patch 8.2.5061: C89 requires signal handlers to return voidv8.2.5061Bram Moolenaar2022-06-051-42/+0
| | | | | Problem: C89 requires signal handlers to return void. Solution: Drop RETSIGTYPE and hard-code a void return value.
* patch 8.2.5060: running configure failsv8.2.5060Bram Moolenaar2022-06-051-2/+1
| | | | | Problem: Running configure fails. Solution: Remove line break.
* patch 8.2.5059: autoconf 2.71 produces many obsolete warningsv8.2.5059Bram Moolenaar2022-06-051-7/+17
| | | | | | Problem: Autoconf 2.71 produces many obsolete warnings. Solution: Replace obsolete macros with non-obsolete ones, where the functionality does not change. (issue #10528)
* patch 8.2.5057: using gettimeofday() for timeout is very inefficientv8.2.5057Paul Ollis2022-06-051-18/+76
| | | | | Problem: Using gettimeofday() for timeout is very inefficient. Solution: Set a platform dependent timer. (Paul Ollis, closes #10505)
* patch 8.2.4686: configure doesn't find the Motif library with Cygwinv8.2.4686Kelvin Lee2022-04-041-2/+2
| | | | | Problem: Configure doesn't find the Motif library with Cygwin. Solution: Check for libXm.dll.a. (Kelvin Lee, closes #10077)
* patch 8.2.4549: cannot build with Motif and editresv8.2.4549Bram Moolenaar2022-03-121-1/+1
| | | | | Problem: Cannot build with Motif and editres. (Tony Mechelynck) Solution: Fix configure mistake.
* patch 8.2.4547: the neXTaw GUI is old and does not work wellv8.2.4547Bram Moolenaar2022-03-111-65/+5
| | | | | | Problem: The neXTaw GUI is old and does not work well. Solution: Remove the neXTaw GUI from configure to find out who still wants support for this GUI.
* patch 8.2.4527: the Athena GUI is old and does not work wellv8.2.4527Bram Moolenaar2022-03-081-77/+19
| | | | | | Problem: The Athena GUI is old and does not work well. Solution: Remove the Athena GUI from configure to find out who still wants support for this GUI.
* patch 8.2.4129: building with +sound but without +eval failsv8.2.4129Bram Moolenaar2022-01-181-10/+22
| | | | | Problem: Building with +sound but without +eval fails. (Dominique Pellé) Solution: Disable canberra in tiny and small build. (closes #9548)
* patch 8.2.4039: the xdiff library is linked in even when not usedv8.2.4039Bram Moolenaar2022-01-081-0/+15
| | | | | Problem: The xdiff library is linked in even when not used. Solution: Use configure to decide whether xdiff object files are included.
* patch 8.2.3922: cannot build with dynamic Ruby 3.1v8.2.3922ichizok2021-12-281-0/+12
| | | | | | Problem: Cannot build with dynamic Ruby 3.1. Solution: Add "_EXTRA" variables for CI. Add missing functions. (Ozaki Kiichi, closes #9420)
* patch 8.2.3800: when cross compiling the output of "uname" cannot be setv8.2.3800Bram Moolenaar2021-12-131-22/+55
| | | | | | Problem: When cross compiling the output of "uname" cannot be set. (Ben Reeves) Solution: Use cache variables. (closes #9338)
* patch 8.2.3620: memory leak reported in libtlibv8.2.3620Bram Moolenaar2021-11-191-0/+29
| | | | | | Problem: Memory leak reported in libtlib. Solution: Call del_curterm() when cleaning up memory. Rename term.h to termdefs.h to avoid a name clash.
* patch 8.2.3510: changes are only detected with one second accuracyv8.2.3510Leah Neukirchen2021-10-141-0/+46
| | | | | | Problem: Changes are only detected with one second accuracy. Solution: Use the nanosecond time if possible. (Leah Neukirchen, closes #8873, closes #8875)
* patch 8.2.3483: #ifdef for using sysinfo() is incompletev8.2.3483Bram Moolenaar2021-10-061-2/+3
| | | | | | Problem: #ifdef for using sysinfo() is incomplete. Solution: Also check for HAVE_SYSINFO. Make autoconf check use TRY_LINK. (closes #8952)
* patch 8.2.3420: _REENTRANT defined more than oncev8.2.3420Christian Brabandt2021-09-091-2/+4
| | | | | Problem: _REENTRANT defined more than once. Solution: Fix configure script. (Christian Brabandt, closes #8852)
* patch 8.2.3406: on some systems tests fail without _REENTRANTv8.2.3406Bram Moolenaar2021-09-061-0/+4
| | | | | | Problem: On some systems tests fail without _REENTRANT. (Elimar Riesebieter) Solution: Add -D_REENTRANT in configure. (closes #7402)
* patch 8.2.3037: configure reports libcanberra when checking for libsodiumv8.2.3037ichizok2021-06-231-2/+2
| | | | | Problem: Configure reports libcanberra when checking for libsodium. Solution: Adjust the message. (Ozaki Kiichi, closes #8435)
* patch 8.2.3022: available encryption methods are not strong enoughv8.2.3022Christian Brabandt2021-06-201-0/+66
| | | | | | Problem: Available encryption methods are not strong enough. Solution: Add initial support for xchaha20. (Christian Brabandt, closes #8394)
* patch 8.2.2970: Python configure check uses deprecated commandv8.2.2970Zdenek Dohnal2021-06-101-1/+4
| | | | | | Problem: Python configure check uses deprecated command. Solution: Use sysconfig instead of distutils if possible. (Zdenek Dohnal, closes #8354)
* patch 8.2.2876: configure cannot detect Python 3.10v8.2.2876Bram Moolenaar2021-05-211-1/+1
| | | | | Problem: Configure cannot detect Python 3.10. Solution: Use sys.version_info. (closes #8233)
* patch 8.2.2852: configure can add --as-needed a second timev8.2.2852Natanael Copa2021-05-151-1/+3
| | | | | | Problem: Configure can add --as-needed a second time. Solution: Only add --as-needed if not already there. (Natanael Copa, closes #8189, closes #8181)
* patch 8.2.2794: Linux users don't know how to get ncursesv8.2.2794Bram Moolenaar2021-04-211-0/+1
| | | | | Problem: Linux users don't know how to get ncurses. Solution: Add the name of the package. (closes #8132)
* patch 8.2.2701: order of removing FORTIFY_SOURCE is wrongv8.2.2701Bram Moolenaar2021-04-031-2/+2
| | | | | Problem: Order of removing FORTIFY_SOURCE is wrong. Solution: Use the more specific pattern first.
* patch 8.2.2691: autoconf may mess up compiler flagsv8.2.2691Bram Moolenaar2021-04-021-2/+2
| | | | | | Problem: Autoconf may mess up compiler flags. Solution: Handle removing FORTIFY_SOURCE a bit better. (Vladimir Lomov, closes #8049)
* patch 8.2.2586: process id may be invalidv8.2.2586Bram Moolenaar2021-03-101-0/+29
| | | | | | Problem: Process id may be invalid. Solution: Use sysinfo.uptime to check for recent reboot. (suggested by Hugo van der Sanden, closes #7947)
* patch 8.2.2550: signal stack size is wrong with latest glibc 2.34v8.2.2550Bram Moolenaar2021-02-251-0/+24
| | | | | | Problem: Signal stack size is wrong with latest glibc 2.34. Solution: Use sysconf(_SC_SIGSTKSZ) if available. (Zdenek Dohnal, closes #7895)
* patch 8.2.2442: automatic GUI selection does not check for GTK 3v8.2.2442Bram Moolenaar2021-01-311-0/+9
| | | | | | Problem: Automatic GUI selection does not check for GTK 3. Solution: Make SKIP_GTK3 empty for automatic GUI support. Set SKIP_GTK3 to YES when checking for GTK2.
* patch 8.2.2437: deprecation warnings with default configurationv8.2.2437Bram Moolenaar2021-01-311-1/+1
| | | | | Problem: Deprecation warnings with default configuration. Solution: Add -Wno-deprecated-declarations.
* patch 8.2.2431: warning for -fno-strength-reduce with Clang 11v8.2.2431Bram Moolenaar2021-01-301-2/+2
| | | | | Problem: Warning for -fno-strength-reduce with Clang 11. Solution: Adjust check for clang version number.
* patch 8.2.2337: configure test for GTK only says "no"v8.2.2337Bram Moolenaar2021-01-121-0/+4
| | | | | Problem: Configure test for GTK only says "no". (Harm te Hennepe) Solution: Hint that a -def package is needed. (closes #5229)
* patch 8.2.2241: Build with Ruby and clang may failv8.2.2241Bram Moolenaar2020-12-281-0/+3
| | | | | Problem: Build with Ruby and clang may fail. Solution: Adjust congigure and sed script. (Ozaki Kiichi, closes #7566)
* patch 8.2.2196: :version output has extra spaces in compile and link commandv8.2.2196Bram Moolenaar2020-12-231-2/+2
| | | | | Problem: :version output has extra spaces in compile and link command. Solution: Adjust QUOTESED. (closes #7505)
* patch 8.2.2151: $dir not expanded when configure checks for moonjitv8.2.2151Bram Moolenaar2020-12-171-1/+1
| | | | | Problem: $dir not expanded when configure checks for moonjit. Solution: Use double quotes instead of single quotes. (closes #7478)
* patch 8.2.2104: build problem with Ruby 2.7v8.2.2104Bram Moolenaar2020-12-061-2/+1
| | | | | Problem: Build problem with Ruby 2.7. Solution: Adjust function declarations. (Ozaki Kiichi, closes #7430)
* patch 8.2.2089: libvterm test fails to build on Macv8.2.2089Bram Moolenaar2020-12-041-0/+2
| | | | | | Problem: Libvterm test fails to build on Mac. Solution: Adjust configure to remove a space between -L and the path that follows.
* patch 8.2.2056: configure fails when building with implicit-function-declarationv8.2.2056Bram Moolenaar2020-11-261-1/+9
| | | | | | | Problem: Configure fails when building with the "implicit-function-declaration" error enabled, specifically on Mac. Solution: Declear the functions like in the source code. (suggestion by Clemens Lang, closes #7380)
* patch 8.2.1792: Configure does not recognize Racket 6.1+v8.2.1792Bram Moolenaar2020-10-031-0/+3
| | | | | Problem: Configure does not recognize Racket 6.1+. Solution: Add a check for "rktio". (closes #7062)
* patch 8.2.1597: the channel source file is too bigv8.2.1597Bram Moolenaar2020-09-051-2/+2
| | | | | Problem: The channel source file is too big. Solution: Move job related code to a new source file.
* patch 8.2.1570: configure check for dirfd() does not work on HPUXv8.2.1570Bram Moolenaar2020-09-021-4/+6
| | | | | Problem: Configure check for dirfd() does not work on HPUX. (Michael Osipov) Solution: Use AC_TRY_LINK instead of AC_TRY_COMPILE. (closes #6838)
* patch 8.2.1442: outdated references to the Mac Carbon GUIv8.2.1442Bram Moolenaar2020-08-131-2/+1
| | | | | Problem: Outdated references to the Mac Carbon GUI. Solution: Remove or update references. (Yee Cheng Chin, closes #6703)
* patch 8.2.1424: Mac build failsv8.2.1424Bram Moolenaar2020-08-111-0/+17
| | | | | | Problem: Mac build fails. Solution: Adjust configure to not fall back to Athena. Adjust some other files.
* patch 8.2.1422: the Mac GUI implementation is outdatedv8.2.1422Bram Moolenaar2020-08-111-105/+13
| | | | | | | Problem: The Mac GUI implementation is outdated and probably doesn't even work. Solution: Remove the Mac GUI code. The MacVim project provides the supported Vim GUI version.