summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--NEWS6
-rw-r--r--README4
-rw-r--r--configure.ac5
-rw-r--r--m4/Makefile.am2
-rw-r--r--m4/autobuild.m434
6 files changed, 52 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index d9d6501..bd80698 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-10-04 Werner Koch <wk@g10code.com>
+
+ Released 0.9.1.
+
+ * configure.ac (AB_INIT): New.
+ * m4/autobuild.m4: New.
+
2006-09-19 Werner Koch <wk@g10code.com>
* tests/fdpassing.c: Reverted Marcus changes.
diff --git a/NEWS b/NEWS
index 031e54d..69e74c5 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,10 @@
-Noteworthy changes in version 0.9.1
+Noteworthy changes in version 0.9.1 (2006-10-04)
------------------------------------------------
+ * Minor bug fixes
+
+ * Portability fixes.
+
Noteworthy changes in version 0.9.0 (2006-09-14)
------------------------------------------------
diff --git a/README b/README
index 9a34915..a60bb82 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
- Libassuan
- ===========
+ Libassuan
+ ===========
This is the IPC library used by GnuPG 1.9, GPGME and a few other
packages. It used to be included with the latter packages but we
diff --git a/configure.ac b/configure.ac
index ca977c7..46a0d86 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,7 +25,7 @@ min_automake_version="1.9.3"
# Version number: Remember to change it immediately *after* a release.
# Add a "-cvs" prefix for non-released code.
-AC_INIT(libassuan, 0.9.1-cvs, gnupg-devel@gnupg.org)
+AC_INIT(libassuan, 0.9.1, gnupg-devel@gnupg.org)
# Note, that this is not yet available as a shared library.
PACKAGE=$PACKAGE_NAME
@@ -35,8 +35,9 @@ AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
AC_CONFIG_SRCDIR(src/assuan.h)
AM_CONFIG_HEADER(config.h)
-
AC_CANONICAL_HOST
+AB_INIT
+
AC_GNU_SOURCE
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
+])