From af2d30ff8b325f7b77680f20bbe648a27f1b16e8 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Sun, 4 Jan 2004 11:42:55 +0000 Subject: the -D_REENTRANT cflag is now used. --- NEWS | 5 ++++- configure.in | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 3bad9625f2..579846612e 100644 --- a/NEWS +++ b/NEWS @@ -1,7 +1,10 @@ -Version 1.0.4 +Version 1.0.4 (04/01/2004) - Changed handshake behaviour to send the lowest TLS version when an unsupported version was advertized. The current behaviour is to send the maximum version we support. +- certtool no longer asks the password in unencrypted private + keys. +- The source is now compiled to use the reentrant libc functions. Version 1.0.3 (21/12/2003) - Corrected bug in gnutls_bye() which made it return an error code diff --git a/configure.in b/configure.in index 2565029e15..9fbd912986 100644 --- a/configure.in +++ b/configure.in @@ -12,7 +12,7 @@ AC_DEFINE_UNQUOTED(T_OS, "$target_os", [OS name]) dnl Gnutls Version GNUTLS_MAJOR_VERSION=1 GNUTLS_MINOR_VERSION=0 -GNUTLS_MICRO_VERSION=3 +GNUTLS_MICRO_VERSION=4 GNUTLS_VERSION=$GNUTLS_MAJOR_VERSION.$GNUTLS_MINOR_VERSION.$GNUTLS_MICRO_VERSION AC_DEFINE_UNQUOTED(GNUTLS_VERSION, "$GNUTLS_VERSION", [version of gnutls]) @@ -57,6 +57,8 @@ case "${target}" in ;; esac +dnl In order to use the reentrant libc functions +CFLAGS="${CFLAGS} -D_REENTRANT" opt_dmalloc_mode=no AC_MSG_CHECKING([whether in dmalloc mode]) -- cgit v1.2.1