From: Daniel Elstner Date: Sat, 22 Aug 2015 18:58:11 +0000 (+0200) Subject: Build: Place Autoconf macros into m4/ directory X-Git-Tag: libsigrok-0.4.0~414 X-Git-Url: http://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=ea1d5351455e68ae967f48956b980f9b185ddf53 Build: Place Autoconf macros into m4/ directory This separates the M4 macros from the other cruft in autostuff/ to prepare for the introduction of custom macro files. --- diff --git a/Makefile.am b/Makefile.am index a46bed5d..b9ac8d84 100644 --- a/Makefile.am +++ b/Makefile.am @@ -18,7 +18,7 @@ ## along with this program. If not, see . ## -ACLOCAL_AMFLAGS = -I autostuff +ACLOCAL_AMFLAGS = -I m4 local_includes = -Iinclude -I$(srcdir)/include -I$(srcdir)/src -I. if BINDINGS_CXX diff --git a/configure.ac b/configure.ac index 173f3444..97337fca 100644 --- a/configure.ac +++ b/configure.ac @@ -30,7 +30,7 @@ AC_INIT([libsigrok], [sr_package_version_major.sr_package_version_minor.sr_packa [sigrok-devel@lists.sourceforge.net], [libsigrok], [http://www.sigrok.org]) AC_CONFIG_HEADERS([config.h include/libsigrok/version.h]) -AC_CONFIG_MACRO_DIR([autostuff]) +AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([autostuff]) # We require at least automake 1.11 (needed for 'silent rules').