diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-01-06 14:56:33 -0500 |
---|---|---|
committer | Peter Hutterer <peter.hutterer@who-t.net> | 2013-01-07 07:49:40 +1000 |
commit | c50fc3720d253f7c38634647b3fed4e270bd36df (patch) | |
tree | 0759fad08b43607bae63dcda7f712248fddcee39 | |
parent | f44787e17494582f865e6a7abd0f29f4e3ce4cbc (diff) |
use newer config headers macro
With newer automake, it throws an error:
configure.ac:5: error: 'AM_CONFIG_HEADER': this macro is obsolete.
You should use the 'AC_CONFIG_HEADERS' macro instead.
The newer macro has been around a long time, so there's no need to
worry about backwards compat here.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index ebf657f..9980c5a 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.57]) AC_INIT(evtest,[1.30], [https://bugzilla.freedesktop.org/enter_bug.cgi?product=evtest], evtest) AM_INIT_AUTOMAKE([foreign dist-bzip2]) -AM_CONFIG_HEADER(config.h) +AC_CONFIG_HEADERS(config.h) AC_PROG_CC AC_PROG_INSTALL |