configure.ac: Run autoupdate
Deal with the following warning:
```
configure.ac:25: warning: The macro `AC_HELP_STRING' is obsolete.
configure.ac:25: You should run autoupdate.
```
Change-Id: Ia9f5431a9a4d6b5d204c6f6acd8eb71ab944505c
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
diff --git a/configure.ac b/configure.ac
index 519083f..bbf1c0a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
# Initialization
-AC_PREREQ([2.69])
-AC_INIT([libmctp], 0.11, [https://github.com/openbmc/libmctp/issues])
+AC_PREREQ([2.71])
+AC_INIT([libmctp],[0.11],[https://github.com/openbmc/libmctp/issues])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIRS([m4])
AM_INIT_AUTOMAKE([subdir-objects -Wall -Werror -Wno-portability foreign dist-xz])
@@ -23,8 +23,7 @@
PKG_INSTALLDIR
AC_ARG_ENABLE([capture],
- [AC_HELP_STRING([--enable-capture],
- [Use libpcap to capture messages and packets])])
+ [AS_HELP_STRING([--enable-capture],[Use libpcap to capture messages and packets])])
AS_IF([test "x$enable_capture" = "xyes"],
[PKG_CHECK_MODULES(pcap, libpcap,
[AC_DEFINE([HAVE_PCAP], [1],