Browse Source

Don't override explicit openssl paths with pkg-config results.

v0.7.4-release
Dean McNamee 14 years ago
committed by Ryan Dahl
parent
commit
4a6f4511c8
  1. 4
      wscript

4
wscript

@ -288,7 +288,9 @@ def configure(conf):
conf.fatal("Install the libexecinfo port from /usr/ports/devel/libexecinfo.")
if not Options.options.without_ssl:
if conf.check_cfg(package='openssl',
# Don't override explicitly supplied openssl paths with pkg-config results.
explicit_openssl = o.openssl_includes or o.openssl_libpath
if not explicit_openssl and conf.check_cfg(package='openssl',
args='--cflags --libs',
uselib_store='OPENSSL'):
Options.options.use_openssl = conf.env["USE_OPENSSL"] = True

Loading…
Cancel
Save