summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac.in9
2 files changed, 7 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index 90910ce0..25c90ef1 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,3 +1,5 @@
+ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
+
SUBDIRS = \
libxfsm \
doc \
diff --git a/configure.ac.in b/configure.ac.in
index d3f5d1f4..386409c1 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -18,20 +18,21 @@ m4_define([xfsm_debug_default], [ifelse(xfsm_version_tag(), [git], [yes], [minim
m4_define([intltool_minimum_version], [0.31])
dnl Initialize autoconf
-AC_COPYRIGHT([Copyright (c) 2003-2014
+AC_COPYRIGHT([Copyright (c) 2003-2019
The Xfce development team. All rights reserved.
Written for Xfce by Benedikt Meurer <benny@xfce.org>.])
-AC_INIT([xfce4-session], [xfsm_version], [http://bugs.xfce.org/])
+AC_INIT([xfce4-session], [xfsm_version], [https://bugzilla.xfce.org/])
AC_PREREQ([2.60])
AC_REVISION([$Id$])
AC_PROG_MAKE_SET()
dnl Initialize automake
-AM_INIT_AUTOMAKE([1.8 dist-bzip2 tar-ustar no-dist-gzip])
+AM_INIT_AUTOMAKE([1.11 dist-bzip2 tar-ustar no-dist-gzip])
AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_MACRO_DIRS([m4])
AM_MAINTAINER_MODE()
-m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+AM_SILENT_RULES([yes])
dnl Set helper path prefix
AC_ARG_WITH([helper-path-prefix],