summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2004-01-04 11:42:55 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2004-01-04 11:42:55 +0000
commitaf2d30ff8b325f7b77680f20bbe648a27f1b16e8 (patch)
treeeef2fbf7c20564e02ee16d8b4809ebfd27f9fd8d
parent2c418d033c17e94b9d40d5b65073e42df8df182d (diff)
downloadgnutls_1_0_4.tar.gz
the -D_REENTRANT cflag is now used.gnutls_1_0_4
-rw-r--r--NEWS5
-rw-r--r--configure.in4
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])