aboutsummaryrefslogtreecommitdiffstats
path: root/m4-local
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2005-11-27 15:23:27 +0000
committerMatthias Andree <matthias.andree@gmx.de>2005-11-27 15:23:27 +0000
commitf750540a7bb3dd465cb562681a2606bd313469ad (patch)
tree6134b14fec0605fac81052cd5648f8275b9963a7 /m4-local
parentac97ca8cae0b55f18bd3cd6a33363ea97136b1c9 (diff)
downloadfetchmail-f750540a7bb3dd465cb562681a2606bd313469ad.tar.gz
fetchmail-f750540a7bb3dd465cb562681a2606bd313469ad.tar.bz2
fetchmail-f750540a7bb3dd465cb562681a2606bd313469ad.zip
Add rudimentary autobuild support.
Add a trivial self test, required for autobuild. svn path=/trunk/; revision=4479
Diffstat (limited to 'm4-local')
-rw-r--r--m4-local/autobuild.m434
1 files changed, 34 insertions, 0 deletions
diff --git a/m4-local/autobuild.m4 b/m4-local/autobuild.m4
new file mode 100644
index 00000000..bd1f4dc1
--- /dev/null
+++ b/m4-local/autobuild.m4
@@ -0,0 +1,34 @@
+# autobuild.m4 serial 2 (autobuild-3.3)
+# Copyright (C) 2004 Simon Josefsson
+#
+# This file is free software, distributed under the terms of the GNU
+# General Public License. As a special exception to the GNU General
+# Public License, this file may be distributed as part of a program
+# that contains a configuration script generated by Autoconf, under
+# the same distribution terms as the rest of that program.
+#
+# This file can can be used in projects which are not available under
+# the GNU General Public License or the GNU Library General Public
+# License but which still want to provide support for Autobuild.
+
+# Usage: AB_INIT([MODE]).
+AC_DEFUN([AB_INIT],
+[
+ AC_REQUIRE([AC_CANONICAL_BUILD])
+ AC_REQUIRE([AC_CANONICAL_HOST])
+
+ AC_MSG_NOTICE([autobuild project... ${PACKAGE_NAME:-$PACKAGE}])
+ AC_MSG_NOTICE([autobuild revision... ${PACKAGE_VERSION:-$VERSION}])
+ hostname=`hostname`
+ if test "$hostname"; then
+ AC_MSG_NOTICE([autobuild hostname... $hostname])
+ fi
+ ifelse([$1],[],,[AC_MSG_NOTICE([autobuild mode... $1])])
+ date=`date +%Y%m%d-%H%M%S`
+ if test "$?" != 0; then
+ date=`date`
+ fi
+ if test "$date"; then
+ AC_MSG_NOTICE([autobuild timestamp... $date])
+ fi
+])