0006-auto-lib-openssl-conf-use-pkg-config.patch 1.0 KB

12345678910111213141516171819202122232425262728293031
  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
  5. Change to using pkg-config to find the path to openssl and its
  6. dependencies.
  7. Signed-off-by: Martin Bark <martin@barkynet.com>
  8. ---
  9. auto/lib/openssl/conf | 4 ++--
  10. 1 file changed, 2 insertions(+), 2 deletions(-)
  11. diff --git a/auto/lib/openssl/conf b/auto/lib/openssl/conf
  12. index 39d9602..995c6f3 100644
  13. --- a/auto/lib/openssl/conf
  14. +++ b/auto/lib/openssl/conf
  15. @@ -58,8 +58,8 @@ else
  16. ngx_feature_name="NGX_OPENSSL"
  17. ngx_feature_run=no
  18. ngx_feature_incs="#include <openssl/ssl.h>"
  19. - ngx_feature_path=
  20. - ngx_feature_libs="-lssl -lcrypto $NGX_LIBDL"
  21. + ngx_feature_path="$(${PKG_CONFIG:=pkg-config} --cflags-only-I openssl|sed 's/-I//g')"
  22. + ngx_feature_libs="$(${PKG_CONFIG:=pkg-config} --libs openssl)"
  23. ngx_feature_test="SSL_CTX_set_options(NULL, 0)"
  24. . auto/feature
  25. --
  26. 2.8.2