Build Fix -- compatibility issue with newer autoconf master
authorSteve Youngs <steve@sxemacs.org>
Sat, 25 Sep 2021 03:27:51 +0000 (13:27 +1000)
committerSteve Youngs <steve@sxemacs.org>
Sat, 25 Sep 2021 03:27:51 +0000 (13:27 +1000)
commit66cd3621bffecf6208aefb78b0a388c9fc6717c8
tree9e7eee11bd7d37d670cdffb970b7af561afd5732
parent56e1696c05484849c12dd4d3a5c3c015c895ee4a
Build Fix -- compatibility issue with newer autoconf

Whan running ./autogen.sh it failed on _SXE_CHECK_LT2, it complained that
AC_CONFIG_MACRO_DIR can only be called once.

Using AC_CONFIG_MACRO_DIRS instead fixes the issue as that particular
macro is designed to be called multiple times.

* configure.ac: Use AC_CONFIG_MACRO_DIRS instead of
AC_CONFIG_MACRO_DIR.

* m4/sxe-libtool.m4 (_SXE_CHECK_LT2): Ditto.

Reported-by: Arthur Miller <arthur.miller@live.com>:
Signed-off-by: Steve Youngs <steve@sxemacs.org>
configure.ac
m4/sxe-libtool.m4