linux-headers: bump 4.{4, 9}.x series
[buildroot-gz.git] / package / nginx / 0006-auto-lib-openssl-conf-use-pkg-config.patch
blobb826a3c8e7a4198b9f0150246091e20ad38e754d
1 From 756556d127da291cad8a2c007a89124a692aef7f Mon Sep 17 00:00:00 2001
2 From: Martin Bark <martin@barkynet.com>
3 Date: Fri, 6 May 2016 14:48:31 +0100
4 Subject: [PATCH] auto/lib/openssl/conf: use pkg-config
6 Change to using pkg-config to find the path to openssl and its
7 dependencies.
9 Signed-off-by: Martin Bark <martin@barkynet.com>
10 ---
11 auto/lib/openssl/conf | 4 ++--
12 1 file changed, 2 insertions(+), 2 deletions(-)
14 diff --git a/auto/lib/openssl/conf b/auto/lib/openssl/conf
15 index 39d9602..995c6f3 100644
16 --- a/auto/lib/openssl/conf
17 +++ b/auto/lib/openssl/conf
18 @@ -50,8 +50,8 @@ else
19 ngx_feature_name="NGX_OPENSSL"
20 ngx_feature_run=no
21 ngx_feature_incs="#include <openssl/ssl.h>"
22 - ngx_feature_path=
23 - ngx_feature_libs="-lssl -lcrypto $NGX_LIBDL"
24 + ngx_feature_path="$(${PKG_CONFIG:=pkg-config} --cflags-only-I openssl|sed 's/-I//g')"
25 + ngx_feature_libs="$(${PKG_CONFIG:=pkg-config} --libs openssl)"
26 ngx_feature_test="SSL_CTX_set_options(NULL, 0)"
27 . auto/feature
29 --
30 2.8.2