]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
the -D_REENTRANT cflag is now used. gnutls_1_0_4
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sun, 4 Jan 2004 11:42:55 +0000 (11:42 +0000)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sun, 4 Jan 2004 11:42:55 +0000 (11:42 +0000)
NEWS
configure.in

diff --git a/NEWS b/NEWS
index 3bad9625f21cc68338538a27aa41b66aa301bcef..579846612e3e7fb74b12ff9e39c03bf59df96e58 100644 (file)
--- 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
index 2565029e155ed1de92ccb4fdd5d6b482472e6306..9fbd9129867f82c988ab5c9e1fc9e61e9b1c03b9 100644 (file)
@@ -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])