diff options
author | Andriy Syrovenko <andriys@gmail.com> | 2012-05-26 23:41:16 +0300 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-05-27 13:15:56 +1000 |
commit | c85f33458fff24c472ad440de3bbc15ee8f94f53 (patch) | |
tree | 05f4ddf5780c368f7b2ac68301f1f8e7d9d0e370 /source3 | |
parent | 6634360ce55a84319f197be44d47fc4f4c3ef4d5 (diff) | |
download | samba-c85f33458fff24c472ad440de3bbc15ee8f94f53.tar.gz samba-c85f33458fff24c472ad440de3bbc15ee8f94f53.tar.bz2 samba-c85f33458fff24c472ad440de3bbc15ee8f94f53.zip |
Eliminate dependency on an external uuid library.
Diffstat (limited to 'source3')
-rwxr-xr-x | source3/wscript | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/source3/wscript b/source3/wscript index 0b36b22e61..6aa4c97c49 100755 --- a/source3/wscript +++ b/source3/wscript @@ -785,11 +785,7 @@ int i; i = PAM_RADIO_TYPE; mandatory=True, msg="Checking whether setuidx is available") if Options.options.with_dnsupdate: - conf.CHECK_HEADERS('uuid/uuid.h') - conf.CHECK_FUNCS_IN('uuid_generate', 'uuid') - if not conf.CONFIG_SET('HAVE_UUID_UUID_H') and not conf.CONFIG_SET('HAVE_UUID_GENERATE'): - Logs.warn("--with-dnsupdate=yes but uuid support not sufficient") - elif not conf.CONFIG_SET('HAVE_KRB5'): + if not conf.CONFIG_SET('HAVE_KRB5'): Logs.warn("--with-dnsupdate=yes but gssapi support not sufficient") else: conf.DEFINE('WITH_DNS_UPDATES', 1) |