]> git.ipfire.org Git - thirdparty/make.git/commitdiff
* NEWS: [SV 58435] Document minimum C compiler version requirement
authorPaul Smith <psmith@gnu.org>
Sun, 19 Jul 2020 18:07:01 +0000 (14:07 -0400)
committerPaul Smith <psmith@gnu.org>
Sun, 19 Jul 2020 22:59:06 +0000 (18:59 -0400)
* configure.ac: Require c99 via AC_PROG_CC_C99

NEWS
configure.ac

diff --git a/NEWS b/NEWS
index 81b5726a09464ed758bd8cb60c8bb9ca1822bf6f..95909582c62e73500030efbc9b697ef8c93c618e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -28,6 +28,12 @@ https://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=109&se
   rebuilt is the same order in which make processed them, and this is defined
   to be true in the GNU make manual.
 
+* WARNING: New build requirement
+  GNU make utilizes facilities from GNU Gnulib: Gnulib requires certain C99
+  features in the C compiler and so these features are required by GNU make:
+  https://www.gnu.org/software/gnulib/manual/html_node/C99-features-assumed.html
+  The configure script should verify the compiler has these features.
+
 * GNU Make can now be built for MS-Windows using the Tiny C tcc compiler.
 
 \f
index f0315a1255adee8fba3a158d9870c9fcaea3b3bc..960991c61393ec318e41450d1ee8a3fe6cf865ed 100644 (file)
@@ -38,6 +38,9 @@ AM_INIT_AUTOMAKE([1.16.1 foreign -Werror -Wall])
 AC_USE_SYSTEM_EXTENSIONS
 AC_PROG_CC
 
+# GNU Gnulib requires C99, so I guess we might as well too...
+AC_PROG_CC_C99
+
 # Configure gnulib
 gl_EARLY
 gl_INIT