diff options
| author | 2018-02-07 13:54:29 +0100 | |
|---|---|---|
| committer | 2018-02-07 13:54:29 +0100 | |
| commit | 632e1e3da4342a12319e4dac58253304ea5029ed (patch) | |
| tree | 66fd84b5d0776a144e4f6d7f446243c2c7d3667f | |
| parent | eventloop/epoll_pollops.c: zero epoll struct before use (diff) | |
| download | libmowgli-2-master.tar.gz libmowgli-2-master.tar.bz2 libmowgli-2-master.zip | |
According to [1], this is the recommended way of handling local macros.
For some packagers, using the previous way broke autoreconf.
[1]: <https://www.gnu.org/software/automake/manual/html_node/Local-Macros.html>
| -rwxr-xr-x | autogen.sh | 2 | ||||
| -rw-r--r-- | configure.ac | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -78,7 +78,7 @@ parse_options "$@" cd $TOP_DIR -run_or_die $ACLOCAL -I m4 +run_or_die $ACLOCAL run_or_die $AUTOHEADER run_or_die $AUTOCONF diff --git a/configure.ac b/configure.ac index dfebb14..36095e2 100644 --- a/configure.ac +++ b/configure.ac @@ -5,6 +5,7 @@ AC_PREREQ([2.69]) AC_INIT([libmowgli-2],[2.1.3],[https://github.com/atheme/libmowgli-2]) AC_CONFIG_SRCDIR([src]) AC_CONFIG_HEADER([src/libmowgli/platform/autoconf.h]) +AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_HOST AC_CANONICAL_TARGET |
