From: Adam Dickmeiss Date: Wed, 7 Mar 2007 08:05:25 +0000 (+0000) Subject: Towards 2.1.52. X-Git-Tag: YAZ.2.1.52 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=7dca3501222dc961d4067367fc5222c48d36e0ef Towards 2.1.52. --- diff --git a/NEWS b/NEWS index e753dc3..ba98058 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,13 @@ +--- 2.1.52 2007/03/07 + +ZOOM-C: Removed hardcoded limit of 1024 sockets in ZOOM_event_sys_poll(). +Note that ZOOM_event_sys_select() still has the limit due to the fixed-size +fd_set structure used as a bitmask for the FDs to be selected on. + +Using ACX_PTHREAD macro to check for POSIX threads. + +Fixed have-vsnprintf check. + --- 2.1.50 2007/02/23 Fixes for configure on BSD. Bug #900. diff --git a/configure.ac b/configure.ac index eab19cc..e3a1f57 100644 --- a/configure.ac +++ b/configure.ac @@ -1,8 +1,8 @@ dnl YAZ Toolkit, Index Data 1995-2007 dnl See the file LICENSE for details. -dnl $Id: configure.ac,v 1.65 2007-02-25 21:04:04 adam Exp $ +dnl $Id: configure.ac,v 1.66 2007-03-07 08:05:25 adam Exp $ AC_PREREQ(2.59) -AC_INIT([yaz],[2.1.51],[yaz-help@indexdata.dk]) +AC_INIT([yaz],[2.1.52],[yaz-help@indexdata.dk]) AC_CONFIG_SRCDIR(configure.ac) AC_CONFIG_AUX_DIR([config]) AM_INIT_AUTOMAKE([1.8]) diff --git a/debian/changelog b/debian/changelog index 8704d08..916c8ed 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +yaz (2.1.52-1) unstable; urgency=low + + * Upstream. + + -- Adam Dickmeiss Wed, 7 Mar 2007 09:03:29 +0100 + yaz (2.1.50-1) unstable; urgency=low * Upstream. diff --git a/include/yaz/yaz-version.h b/include/yaz/yaz-version.h index 772731e..d2fc13c 100644 --- a/include/yaz/yaz-version.h +++ b/include/yaz/yaz-version.h @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: yaz-version.h,v 1.115 2007-02-23 14:04:37 adam Exp $ */ +/* $Id: yaz-version.h,v 1.116 2007-03-07 08:05:25 adam Exp $ */ /** * \file yaz-version.h * \brief Defines YAZ version. @@ -33,8 +33,8 @@ #include -#define YAZ_VERSION "2.1.51" -#define YAZ_VERSIONL 0x020133 +#define YAZ_VERSION "2.1.52" +#define YAZ_VERSIONL 0x020134 #define YAZ_DATE 1 diff --git a/win/yaz.nsi b/win/yaz.nsi index 6b7eb8a..678b741 100644 --- a/win/yaz.nsi +++ b/win/yaz.nsi @@ -1,6 +1,6 @@ -; $Id: yaz.nsi,v 1.104 2007-02-23 11:54:39 adam Exp $ +; $Id: yaz.nsi,v 1.105 2007-03-07 08:05:26 adam Exp $ -!define VERSION "2.1.50" +!define VERSION "2.1.52" ; Microsoft runtime CRT ; VS 2003 diff --git a/win/yaz.rc b/win/yaz.rc index 8d88837..8825fce 100644 --- a/win/yaz.rc +++ b/win/yaz.rc @@ -1,8 +1,8 @@ #include "winver.h" VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,1,50,1 - PRODUCTVERSION 2,1,50,1 + FILEVERSION 2,1,52,1 + PRODUCTVERSION 2,1,52,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -20,14 +20,14 @@ VS_VERSION_INFO VERSIONINFO VALUE "Comments", "Z39.50/SRU Library\0" VALUE "CompanyName", "Index Data ApS\0" VALUE "FileDescription", "YAZ Library\0" - VALUE "FileVersion", "2, 1, 50, 1\0" + VALUE "FileVersion", "2, 1, 52, 1\0" VALUE "InternalName", "YAZ\0" VALUE "LegalCopyright", "Copyright © 1995-2007 Index Data ApS\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "yaz.rc\0" VALUE "PrivateBuild", "\0" VALUE "ProductName", "YAZ Toolkit\0" - VALUE "ProductVersion", "2, 1, 50, 1\0" + VALUE "ProductVersion", "2, 1, 52, 1\0" VALUE "SpecialBuild", "\0" END }