]> arthur.barton.de Git - netatalk.git/blob - macros/ssl-check.m4
Use three-argument AC_DEFINE and AC_DEFINE_UNQUOTED to fix a deprecation
[netatalk.git] / macros / ssl-check.m4
1 dnl $Id: ssl-check.m4,v 1.8 2003-01-29 00:16:31 srittau Exp $
2 dnl Autoconf macro to check for SSL or OpenSSL
3
4 AC_DEFUN([AC_PATH_SSL], [
5         AC_ARG_WITH(ssl-dir, [  --with-ssl-dir=PATH     specify path to OpenSSL installation (must contain
6                           lib and include dirs)],
7                 [
8                         if test "x$withval" = "xno"; then
9                                 tryssl=no
10                         elif test "x$withval" = "xyes"; then
11                                 tryssl=yes
12                                 tryssldir=
13                         else
14                                 dnl FIXME: should only try in $withval
15                                 tryssl=yes
16                                 tryssldir="$withval"
17                         fi
18                 ], [tryssl=yes]
19         )
20
21         SSL_CFLAGS=""
22         SSL_LIBS=""
23         compile_ssl=no
24
25         if test "$tryssl" = "yes"; then
26                 AC_MSG_CHECKING([for SSL])
27                 for ssldir in "" $tryssldir /usr /usr/local/openssl /usr/lib/openssl /usr/local/ssl /usr/lib/ssl /usr/local /usr/pkg /opt /opt/openssl /usr/local/ssl ; do
28                         if test -f "$ssldir/include/openssl/cast.h" ; then
29                                 SSL_CFLAGS="$SSL_CFLAGS -I$ssldir/include -I$ssldir/include/openssl"
30                                 SSL_LIBS="$SSL_LIBS -L$ssldir/lib -L$ssldir -lcrypto"
31                                 if test "x$need_dash_r" = "xyes"; then
32                                         SSL_LIBS="$SSL_LIBS -R$ssldir/lib -R$ssldir"
33                                 fi
34                                 AC_MSG_RESULT([$ssldir (enabling RANDNUM and DHX support)])
35
36 dnl FIXME: The following looks crude and probably doesn't work properly.
37                                 dnl Check for the crypto library:
38                                 AC_CHECK_LIB(crypto, main)
39                                 dnl Check for "DES" library (for SSLeay, not openssl):
40                                 AC_CHECK_LIB(des, main)
41
42                                 AC_DEFINE(OPENSSL_DHX,  1, [Define if the OpenSSL DHX modules should be built])
43                                 AC_DEFINE(UAM_DHX,      1, [Define if the DHX UAM modules should be compiled])
44                                 compile_ssl=yes
45                                 break
46                         fi
47                 done
48                 if test "x$compile_ssl" = "xno"; then
49                         AC_MSG_RESULT([no])
50                 fi
51         fi
52         AC_SUBST(SSL_CFLAGS)
53         AC_SUBST(SSL_LIBS)
54 ])