summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2002-09-20 11:10:58 +0000
committerWerner Koch <wk@gnupg.org>2002-09-20 11:10:58 +0000
commitaab687fc9109a7244bf597fc889c2882dc00ebb0 (patch)
treeb7d62f402a2caa6d4fe186a8da479ea161ac735d
parentac25b885925d43072886eaee2a152b529d9eb2ea (diff)
downloadlibgcrypt-1-1-10.tar.gz
About to release 1.1.10.V1-1-10
* configure.ac (HAVE_DEV_RANDOM_IOCTL): Don't check for it; it is not used. (AS_CHECK_HEADERS): Check for sys/select.h. * Makefile.am (DIST_SUBDIRS): New to include the w32-dll directory
-rw-r--r--ChangeLog9
-rw-r--r--Makefile.am2
-rw-r--r--NEWS11
-rw-r--r--configure.ac47
4 files changed, 45 insertions, 24 deletions
diff --git a/ChangeLog b/ChangeLog
index 153fc2d9..5971204a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2002-09-20 Werner Koch <wk@gnupg.org>
+
+ Released 1.1.10.
+
+ * configure.ac (HAVE_DEV_RANDOM_IOCTL): Don't check for it; it is
+ not used.
+ (AS_CHECK_HEADERS): Check for sys/select.h.
+ * Makefile.am (DIST_SUBDIRS): New to include the w32-dll directory
+
2002-09-18 Timo Schulz <ts@winpt.org>
* configure.ac: Added makefile for the W32 DLL.
diff --git a/Makefile.am b/Makefile.am
index 70175b1a..49cc5788 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -17,6 +17,8 @@
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+
+DIST_SUBDIRS = mpi cipher src doc tests w32-dll
SUBDIRS = mpi cipher src doc tests
EXTRA_DIST = README-alpha BUGS autogen.sh COPYING.DOC
DISTCLEANFILES = gcrypt-defs.h
diff --git a/NEWS b/NEWS
index 245c144b..d7af8c09 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,15 @@
-Noteworthy changes in version 1.1.10 (unreleased)
+Noteworthy changes in version 1.1.10 (2002-09-20)
-------------------------------------------------
+ * Fixed shared library builds for i386, PPC and Sparc.
+
+ * Added simple benchmark tool.
+
+ * Replaced the internal mutexes by code which automatically adapts to
+ the used threading library. Currently Pth and Pthread are
+ supported. For non-ELF systems the GNU toolchain is now required..
+
+ * Added untested support to build Windows DLLs.
Noteworthy changes in version 1.1.9 (2002-08-23)
------------------------------------------------
diff --git a/configure.ac b/configure.ac
index 7040c897..a2f2b2e4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,14 +21,15 @@
AC_REVISION($Revision$)dnl
AC_PREREQ(2.52)
-# Version numbers (Remember to change them just before a release)
+# Version number: Remember to change it immediately *after* a release.
+AC_INIT(libgcrypt,1.1.10)
+# LT Version numbers, remember to change them just *before* a release.
# (Interfaces removed: CURRENT++, AGE=0, REVISION=0)
# (Interfaces added: CURRENT++, AGE++, REVISION=0)
# (No interfaces changed: REVISION++)
-AC_INIT(libgcrypt,1.1.9-cvs)
LIBGCRYPT_LT_CURRENT=5
LIBGCRYPT_LT_AGE=4
-LIBGCRYPT_LT_REVISION=1
+LIBGCRYPT_LT_REVISION=2
#-----------------------
PACKAGE=$PACKAGE_NAME
@@ -336,7 +337,7 @@ fi
dnl Checks for header files.
AC_HEADER_STDC
-AC_CHECK_HEADERS(unistd.h langinfo.h termio.h)
+AC_CHECK_HEADERS(unistd.h langinfo.h termio.h sys/select.h)
dnl Checks for typedefs, structures, and compiler characteristics.
@@ -454,25 +455,25 @@ else
AC_MSG_RESULT(has been disabled)
fi
-dnl
-dnl and whether this device supports ioctl
-dnl (Note, that we should do a real test here)
-dnl
-if test "$ac_cv_have_dev_random" = yes ; then
- AC_CHECK_HEADERS(linux/random.h)
- AC_CACHE_CHECK(for random device ioctl, ac_cv_have_dev_random_ioctl,
- [ if test "$ac_cv_header_linux_random_h" = yes ; then
- ac_cv_have_dev_random_ioctl=yes;
- else
- ac_cv_have_dev_random_ioctl=no;
- fi
- ])
- if test "$ac_cv_have_dev_random_ioctl" = yes; then
- AC_DEFINE(HAVE_DEV_RANDOM_IOCTL,1,
- [defined if the random device supports some IOCTLs])
- fi
-fi
-
+#dnl
+#dnl and whether this device supports ioctl
+#dnl (Note, that we should do a real test here)
+#dnl
+#if test "$ac_cv_have_dev_random" = yes ; then
+# AC_CHECK_HEADERS(linux/random.h)
+# AC_CACHE_CHECK(for random device ioctl, ac_cv_have_dev_random_ioctl,
+# [ if test "$ac_cv_header_linux_random_h" = yes ; then
+# ac_cv_have_dev_random_ioctl=yes;
+# else
+# ac_cv_have_dev_random_ioctl=no;
+# fi
+# ])
+# if test "$ac_cv_have_dev_random_ioctl" = yes; then
+# AC_DEFINE(HAVE_DEV_RANDOM_IOCTL,1,
+# [defined if the random device supports some IOCTLs])
+# fi
+#fi
+#
dnl
dnl Figure out the default linkage mode for cipher modules