mirror of https://github.com/nodejs/node.git
Add /opt/local/lib as a search path for gpg-error
Why doesn't WAF just search LD_LIBRARY_PATH?pull/22966/head
parent
c622142692
commit
0b823dce61
2
wscript
2
wscript
|
@ -133,7 +133,7 @@ def configure(conf):
|
||||||
#libpath=['/usr/lib', '/usr/local/lib'],
|
#libpath=['/usr/lib', '/usr/local/lib'],
|
||||||
uselib_store='GNUTLS'):
|
uselib_store='GNUTLS'):
|
||||||
if conf.check(lib='gpg-error',
|
if conf.check(lib='gpg-error',
|
||||||
libpath=['/usr/lib', '/usr/local/lib'],
|
libpath=['/usr/lib', '/usr/local/lib', '/opt/local/lib'],
|
||||||
uselib_store='GPGERROR'):
|
uselib_store='GPGERROR'):
|
||||||
conf.env.append_value("CCFLAGS", "-DEVCOM_HAVE_GNUTLS=1")
|
conf.env.append_value("CCFLAGS", "-DEVCOM_HAVE_GNUTLS=1")
|
||||||
conf.env.append_value("CXXFLAGS", "-DEVCOM_HAVE_GNUTLS=1")
|
conf.env.append_value("CXXFLAGS", "-DEVCOM_HAVE_GNUTLS=1")
|
||||||
|
|
Loading…
Reference in New Issue