diff options
author | Tim Potter <tpot@samba.org> | 2005-09-21 05:39:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:38:33 -0500 |
commit | d191c7d9932b8e8ad96c4345a6ceca67326806ac (patch) | |
tree | 4849f856d446b363a64ab0e5900ac03db244e109 /source4/lib/tls | |
parent | 60cb7a42aa5a1cef0e65dee0a8efbde9341dcaf9 (diff) | |
download | samba-d191c7d9932b8e8ad96c4345a6ceca67326806ac.tar.gz samba-d191c7d9932b8e8ad96c4345a6ceca67326806ac.tar.xz samba-d191c7d9932b8e8ad96c4345a6ceca67326806ac.zip |
r10377: Save configuration stuff to sconf.cache so it isn't annoyingly run
at every single build. Run 'scons configure=1' or delete sconf.cache
to force checks to be re-run.
Jelmer, I think this stuff is cached in the .sconf_cache directory but
the message is still displayed and it looks like it caches the compiled
test object file not the actual result of the test.
(This used to be commit 9d001dc083937bbf5642af90bc8a8b1a27825de0)
Diffstat (limited to 'source4/lib/tls')
-rw-r--r-- | source4/lib/tls/SConscript | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source4/lib/tls/SConscript b/source4/lib/tls/SConscript index 3b1a1d7d4e..941955e9e3 100644 --- a/source4/lib/tls/SConscript +++ b/source4/lib/tls/SConscript @@ -1,6 +1,7 @@ Import('hostenv') hostenv.StaticLibrary('tls', ['tls.c', 'tlscert.c']) -conf = hostenv.Configure() -conf.CheckLibWithHeader('gnutls', 'gnutls/gnutls.h', 'c', 'gnutls_global_init()') -conf.Finish() +if hostenv['configure']: + conf = hostenv.Configure() + conf.CheckLibWithHeader('gnutls', 'gnutls/gnutls.h', 'c', 'gnutls_global_init()') + conf.Finish() |