1
1

configure: gcrypt doesn't come with pkg-config support

... so use plain old -lgcrypt to the linker to link with it.

Fixes #225
Этот коммит содержится в:
Dmitry Smirnov 2012-08-13 23:34:51 +02:00 коммит произвёл Daniel Stenberg
родитель 62cc59cd06
Коммит e470738a0c

Просмотреть файл

@ -102,7 +102,7 @@ fi
# Look for libgcrypt
if test "$ac_cv_libssl" != "yes" && test "$use_libgcrypt" != "no"; then
AC_LIB_HAVE_LINKFLAGS([gcrypt], [], [#include <gcrypt.h>])
LIBSREQUIRED=libgcrypt
LIBS="$LIBS -lgcrypt"
fi
AC_SUBST(LIBSREQUIRED)