1 # ===========================================================================
2 # http://www.gnu.org/software/autoconf-archive/ax_check_openssl.html
3 # ===========================================================================
7 # AX_CHECK_OPENSSL([action-if-found[, action-if-not-found]])
11 # Look for OpenSSL in a number of default spots, or in a user-selected
12 # spot (via --with-openssl). Sets
14 # OPENSSL_INCLUDES to the include directives required
15 # OPENSSL_LIBS to the -l directives required
16 # OPENSSL_LDFLAGS to the -L or -R flags required
18 # and calls ACTION-IF-FOUND or ACTION-IF-NOT-FOUND appropriately
20 # This macro sets OPENSSL_INCLUDES such that source files should use the
21 # openssl/ directory in include directives:
23 # #include <openssl/hmac.h>
27 # Copyright (c) 2009 Zmanda Inc. <http://www.zmanda.com/>
28 # Copyright (c) 2009 Dustin J. Mitchell <dustin@zmanda.com>
30 # Copying and distribution of this file, with or without modification, are
31 # permitted in any medium without royalty provided the copyright notice
32 # and this notice are preserved. This file is offered as-is, without any
37 AU_ALIAS([CHECK_SSL], [AX_CHECK_OPENSSL])
38 AC_DEFUN([AX_CHECK_OPENSSL], [
41 AS_HELP_STRING([--with-openssl=DIR],
42 [root of the OpenSSL directory]),
45 "" | y | ye | yes | n | no)
46 AC_MSG_ERROR([Invalid --with-openssl value])
52 # if pkg-config is installed and openssl has installed a .pc file,
53 # then use that information and don't search ssldirs
54 AC_PATH_PROG(PKG_CONFIG, pkg-config)
55 if test x"$PKG_CONFIG" != x""; then
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`
64 # no such luck; use some default ssldirs
66 ssldirs="/usr/local/ssl /usr/lib/ssl /usr/ssl /usr/pkg /usr/local /usr"
72 # note that we #include <openssl/foo.h>, so the OpenSSL headers have to be in
73 # an 'openssl' subdirectory
77 for ssldir in $ssldirs; do
78 AC_MSG_CHECKING([for openssl/ssl.h in $ssldir])
79 if test -f "$ssldir/include/openssl/ssl.h"; then
80 OPENSSL_INCLUDES="-I$ssldir/include"
81 OPENSSL_LDFLAGS="-L$ssldir/lib"
82 OPENSSL_LIBS="-lssl -lcrypto"
91 # if the file wasn't found, well, go ahead and try the link anyway -- maybe
95 # try the preprocessor and linker with our new flags,
96 # being careful not to pollute the global LIBS, LDFLAGS, and CPPFLAGS
98 AC_MSG_CHECKING([whether compiling and linking against OpenSSL works])
99 echo "Trying link with OPENSSL_LDFLAGS=$OPENSSL_LDFLAGS;" \
100 "OPENSSL_LIBS=$OPENSSL_LIBS; OPENSSL_INCLUDES=$OPENSSL_INCLUDES" >&AS_MESSAGE_LOG_FD
103 save_LDFLAGS="$LDFLAGS"
104 save_CPPFLAGS="$CPPFLAGS"
105 LDFLAGS="$LDFLAGS $OPENSSL_LDFLAGS"
106 LIBS="$OPENSSL_LIBS $LIBS"
107 CPPFLAGS="$OPENSSL_INCLUDES $CPPFLAGS"
109 AC_LANG_PROGRAM([#include <openssl/ssl.h>], [SSL_new(NULL)]),
117 CPPFLAGS="$save_CPPFLAGS"
118 LDFLAGS="$save_LDFLAGS"
121 AC_SUBST([OPENSSL_INCLUDES])
122 AC_SUBST([OPENSSL_LIBS])
123 AC_SUBST([OPENSSL_LDFLAGS])