From 8e2e8fc476a2c9088b5735a583b3f082f4a12a19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Tue, 15 Jan 2013 18:41:57 +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 | 25 +++++++++++++++++++++++++ configure.in | 25 ------------------------- 3 files changed, 26 insertions(+), 26 deletions(-) create mode 100644 configure.ac delete mode 100644 configure.in diff --git a/autogen.sh b/autogen.sh index 74675bd..eb84a6f 100755 --- a/autogen.sh +++ b/autogen.sh @@ -6,7 +6,7 @@ test -z "$srcdir" && srcdir=. PKG_NAME="mate-backgrounds" -(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..73e9bd6 --- /dev/null +++ b/configure.ac @@ -0,0 +1,25 @@ +AC_INIT([mate-backgrounds], + [1.5.0], + [http://www.mate-desktop.org]) +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) +AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE([1.9]) + +# Internationalization: +GETTEXT_PACKAGE=mate-backgrounds +AC_SUBST(GETTEXT_PACKAGE) +AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], + ["$GETTEXT_PACKAGE"], [The domain name to use with gettext.]) + +AM_GLIB_GNU_GETTEXT() +IT_PROG_INTLTOOL([0.35.0]) + +AM_MAINTAINER_MODE + +AC_OUTPUT([ +Makefile +abstract/Makefile +desktop/Makefile +nature/Makefile +po/Makefile.in +]) diff --git a/configure.in b/configure.in deleted file mode 100644 index 73e9bd6..0000000 --- a/configure.in +++ /dev/null @@ -1,25 +0,0 @@ -AC_INIT([mate-backgrounds], - [1.5.0], - [http://www.mate-desktop.org]) -m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) -AM_INIT_AUTOMAKE -AM_INIT_AUTOMAKE([1.9]) - -# Internationalization: -GETTEXT_PACKAGE=mate-backgrounds -AC_SUBST(GETTEXT_PACKAGE) -AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], - ["$GETTEXT_PACKAGE"], [The domain name to use with gettext.]) - -AM_GLIB_GNU_GETTEXT() -IT_PROG_INTLTOOL([0.35.0]) - -AM_MAINTAINER_MODE - -AC_OUTPUT([ -Makefile -abstract/Makefile -desktop/Makefile -nature/Makefile -po/Makefile.in -]) -- cgit v1.2.1