Skip to content

Commit

Permalink
autoconf: restore ssl lib checks
Browse files Browse the repository at this point in the history
  • Loading branch information
tpruvot committed Nov 20, 2017
1 parent 477b5fa commit 5e66806
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,9 @@ CFLAGS="$CFLAGS $LIBCURL_CFLAGS"
CPPFLAGS="$CPPFLAGS $LIBCURL_CPPFLAGS"
LDFLAGS="$LDFLAGS $LIBCURL_LDFLAGS"

#AC_CHECK_LIB([z],[gzopen],[],[])
#AC_CHECK_LIB([crypto],[OPENSSL_init], crypto=yes, [AC_MSG_ERROR([OpenSSL crypto library required])])
#AC_CHECK_LIB([ssl],[SSL_new], ssl=yes, ssl=no)
AC_CHECK_LIB([z],[gzopen],[],[])
AC_CHECK_LIB([crypto],[EVP_DigestFinal_ex], crypto=yes, [AC_MSG_ERROR([OpenSSL crypto library required])])
AC_CHECK_LIB([ssl],[SSL_free], ssl=yes, ssl=no)

# AC_CHECK_LIB([curl], [curl_multi_timeout],
# have_libcurl=yes,
Expand Down

0 comments on commit 5e66806

Please sign in to comment.