aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS8
-rw-r--r--configure.ac5
-rw-r--r--doc/mailfromd.texi14
3 files changed, 18 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index 07b9d247..368e1580 100644
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,16 @@
-Mailfromd NEWS -- history of user-visible changes. 2008-02-10
+Mailfromd NEWS -- history of user-visible changes. 2008-03-01
Copyright (C) 2005, 2006, 2007, 2008 Sergey Poznyakoff
See the end of file for copying conditions.
Please send mailfromd bug reports to <bug-mailfromd@gnu.org.ua>
+Version 4.3.1, 2008-03-01
+
+* Fix program evaluator bug that manifested itself on machines where
+ sizeof(unsigned long) > sizeof(usnigned).
+
+
Version 4.3, 2008-02-10
* write built-in
diff --git a/configure.ac b/configure.ac
index aa5ae92e..6b55d68d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,7 @@
AC_PREREQ(2.59)
m4_define([MF_VERSION_MAJOR], 4)
m4_define([MF_VERSION_MINOR], 3)
-dnl m4_define([MF_VERSION_PATCH], 0)
+m4_define([MF_VERSION_PATCH], 1)
AC_INIT([mailfromd],
MF_VERSION_MAJOR.MF_VERSION_MINOR[]m4_ifdef([MF_VERSION_PATCH],.MF_VERSION_PATCH),
[bug-mailfromd@gnu.org.ua])
@@ -50,8 +50,7 @@ LIBS="$LIBS -lresolv"
AC_TRY_LINK([#include <resolv.h>],
[res_query ();],
[:],
- [LIB=$saved_LIBS])
-dnl AC_CHECK_LIB(resolv, res_query)
+ [LIBS=$saved_LIBS])
AC_CHECK_LIB(socket, socket)
AC_CHECK_LIB(nsl, gethostbyaddr)
AC_CHECK_LIB(rt, nanosleep)
diff --git a/doc/mailfromd.texi b/doc/mailfromd.texi
index 5ebf9e4a..e4b456d1 100644
--- a/doc/mailfromd.texi
+++ b/doc/mailfromd.texi
@@ -133,7 +133,7 @@ Sender Address Verification.
Building the Package
-* 420-430:: Upgrading from 4.2 to 4.3
+* 420-43x:: Upgrading from 4.2 to 4.3.x
* 410-420:: Upgrading from 4.1 to 4.2
* 400-410:: Upgrading from 4.0 to 4.1
* 31x-400:: Upgrading from 3.1.x to 4.0
@@ -987,7 +987,7 @@ the corresponding section below.
@end enumerate
@menu
-* 420-430:: Upgrading from 4.2 to 4.3
+* 420-43x:: Upgrading from 4.2 to 4.3.x
* 410-420:: Upgrading from 4.1 to 4.2
* 400-410:: Upgrading from 4.0 to 4.1
* 31x-400:: Upgrading from 3.1.x to 4.0
@@ -996,11 +996,15 @@ the corresponding section below.
* 1x-2x:: Upgrading from 1.x to 2.x
@end menu
-@node 420-430
-@section Upgrading from 4.2 to 4.3
-@cindex Upgrading from 4.2 to 4.3
+@node 420-43x
+@section Upgrading from 4.2 to 4.3.x
+@cindex Upgrading from 4.2 to 4.3.x
@cindex @code{DEFAULT_SYSLOG_ASYNC}, @command{configure} variable
+ Upgrading from 4.2 to 4.3 or 4.3.1 does not require any changes to
+your configuration and scripts. The only notable change in these
+versions is the following:
+
The asynchronous syslog implementation was reported to malfunction
on some systems (notably on Solaris), so this release does not enable
it by default. The previous meaning of the @option{--enable-syslog-async}

Return to:

Send suggestions and report system problems to the System administrator.