Require gawk in maintainer mode
authorRoss Burton <ross.burton@intel.com>
Wed, 4 Jul 2018 11:11:07 +0000 (12:11 +0100)
committerMark Wielaard <mark@klomp.org>
Thu, 5 Jul 2018 18:09:30 +0000 (20:09 +0200)
gawk is required to build known_dwarf.h, so check for it in configure.ac.

Signed-off-by: Ross Burton <ross.burton@intel.com>
ChangeLog
configure.ac

index 696f31e..45418a0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2018-07-04  Ross Burton <ross.burton@intel.com>
+
+       * configure.ac: Check for gawk.
+
 2018-06-11  Mark Wielaard  <mark@klomp.org>
 
        * configure.ac: Set version to 0.172.
index 1cf6245..a3b2993 100644 (file)
@@ -618,6 +618,10 @@ if test "x$enable_maintainer_mode" = xyes; then
   if test "$HAVE_BISON" = "no"; then
     AC_MSG_ERROR([bison needed in maintainer mode])
   fi
+  AC_CHECK_PROG(HAVE_GAWK, gawk, yes, no)
+  if test "$HAVE_GAWK" = "no"; then
+    AC_MSG_ERROR([gawk needed in maintainer mode])
+  fi
 else
   if test ! -f ${srcdir}/libdw/known-dwarf.h; then
     AC_MSG_ERROR([No libdw/known-dwarf.h. configure --enable-maintainer-mode])