summaryrefslogtreecommitdiffstats
path: root/src/auto
AgeCommit message (Collapse)Author
2023-05-06patch 9.0.1517: MacOS: configure removes -O2 from $CFLAGSv9.0.1517Rose
Problem: MacOS: configure removes -O2 from $CFLAGS. Solution: Only adjust $CFLAGS for gcc. (closes #12351)
2023-04-13patch 9.0.1450: MacOS: building fails if clock_gettime() is not availablev9.0.1450Bram Moolenaar
Problem: MacOS: building fails if clock_gettime() is not available. Solution: Add a configure check for clock_gettime(). (closes #12242)
2023-04-12patch 9.0.1445: openSUSE: configure doesn't find the Motif libraryv9.0.1445Bram Moolenaar
Problem: openSUSE: configure doesn't find the Motif library. (Tony Mechelynck) Solution: Also search in /usr/lib64.
2023-04-05patch 9.0.1441: MacOS: Python 3 using framework do not set dll name properlyv9.0.1441Yee Cheng Chin
Problem: MacOS: Python 3 using framework do not set dll name properly. Solution: Use the framework prefix. (Yee Cheng Chin, closes #12189)
2023-03-31patch 9.0.1433: on some systems the Lua library is not foundv9.0.1433Bram Moolenaar
Problem: On some systems the Lua library is not found. Solution: Check if a subdirectory for Lua exists. (closes #4475)
2023-01-18patch 9.0.1219: handling of FORTIFY_SOURCE flags doesn't match Fedora usagev9.0.1219Zdenek Dohnal
Problem: Handling of FORTIFY_SOURCE flags doesn't match Fedora usage. Solution: Adjust the "sed" patterns. (Zdenek Dohnal, closes #11847)
2023-01-09patch 9.0.1162: configure does not handle all FORTIFY_SOURCE variantsv9.0.1162Zdenek Dohnal
Problem: Configure does not handle all FORTIFY_SOURCE variants. Solution: Also handle Fedora's default FORTIFY_SOURCE flags. (Zdenek Dohnal, closes #11794)
2022-12-30patch 9.0.1110: build fails on Mac OS X 10.4/10.5v9.0.1110Evan Miller
Problem: Build fails on Mac OS X 10.4/10.5 . Solution: Check if the dispatch/dispatch.h header exists. (Evan Miller, closes #11746)
2022-11-23patch 9.0.0928: using Ruby LDFLAGS may cause build problemsv9.0.0928Zdenek Dohnal
Problem: Using Ruby LDFLAGS may cause build problems. Solution: Do not add Ruby LDFLAGS to Vim's LDFLAGS. (Zdenek Dohnal, closes #11592)
2022-11-05patch 9.0.0834: warning for missing return typev9.0.0834Sam James
Problem: Warning for missing return type. Solution: Add "int". (San James, closes #11496)
2022-10-08patch 9.0.0700: there is no real need for a "big" buildv9.0.0700Martin Tournoij
Problem: There is no real need for a "big" build. Solution: Move common features to "normal" build, less often used features to the "huge" build. (Martin Tournoij, closes #11283)
2022-10-04patch 9.0.0657: too many #ifdefsv9.0.0657Martin Tournoij
Problem: Too many #ifdefs. Solution: Graduate the +cmdwin feature. Now the tiny and small builds are equal, drop the small build. (Martin Tournoij, closes #11268)
2022-09-22patch 9.0.0546: supporting Ruby 1.8 makes code complicatedv9.0.0546K.Takata
Problem: Supporting Ruby 1.8 makes code complicated. Solution: Drop Ruby 1.8 support, it is ancient. (Ken Takata, closes #11195)
2022-09-17patch 9.0.0491: no good reason to build without the float featurev9.0.0491Bram Moolenaar
Problem: No good reason to build without the float feature. Solution: Remove configure check for float and "#ifdef FEAT_FLOAT".
2022-07-30patch 9.0.0108: configure check for timer_create may give wrong errorv9.0.0108Bram Moolenaar
Problem: Configure check for timer_create may give wrong error. Solution: Give a warning instead of an error.
2022-07-28patch 9.0.0103: if running configure with cached results -lrt may be missingv9.0.0103Bram Moolenaar
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.
2022-07-28patch 9.0.0098: missing include file in timer_create configure checkv9.0.0098Bram Moolenaar
Problem: missing include file in timer_create configure check. Solution: Inlucde stdlib.h.
2022-07-24patch 9.0.0065: cross-compiling doesn't work because of timer_create checkv9.0.0065Richard Purdie
Problem: Cross-compiling doesn't work because of timer_create check. Solution: Use AC_CACHE_CHECK(). (Richard Purdie, closes #10777)
2022-07-02patch 9.0.0023: on Solaris timer_create() exists but does not workv9.0.0023Bram Moolenaar
Problem: On Solaris timer_create() exists but does not work. Solution: Adjust the configure check to run the test program. (closes #10647)
2022-06-19patch 8.2.5135: running configure gives warnings for main() return typev8.2.5135Bram Moolenaar
Problem: Running configure gives warnings for main() return type. Solution: Specify "int" return type. Avoid a few more warnings.
2022-06-19patch 8.2.5131: timeout implementation is not optimalv8.2.5131Bram Moolenaar
Problem: Timeout implementation is not optimal. Solution: Further improvements for timeouts. Add a test for searchpair() timeout. (partly by Paul Ollis)
2022-06-05patch 8.2.5061: C89 requires signal handlers to return voidv8.2.5061Bram Moolenaar
Problem: C89 requires signal handlers to return void. Solution: Drop RETSIGTYPE and hard-code a void return value.
2022-06-05patch 8.2.5060: running configure failsv8.2.5060Bram Moolenaar
Problem: Running configure fails. Solution: Remove line break.
2022-06-05patch 8.2.5059: autoconf 2.71 produces many obsolete warningsv8.2.5059Bram Moolenaar
Problem: Autoconf 2.71 produces many obsolete warnings. Solution: Replace obsolete macros with non-obsolete ones, where the functionality does not change. (issue #10528)
2022-06-05patch 8.2.5057: using gettimeofday() for timeout is very inefficientv8.2.5057Paul Ollis
Problem: Using gettimeofday() for timeout is very inefficient. Solution: Set a platform dependent timer. (Paul Ollis, closes #10505)
2022-04-04patch 8.2.4686: configure doesn't find the Motif library with Cygwinv8.2.4686Kelvin Lee
Problem: Configure doesn't find the Motif library with Cygwin. Solution: Check for libXm.dll.a. (Kelvin Lee, closes #10077)
2022-03-12patch 8.2.4549: cannot build with Motif and editresv8.2.4549Bram Moolenaar
Problem: Cannot build with Motif and editres. (Tony Mechelynck) Solution: Fix configure mistake.
2022-03-11patch 8.2.4547: the neXTaw GUI is old and does not work wellv8.2.4547Bram Moolenaar
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.
2022-03-08patch 8.2.4527: the Athena GUI is old and does not work wellv8.2.4527Bram Moolenaar
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.
2022-01-18patch 8.2.4129: building with +sound but without +eval failsv8.2.4129Bram Moolenaar
Problem: Building with +sound but without +eval fails. (Dominique Pellé) Solution: Disable canberra in tiny and small build. (closes #9548)
2022-01-08patch 8.2.4039: the xdiff library is linked in even when not usedv8.2.4039Bram Moolenaar
Problem: The xdiff library is linked in even when not used. Solution: Use configure to decide whether xdiff object files are included.
2021-12-28patch 8.2.3922: cannot build with dynamic Ruby 3.1v8.2.3922ichizok
Problem: Cannot build with dynamic Ruby 3.1. Solution: Add "_EXTRA" variables for CI. Add missing functions. (Ozaki Kiichi, closes #9420)
2021-12-13patch 8.2.3800: when cross compiling the output of "uname" cannot be setv8.2.3800Bram Moolenaar
Problem: When cross compiling the output of "uname" cannot be set. (Ben Reeves) Solution: Use cache variables. (closes #9338)
2021-11-19patch 8.2.3620: memory leak reported in libtlibv8.2.3620Bram Moolenaar
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.
2021-10-14patch 8.2.3510: changes are only detected with one second accuracyv8.2.3510Leah Neukirchen
Problem: Changes are only detected with one second accuracy. Solution: Use the nanosecond time if possible. (Leah Neukirchen, closes #8873, closes #8875)
2021-10-06patch 8.2.3483: #ifdef for using sysinfo() is incompletev8.2.3483Bram Moolenaar
Problem: #ifdef for using sysinfo() is incomplete. Solution: Also check for HAVE_SYSINFO. Make autoconf check use TRY_LINK. (closes #8952)
2021-09-09patch 8.2.3420: _REENTRANT defined more than oncev8.2.3420Christian Brabandt
Problem: _REENTRANT defined more than once. Solution: Fix configure script. (Christian Brabandt, closes #8852)
2021-09-06patch 8.2.3406: on some systems tests fail without _REENTRANTv8.2.3406Bram Moolenaar
Problem: On some systems tests fail without _REENTRANT. (Elimar Riesebieter) Solution: Add -D_REENTRANT in configure. (closes #7402)
2021-06-23patch 8.2.3037: configure reports libcanberra when checking for libsodiumv8.2.3037ichizok
Problem: Configure reports libcanberra when checking for libsodium. Solution: Adjust the message. (Ozaki Kiichi, closes #8435)
2021-06-20patch 8.2.3022: available encryption methods are not strong enoughv8.2.3022Christian Brabandt
Problem: Available encryption methods are not strong enough. Solution: Add initial support for xchaha20. (Christian Brabandt, closes #8394)
2021-06-10patch 8.2.2970: Python configure check uses deprecated commandv8.2.2970Zdenek Dohnal
Problem: Python configure check uses deprecated command. Solution: Use sysconfig instead of distutils if possible. (Zdenek Dohnal, closes #8354)
2021-05-21patch 8.2.2876: configure cannot detect Python 3.10v8.2.2876Bram Moolenaar
Problem: Configure cannot detect Python 3.10. Solution: Use sys.version_info. (closes #8233)
2021-05-15patch 8.2.2852: configure can add --as-needed a second timev8.2.2852Natanael Copa
Problem: Configure can add --as-needed a second time. Solution: Only add --as-needed if not already there. (Natanael Copa, closes #8189, closes #8181)
2021-04-21patch 8.2.2794: Linux users don't know how to get ncursesv8.2.2794Bram Moolenaar
Problem: Linux users don't know how to get ncurses. Solution: Add the name of the package. (closes #8132)
2021-04-03patch 8.2.2701: order of removing FORTIFY_SOURCE is wrongv8.2.2701Bram Moolenaar
Problem: Order of removing FORTIFY_SOURCE is wrong. Solution: Use the more specific pattern first.
2021-04-02patch 8.2.2691: autoconf may mess up compiler flagsv8.2.2691Bram Moolenaar
Problem: Autoconf may mess up compiler flags. Solution: Handle removing FORTIFY_SOURCE a bit better. (Vladimir Lomov, closes #8049)
2021-03-10patch 8.2.2586: process id may be invalidv8.2.2586Bram Moolenaar
Problem: Process id may be invalid. Solution: Use sysinfo.uptime to check for recent reboot. (suggested by Hugo van der Sanden, closes #7947)
2021-02-25patch 8.2.2550: signal stack size is wrong with latest glibc 2.34v8.2.2550Bram Moolenaar
Problem: Signal stack size is wrong with latest glibc 2.34. Solution: Use sysconf(_SC_SIGSTKSZ) if available. (Zdenek Dohnal, closes #7895)
2021-01-31patch 8.2.2442: automatic GUI selection does not check for GTK 3v8.2.2442Bram Moolenaar
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.
2021-01-31patch 8.2.2437: deprecation warnings with default configurationv8.2.2437Bram Moolenaar
Problem: Deprecation warnings with default configuration. Solution: Add -Wno-deprecated-declarations.