From 0b823dce616c7d6c05417c0ae5c81cfc9e242dc3 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 17 Feb 2010 13:56:44 -0800 Subject: [PATCH] Add /opt/local/lib as a search path for gpg-error Why doesn't WAF just search LD_LIBRARY_PATH? --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 5800ff76dbf..339d545f5b8 100644 --- a/wscript +++ b/wscript @@ -133,7 +133,7 @@ def configure(conf): #libpath=['/usr/lib', '/usr/local/lib'], uselib_store='GNUTLS'): if conf.check(lib='gpg-error', - libpath=['/usr/lib', '/usr/local/lib'], + libpath=['/usr/lib', '/usr/local/lib', '/opt/local/lib'], uselib_store='GPGERROR'): conf.env.append_value("CCFLAGS", "-DEVCOM_HAVE_GNUTLS=1") conf.env.append_value("CXXFLAGS", "-DEVCOM_HAVE_GNUTLS=1")