diff options
author | Werner Koch <[email protected]> | 2006-10-04 09:44:29 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2006-10-04 09:44:29 +0000 |
commit | 939e8f7ab0f36f34ab40ba2aa61a122353004e78 (patch) | |
tree | 899300f156262bea6952acd2b6b3ee608970758d /m4 | |
parent | 2006-09-28 Marcus Brinkmann <[email protected]> (diff) | |
download | libassuan-939e8f7ab0f36f34ab40ba2aa61a122353004e78.tar.gz libassuan-939e8f7ab0f36f34ab40ba2aa61a122353004e78.zip |
Preparing a new releaselibassuan-0.9.1
Diffstat (limited to 'm4')
-rw-r--r-- | m4/Makefile.am | 2 | ||||
-rw-r--r-- | m4/autobuild.m4 | 34 |
2 files changed, 35 insertions, 1 deletions
diff --git a/m4/Makefile.am b/m4/Makefile.am index 62215fb..4b141b2 100644 --- a/m4/Makefile.am +++ b/m4/Makefile.am @@ -1 +1 @@ -EXTRA_DIST = socklen.m4 sys_socket_h.m4 onceonly.m4 +EXTRA_DIST = socklen.m4 sys_socket_h.m4 onceonly.m4 autobuild.m4 diff --git a/m4/autobuild.m4 b/m4/autobuild.m4 new file mode 100644 index 0000000..bd1f4dc --- /dev/null +++ b/m4/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 +]) |