diff options
author | Werner Koch <wk@gnupg.org> | 2006-07-27 16:18:55 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2006-07-27 16:18:55 +0200 |
commit | de5070caf07854852a36722a0d85453cbbc93c84 (patch) | |
tree | 39ae89adce5a02311686d4b86bedc1e05b9fbaca /m4 | |
parent | Create bag attributes so that Mozilla will accept these files. (diff) | |
download | gnupg2-de5070caf07854852a36722a0d85453cbbc93c84.tar.xz gnupg2-de5070caf07854852a36722a0d85453cbbc93c84.zip |
Preparing a new releasegnupg-1.9.22
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ChangeLog | 4 | ||||
-rw-r--r-- | m4/Makefile.am | 5 | ||||
-rw-r--r-- | m4/autobuild.m4 | 34 |
3 files changed, 42 insertions, 1 deletions
diff --git a/m4/ChangeLog b/m4/ChangeLog index 2cc6a308e..f666fa38d 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,7 @@ +2006-07-27 Werner Koch <wk@g10code.com> + + * autobuild.m4: New. + 2006-06-30 Werner Koch <wk@g10code.com> * ldap.m4: New. Taken from gnupg 1.4.4 diff --git a/m4/Makefile.am b/m4/Makefile.am index d218b73b7..7eb76cb4d 100644 --- a/m4/Makefile.am +++ b/m4/Makefile.am @@ -1,5 +1,8 @@ EXTRA_DIST = intmax.m4 longdouble.m4 longlong.m4 printf-posix.m4 signed.m4 size_max.m4 wchar_t.m4 wint_t.m4 xsize.m4 codeset.m4 gettext.m4 glibc21.m4 iconv.m4 intdiv0.m4 inttypes.m4 inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 progtest.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4 -EXTRA_DIST += ldap.m4 +EXTRA_DIST += ldap.m4 EXTRA_DIST += gpg-error.m4 libgcrypt.m4 libassuan.m4 ksba.m4 + +EXTRA_DIST += autobuild.m4 + diff --git a/m4/autobuild.m4 b/m4/autobuild.m4 new file mode 100644 index 000000000..bd1f4dc1b --- /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 +]) |