X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=configure.in;h=79899d70a45f3f86be7bf69c73e74f43ee6e06c5;hp=92d6dfff59464312dd15ef6db181a447db6681e3;hb=45ea3ca432a031ff1b8072d934709aadaae12534;hpb=03af6d8c8056d0b7006f7d8fb19bb33d303ac8f9 diff --git a/configure.in b/configure.in index 92d6dfff..79899d70 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -dnl $Id: configure.in,v 1.13.2.1 2000/06/25 20:52:29 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) @@ -14,7 +14,7 @@ AM_ACLOCAL_INCLUDE(m4) # in the latter don't make it into the configure-time tests. AC_DEFINE([_GNU_SOURCE], [__USE_BSD]) -ALL_LINGUAS="nl" +ALL_LINGUAS="es nl" dnl Checks for programs. AC_PROG_CC @@ -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])