Link with OpenSSL crypto libraries instead of own blowfish library

This commit is contained in:
Ivo Timmermans 2000-09-10 15:05:45 +00:00
parent 4dde583bc9
commit ae17572e6b
16 changed files with 20 additions and 1502 deletions

View file

@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
dnl $Id: configure.in,v 1.13.2.2 2000/07/02 12:41:03 zarq Exp $
dnl $Id: configure.in,v 1.13.2.3 2000/09/10 15:05:44 zarq Exp $
AC_INIT(src/tincd.c)
AM_INIT_AUTOMAKE(tinc, 1.0pre3)
@ -79,6 +79,21 @@ AC_CHECK_LIB(dl, dlopen, [
LIBS="$LIBS -ldl"
])
dnl Crypto stuff
libcrypto=none
AC_CHECK_LIB(crypto, SHA1_version, [
libcrypto=yes
])
if test $libcrypto = none; then
AC_MSG_ERROR(It seems like OpenSSL is not installed on this system.)
else
LIBS="$LIBS -lcrypto"
fi
AC_OUTPUT([Makefile src/Makefile cipher/Makefile
cipher/blowfish/Makefile doc/Makefile intl/Makefile lib/Makefile
doc/Makefile intl/Makefile lib/Makefile
m4/Makefile po/Makefile.in redhat/Makefile debian/Makefile])