diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-24 17:01:31 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:05 +1000 |
commit | 17f4485722d507f04e95c358d22570c499d14c62 (patch) | |
tree | d4bbc6a57b9c50cab9484e6461f28a310c308d38 /source4 | |
parent | 65ffd1240df9edfbcfe62cf87a1e29c4a4bb9ec1 (diff) | |
download | samba-17f4485722d507f04e95c358d22570c499d14c62.tar.gz samba-17f4485722d507f04e95c358d22570c499d14c62.tar.bz2 samba-17f4485722d507f04e95c358d22570c499d14c62.zip |
s4-waf: disable_gnutls is gone
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/tls/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/tls/wscript b/source4/lib/tls/wscript index c8427c781f..020f2502fd 100644 --- a/source4/lib/tls/wscript +++ b/source4/lib/tls/wscript @@ -21,7 +21,7 @@ def configure(conf): args='"gnutls >= 1.4.0" --cflags --libs', msg='Checking for gnutls >= 1.4.0', mandatory=False) - if 'HAVE_GNUTLS' in conf.env and not Options.options.disable_gnutls: + if 'HAVE_GNUTLS' in conf.env: conf.DEFINE('ENABLE_GNUTLS', 1) conf.CHECK_FUNCS_IN('gnutls_global_init', 'gnutls', |