From: Nikos Mavrogiannopoulos Date: Tue, 10 Oct 2000 16:26:23 +0000 (+0000) Subject: removed mhash support and some changes in the docs X-Git-Tag: gnutls0-0-4~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a049b46b10353ff65fc2da40fb83ddfdbf8db62a;p=thirdparty%2Fgnutls.git removed mhash support and some changes in the docs --- diff --git a/README b/README index cec2f8058f..9def714c04 100644 --- a/README +++ b/README @@ -1,5 +1,4 @@ * The library needs libgcrypt. Libgcrypt is part of gnupg (cvs.gnupg.org) -* Libmhash is also needed. Try mhash.sourceforge.net * Run the buildconf script before doing anything. This will create the needed configure, makefiles etc. using Automake, Autoconf, and libtool. diff --git a/configure.in b/configure.in index 4a47e85fa5..cc427d4f7c 100644 --- a/configure.in +++ b/configure.in @@ -23,6 +23,14 @@ GNUTLS_MOST_RECENT_INTERFACE=$GNUTLS_MINOR_VERSION GNUTLS_CURRENT_INTERFACE_IMPLEMENTATION_NUMBER=$GNUTLS_MICRO_VERSION GNUTLS_OLDEST_INTERFACE=0 +dnl AM_PATH_GCRYPT(1.1.2,, +dnl AC_MSG_ERROR([[ +dnl *** +dnl *** libgcrypt was not found. You may want to get it from +dnl *** ftp://ftp.gnupg.org/gcrypt/devel/ +dnl *** +dnl ]])) + AC_SUBST(GNUTLS_MAJOR_VERSION) AC_SUBST(GNUTLS_MINOR_VERSION) AC_SUBST(GNUTLS_MICRO_VERSION) diff --git a/src/Makefile.am b/src/Makefile.am index 8c39911c9b..34769a9c75 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,7 @@ EXTRA_DIST = port.h noinst_PROGRAMS = serv cli serv_SOURCES = serv.c -serv_LDADD = ../lib/libgnutls.la -lgcrypt -lmhash +serv_LDADD = ../lib/libgnutls.la -lgcrypt cli_SOURCES = cli.c -cli_LDADD = ../lib/libgnutls.la -lgcrypt -lmhash +cli_LDADD = ../lib/libgnutls.la -lgcrypt