diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-02-08 13:03:29 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-02-08 13:03:29 -0500 |
commit | 817ea36924ca1248672810fd57dd3e337db13401 (patch) | |
tree | 4133ca74e5ef27847dd18b4815075e1d39bd3f2c /configure.in | |
parent | 0a5eb2eb5cd8adc30727787ae7859f20897f79c1 (diff) | |
download | libevent-817ea36924ca1248672810fd57dd3e337db13401.tar.gz |
Use AC_CONFIG_HEADERS in place of AM_CONFIG_HEADERS for autmake 1.13 compat
Patch from cazfi.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 189988a2..09898d27 100644 --- a/configure.in +++ b/configure.in @@ -12,7 +12,7 @@ AC_INIT(event.c) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE(libevent,2.0.21-stable-dev) -AM_CONFIG_HEADER(config.h) +AC_CONFIG_HEADERS(config.h) AC_DEFINE(NUMERIC_VERSION, 0x02001501, [Numeric representation of the version]) dnl Initialize prefix. |