| # Copyright (C) Igor Sysoev |
| if [ $OPENSSL != NONE ]; then |
| CORE_INCS="$CORE_INCS $OPENSSL/include" |
| 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" |
| CORE_LIBS="$CORE_LIBS -ldl" |
| if [ "$NGX_PLATFORM" != win32 ]; then |
| ngx_feature="OpenSSL library" |
| ngx_feature_name="NGX_OPENSSL" |
| ngx_feature_incs="#include <openssl/ssl.h>" |
| ngx_feature_libs="-lssl -lcrypto" |
| ngx_feature_test="SSL_library_init()" |
| if [ $ngx_found = yes ]; then |
| CORE_LIBS="$CORE_LIBS $ngx_feature_libs" |
| CORE_LIBS="$CORE_LIBS -ldl" |