summaryrefslogtreecommitdiffhomepage
path: root/auto/ssltls
blob: f034b758dd218a320faef3f7fd98522bf4a2657b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184

# Copyright (C) Igor Sysoev
# Copyright (C) NGINX, Inc.


NXT_OPENSSL_CFLAGS=
NXT_OPENSSL_LIBS=
NXT_GNUTLS_CFLAGS=
NXT_GNUTLS_LIBS=
NXT_OPENSSL_LIBS=
NXT_CYASSL_CFLAGS=
NXT_CYASSL_LIBS=
NXT_POLARSSL_CFLAGS=
NXT_POLARSSL_LIBS=


if [ $NXT_OPENSSL = YES ]; then

    nxt_feature="OpenSSL library"
    nxt_feature_name=NXT_HAVE_OPENSSL
    nxt_feature_run=yes
    nxt_feature_incs=
    nxt_feature_libs="-lssl -lcrypto"
    nxt_feature_test="#include <openssl/ssl.h>

                      int main() {
                          SSL_library_init();
                          return 0;
                      }"
    . auto/feature


    if [ $nxt_found = yes ]; then
        NXT_TLS=YES
        NXT_OPENSSL_LIBS="$nxt_feature_libs"

        nxt_feature="OpenSSL version"
        nxt_feature_name=NXT_HAVE_OPENSSL_VERSION
        nxt_feature_run=value
        nxt_feature_test="#include <openssl/ssl.h>

                          int main() {
                              printf(\"\\\"%s\\\"\",
                                     SSLeay_version(SSLEAY_VERSION));
                              return 0;
                          }"
        . auto/feature

    else
        $echo
        $echo $0: error: no OpenSSL library found.
        $echo
        exit 1;
    fi
fi


if [ $NXT_GNUTLS = YES ]; then

    if /bin/sh -c "(pkg-config gnutls --exists)" >> $NXT_AUTOCONF_ERR 2>&1;
    then
        NXT_GNUTLS_CFLAGS=`pkg-config gnutls --cflags`
        NXT_GNUTLS_LIBS=`pkg-config gnutls --libs`

        nxt_feature="GnuTLS library"
        nxt_feature_name=NXT_HAVE_GNUTLS
        nxt_feature_run=yes
        nxt_feature_incs=$NXT_GNUTLS_CFLAGS
        nxt_feature_libs=$NXT_GNUTLS_LIBS
        nxt_feature_test="#include <gnutls/gnutls.h>

                          int main() {
                              gnutls_global_init();
                              gnutls_global_deinit();
                              return 0;
                          }"
        . auto/feature


        if [ $nxt_found = yes ]; then
            NXT_TLS=YES

            $echo " + GnuTLS version: `pkg-config gnutls --modversion`"


            nxt_feature="gnutls_transport_set_vec_push_function"
            nxt_feature_name=NXT_HAVE_GNUTLS_VEC_PUSH
            nxt_feature_run=no
            nxt_feature_incs=$NXT_GNUTLS_CFLAGS
            nxt_feature_libs=$NXT_GNUTLS_LIBS
            nxt_feature_test="#include <gnutls/gnutls.h>

                      int main() {
                          gnutls_transport_set_vec_push_function(NULL, NULL);
                          return 0;
                      }"
            . auto/feature


            nxt_feature="gnutls_global_set_time_function"
            nxt_feature_name=NXT_HAVE_GNUTLS_SET_TIME
            nxt_feature_run=no
            nxt_feature_incs=$NXT_GNUTLS_CFLAGS
            nxt_feature_libs=$NXT_GNUTLS_LIBS
            nxt_feature_test="#include <gnutls/gnutls.h>

                      int main() {
                          gnutls_global_set_time_function(NULL);
                          return 0;
                      }"
            . auto/feature

        else
            $echo
            $echo $0: error: no GnuTLS library found.
            $echo
            exit 1;
        fi
    fi
fi


if [ $NXT_CYASSL = YES ]; then

    nxt_feature="CyaSSL library"
    nxt_feature_name=NXT_HAVE_CYASSL
    nxt_feature_run=yes
    nxt_feature_incs=
    nxt_feature_libs="-lcyassl"
    nxt_feature_test="#include <cyassl/ssl.h>

                      int main() {
                          CyaSSL_Init();
                          CyaSSL_Cleanup();
                          return 0;
                      }"
    . auto/feature


    if [ $nxt_found = yes ]; then
        NXT_TLS=YES
        NXT_CYASSL_CFLAGS="$nxt_feature_incs"
        NXT_CYASSL_LIBS="$nxt_feature_libs"

    else
        $echo
        $echo $0: error: no CyaSSL library found.
        $echo
        exit 1;
    fi
fi


if [ $NXT_POLARSSL = YES ]; then

    nxt_feature="PolarSSL library"
    nxt_feature_name=NXT_HAVE_POLARSSL
    nxt_feature_run=yes
    nxt_feature_incs=
    nxt_feature_libs="-lpolarssl"
    nxt_feature_test="#include <polarssl/ssl.h>

                      int main() {
                          ssl_context  ssl;
                          memset(&ssl, '\0', sizeof(ssl));
                          ssl_init(&ssl);
                          ssl_free(&ssl);
                          return 0;
                      }"
    . auto/feature


    if [ $nxt_found = yes ]; then
        NXT_TLS=YES
        NXT_POLARSSL_CFLAGS="$nxt_feature_incs"
        NXT_POLARSSL_LIBS="$nxt_feature_libs"

    else
        $echo
        $echo $0: error: no PolarSSL library found.
        $echo
        exit 1;
    fi
fi