Lines Matching refs:openssl
12 # spot (via --with-openssl). Sets
21 # openssl/ directory in include directives:
23 # #include <openssl/hmac.h>
40 AC_ARG_WITH([openssl], optwith
41 [AS_HELP_STRING([--with-openssl=DIR],
46 AC_MSG_ERROR([Invalid --with-openssl value])
52 # if pkg-config is installed and openssl has installed a .pc file,
56 OPENSSL_LDFLAGS=`$PKG_CONFIG openssl --libs-only-L 2>/dev/null`
58 OPENSSL_LIBS=`$PKG_CONFIG openssl --libs-only-l 2>/dev/null`
59 OPENSSL_INCLUDES=`$PKG_CONFIG openssl --cflags-only-I 2>/dev/null`
72 # note that we #include <openssl/foo.h>, so the OpenSSL headers have to be in
73 # an 'openssl' subdirectory
78 AC_MSG_CHECKING([for openssl/ssl.h in $ssldir])
79 if test -f "$ssldir/include/openssl/ssl.h"; then
109 [AC_LANG_PROGRAM([#include <openssl/ssl.h>], [SSL_new(NULL)])],