[svn] assuan - r212 - in trunk: . m4
svn author wk
cvs at cvs.gnupg.org
Wed Oct 4 11:44:30 CEST 2006
Author: wk
Date: 2006-10-04 11:44:29 +0200 (Wed, 04 Oct 2006)
New Revision: 212
Added:
trunk/m4/autobuild.m4
Modified:
trunk/ChangeLog
trunk/NEWS
trunk/README
trunk/configure.ac
trunk/m4/Makefile.am
Log:
Preparing a new release
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2006-09-28 16:27:23 UTC (rev 211)
+++ trunk/ChangeLog 2006-10-04 09:44:29 UTC (rev 212)
@@ -1,3 +1,10 @@
+2006-10-04 Werner Koch <wk at g10code.com>
+
+ Released 0.9.1.
+
+ * configure.ac (AB_INIT): New.
+ * m4/autobuild.m4: New.
+
2006-09-19 Werner Koch <wk at g10code.com>
* tests/fdpassing.c: Reverted Marcus changes.
Modified: trunk/NEWS
===================================================================
--- trunk/NEWS 2006-09-28 16:27:23 UTC (rev 211)
+++ trunk/NEWS 2006-10-04 09:44:29 UTC (rev 212)
@@ -1,7 +1,11 @@
-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)
------------------------------------------------
Modified: trunk/README
===================================================================
--- trunk/README 2006-09-28 16:27:23 UTC (rev 211)
+++ trunk/README 2006-10-04 09:44:29 UTC (rev 212)
@@ -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
Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac 2006-09-28 16:27:23 UTC (rev 211)
+++ trunk/configure.ac 2006-10-04 09:44:29 UTC (rev 212)
@@ -25,7 +25,7 @@
# 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 at gnupg.org)
+AC_INIT(libassuan, 0.9.1, gnupg-devel at gnupg.org)
# Note, that this is not yet available as a shared library.
PACKAGE=$PACKAGE_NAME
@@ -35,8 +35,9 @@
AM_MAINTAINER_MODE
AC_CONFIG_SRCDIR(src/assuan.h)
AM_CONFIG_HEADER(config.h)
+AC_CANONICAL_HOST
+AB_INIT
-AC_CANONICAL_HOST
AC_GNU_SOURCE
Modified: trunk/m4/Makefile.am
===================================================================
--- trunk/m4/Makefile.am 2006-09-28 16:27:23 UTC (rev 211)
+++ trunk/m4/Makefile.am 2006-10-04 09:44:29 UTC (rev 212)
@@ -1 +1 @@
-EXTRA_DIST = socklen.m4 sys_socket_h.m4 onceonly.m4
+EXTRA_DIST = socklen.m4 sys_socket_h.m4 onceonly.m4 autobuild.m4
Added: trunk/m4/autobuild.m4
===================================================================
--- trunk/m4/autobuild.m4 2006-09-28 16:27:23 UTC (rev 211)
+++ trunk/m4/autobuild.m4 2006-10-04 09:44:29 UTC (rev 212)
@@ -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
+])
More information about the Gnupg-commits
mailing list