1
1
The 'Requires:' line lists the names of the .pc files.
Этот коммит содержится в:
Guenter Knauf 2012-04-23 01:11:22 +02:00
родитель 04692445d4
Коммит e887a8bd0f

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

@ -96,13 +96,13 @@ AC_ARG_WITH(libz,
# Look for OpenSSL (default)
if test "$use_openssl" != "no" && test "$use_libgcrypt" != "yes"; then
AC_LIB_HAVE_LINKFLAGS([ssl], [crypto], [#include <openssl/ssl.h>])
LIBSREQUIRED=ssl,crypto
LIBSREQUIRED=libssl,libcrypto
fi
# Look for libgcrypt
if test "$ac_cv_libssl" != "yes" && test "$use_libgcrypt" != "no"; then
AC_LIB_HAVE_LINKFLAGS([gcrypt], [], [#include <gcrypt.h>])
LIBSREQUIRED=gcrypt
LIBSREQUIRED=libgcrypt
fi
AC_SUBST(LIBSREQUIRED)