]> arthur.barton.de Git - netatalk.git/blob - macros/ssl-check.m4
fix init script uninstall
[netatalk.git] / macros / ssl-check.m4
1 dnl $Id: ssl-check.m4,v 1.8.6.2 2003-10-29 23:53:24 bfernhomberg Exp $
2 dnl Autoconf macro to check for SSL or OpenSSL
3
4 AC_DEFUN([AC_CRYPT], [
5
6         saveLIBS=$LIBS
7         LIBS=""
8         CRYPT_LIBS=""
9
10         AC_CHECK_HEADERS(crypt.h)
11         AC_CHECK_LIB(crypt, main)
12
13         CRYPT_LIBS=$LIBS
14         LIBS=$saveLIBS
15
16         AC_SUBST(CRYPT_LIBS)
17 ])
18
19
20 AC_DEFUN([AC_PATH_SSL], [
21         AC_ARG_WITH(ssl-dir, [  --with-ssl-dir=PATH     specify path to OpenSSL installation (must contain
22                           lib and include dirs)],
23                 [
24                         if test "x$withval" = "xno"; then
25                                 tryssl=no
26                         elif test "x$withval" = "xyes"; then
27                                 tryssl=yes
28                                 tryssldir=
29                         else
30                                 dnl FIXME: should only try in $withval
31                                 tryssl=yes
32                                 tryssldir="$withval"
33                         fi
34                 ], [tryssl=yes]
35         )
36
37         SSL_CFLAGS=""
38         SSL_LIBS=""
39         saved_LIBS=$LIBS
40         compile_ssl=no
41
42         if test "$tryssl" = "yes"; then
43                 AC_MSG_CHECKING([for SSL])
44                 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
45                         if test -f "$ssldir/include/openssl/cast.h" ; then
46                                 SSL_CFLAGS="$SSL_CFLAGS -I$ssldir/include -I$ssldir/include/openssl"
47                                 SSL_LIBS="$SSL_LIBS -L$ssldir/lib -L$ssldir -lcrypto"
48                                 if test "x$need_dash_r" = "xyes"; then
49                                         SSL_LIBS="$SSL_LIBS -R$ssldir/lib -R$ssldir"
50                                 fi
51                                 AC_MSG_RESULT([$ssldir (enabling RANDNUM and DHX support)])
52
53 dnl FIXME: The following looks crude and probably doesn't work properly.
54                                 dnl Check for the crypto library:
55                                 AC_CHECK_LIB(crypto, main)
56                                 dnl Check for "DES" library (for SSLeay, not openssl):
57                                 AC_CHECK_LIB(des, main)
58
59                                 AC_DEFINE(OPENSSL_DHX,  1, [Define if the OpenSSL DHX modules should be built])
60                                 AC_DEFINE(UAM_DHX,      1, [Define if the DHX UAM modules should be compiled])
61                                 compile_ssl=yes
62                                 break
63                         fi
64                 done
65                 if test "x$compile_ssl" = "xno"; then
66                         AC_MSG_RESULT([no])
67                 fi
68         fi
69         CFLAGS_REMOVE_USR_INCLUDE(SSL_CFLAGS)
70         LIB_REMOVE_USR_LIB(SSL_LIBS)
71         AC_SUBST(SSL_CFLAGS)
72         AC_SUBST(SSL_LIBS)
73         LIBS=$saved_LIBS
74 ])