summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorElan Ruusamäe <[email protected]>2013-01-15 18:42:47 +0200
committerStefano Karapetsas <[email protected]>2013-01-17 20:20:31 +0100
commit051157043436ac11f5414249e50ba69da9d7334f (patch)
treec71d15eead3709c52f93728adf0dc86d5aaf57b7 /configure.ac
parent225abc5e68ab53fb05edc39a2c9f1752c26fce02 (diff)
downloadmate-common-051157043436ac11f5414249e50ba69da9d7334f.tar.bz2
mate-common-051157043436ac11f5414249e50ba69da9d7334f.tar.xz
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'
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac24
1 files changed, 24 insertions, 0 deletions
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