diff options
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | configure.ac | 1 | ||||
-rw-r--r-- | m4/ax_define_dir.m4 (renamed from acinclude.m4) | 4 |
3 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 1063365..254dc72 100644 --- a/Makefile.am +++ b/Makefile.am @@ -24,6 +24,8 @@ bin_PROGRAMS = xload AM_CFLAGS = $(CWARNFLAGS) $(XLOAD_CFLAGS) xload_LDADD = $(XLOAD_LIBS) +ACLOCAL_AMFLAGS = -I m4 + xload_SOURCES = \ get_load.c \ get_rload.c \ diff --git a/configure.ac b/configure.ac index 5deb5d3..4614434 100644 --- a/configure.ac +++ b/configure.ac @@ -23,6 +23,7 @@ dnl Process this file with autoconf to create configure. AC_PREREQ([2.57]) AC_INIT(xload,[1.0.2], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xload) +AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE diff --git a/acinclude.m4 b/m4/ax_define_dir.m4 index 8e80584..b74d155 100644 --- a/acinclude.m4 +++ b/m4/ax_define_dir.m4 @@ -1,5 +1,5 @@ # =========================================================================== -# http://www.nongnu.org/autoconf-archive/ax_define_dir.html +# http://www.gnu.org/software/autoconf-archive/ax_define_dir.html # =========================================================================== # # SYNOPSIS @@ -30,6 +30,8 @@ # and this notice are preserved. This file is offered as-is, without any # warranty. +#serial 6 + AU_ALIAS([AC_DEFINE_DIR], [AX_DEFINE_DIR]) AC_DEFUN([AX_DEFINE_DIR], [ prefix_NONE= |