From 051157043436ac11f5414249e50ba69da9d7334f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Tue, 15 Jan 2013 18:42:47 +0200 Subject: rename configure.in to configure.ac to be liked by autoconf 1.12 aclocal-1.12: warning: autoconf input should be named 'configure.ac', not 'configure.in' --- autogen.sh | 2 +- configure.ac | 24 ++++++++++++++++++++++++ configure.in | 24 ------------------------ 3 files changed, 25 insertions(+), 25 deletions(-) create mode 100644 configure.ac delete mode 100644 configure.in diff --git a/autogen.sh b/autogen.sh index 7016182..59fed49 100755 --- a/autogen.sh +++ b/autogen.sh @@ -8,7 +8,7 @@ REQUIRED_AUTOMAKE_VERSION=1.9 PKG_NAME="mate-common" -(test -f $srcdir/configure.in) || { +(test -f $srcdir/configure.ac) || { echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" echo " top-level $PKG_NAME directory" exit 1 diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..e89416f --- /dev/null +++ b/configure.ac @@ -0,0 +1,24 @@ +AC_PREREQ(2.54) +AC_INIT([mate-common], [1.5.1], [https://github.com/mate-desktop/mate-common]) + +AC_CONFIG_SRCDIR([macros/mate-autogen]) + +AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-bzip2]) + +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])]) + +if test -z "$enable_maintainer_mode"; then + enable_maintainer_mode=yes +fi + +AM_MAINTAINER_MODE([enable]) + +AC_CONFIG_FILES([ +Makefile +macros/Makefile +doc-build/Makefile +doc-build/mate-doc-common +doc/Makefile +]) + +AC_OUTPUT diff --git a/configure.in b/configure.in deleted file mode 100644 index e89416f..0000000 --- a/configure.in +++ /dev/null @@ -1,24 +0,0 @@ -AC_PREREQ(2.54) -AC_INIT([mate-common], [1.5.1], [https://github.com/mate-desktop/mate-common]) - -AC_CONFIG_SRCDIR([macros/mate-autogen]) - -AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-bzip2]) - -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])]) - -if test -z "$enable_maintainer_mode"; then - enable_maintainer_mode=yes -fi - -AM_MAINTAINER_MODE([enable]) - -AC_CONFIG_FILES([ -Makefile -macros/Makefile -doc-build/Makefile -doc-build/mate-doc-common -doc/Makefile -]) - -AC_OUTPUT -- cgit v1.2.1