Welcome to mirror list, hosted at ThFree Co, Russian Federation.

conf « openssl « lib « auto - github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 37c084f00e61160869c45918f62bb04b04345960 (plain)
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

# Copyright (C) Igor Sysoev


if [ $OPENSSL != NONE ]; then
    CORE_INCS="$CORE_INCS $OPENSSL/include"
    CORE_DEPS="$CORE_DEPS $OPENSSL_DEPS"
    CORE_SRCS="$CORE_SRCS $OPENSSL_SRCS"

    case "$CC" in
        *)
            have=NGX_OPENSSL . auto/have
            LINK_DEPS="$LINK_DEPS $OPENSSL/libssl.a $OPENSSL/libcrypto.a"
            CORE_LIBS="$CORE_LIBS $OPENSSL/libssl.a $OPENSSL/libcrypto.a"
        ;;

    esac

else

    if [ $PLATFORM != win32 ]; then
            OPENSSL=NO
            ngx_lib_cflags=

            ngx_lib_inc="#include <openssl/ssl.h>"
            ngx_lib="OpenSSL library"
            ngx_lib_test="SSL_library_init()"
            ngx_libs="-lssl -lcrypto"
            . auto/lib/test


        if [ $ngx_found = yes ]; then
            have=NGX_OPENSSL . auto/have
            CORE_DEPS="$CORE_DEPS $OPENSSL_DEPS"
            CORE_SRCS="$CORE_SRCS $OPENSSL_SRCS"
            CORE_LIBS="$CORE_LIBS $ngx_libs"
            OPENSSL=YES
            ngx_found=no
        fi

    fi

fi