]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
mention prototypes more prominently in NEWS
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 28 Mar 2023 01:10:36 +0000 (18:10 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 28 Mar 2023 01:12:47 +0000 (18:12 -0700)
* NEWS: Mention the function prototype issue early.
(From a suggestion by Zack Weinberg.)

NEWS

diff --git a/NEWS b/NEWS
index cf01ee210092052f247263a19e0d2d4cbcb1993a..d64648c6f6e3239ec35d76ec4f7fd6896ac99434 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -4,6 +4,14 @@ GNU Autoconf NEWS - User visible changes.
 
 ** Backward incompatibilities
 
+*** AC_CHECK_FUNC and similar macros now use function prototypes.
+  AC_CHECK_FUNC and and similar macros now use C declarations with
+  function prototypes, a feature introduced in C89.  The new approach
+  should work better with C23, which removed the non-prototyped K&R
+  style that AC_CHECK_FUNC previously used.  However, this change
+  means Autoconf no longer supports pre-1989 C compilers, as they do
+  not support function prototypes.
+
 *** Autoconf now requires perl 5.10 (2007) or later.
   Generated 'configure' scripts continue to run without perl.