diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-07 17:53:54 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:44 +1000 |
commit | 332553d8abb0711a2c38d1499b22194c62c80bd2 (patch) | |
tree | e25570c054e3cefe2fa640f0f0e606ba2a013e79 /source4/lib/tls | |
parent | 71b5f97cd0e4346901da4d0361dcde3f98c19210 (diff) | |
download | samba-332553d8abb0711a2c38d1499b22194c62c80bd2.tar.gz samba-332553d8abb0711a2c38d1499b22194c62c80bd2.tar.bz2 samba-332553d8abb0711a2c38d1499b22194c62c80bd2.zip |
build: check for libgpg-error
Diffstat (limited to 'source4/lib/tls')
-rw-r--r-- | source4/lib/tls/wscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/lib/tls/wscript b/source4/lib/tls/wscript index 4bf55c8197..24929e4c80 100644 --- a/source4/lib/tls/wscript +++ b/source4/lib/tls/wscript @@ -21,7 +21,9 @@ def configure(conf): conf.CHECK_TYPES('gnutls_datum gnutls_datum_t') conf.CHECK_HEADERS('gcrypt.h') - conf.CHECK_FUNCS_IN('gpg_err_code_from_errno gcry_control', 'gcrypt') + conf.CHECK_FUNCS_IN('gcry_control', 'gcrypt') + conf.CHECK_FUNCS_IN('gpg_err_code_from_errno', 'gpg-error') + def build(bld): bld.SAMBA_SUBSYSTEM('LIBTLS', |