From 4980cd772a6c81b528d5a40646f4f1d0dde17b16 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 8 Sep 2011 08:46:42 +1000 Subject: build: Remove _SAMBA_WAF_BUILD_ The _SAMBA_BUILD_ macro can pick the difference between autoconf and waf builds now Andrew Bartlett --- source3/passdb/machine_account_secrets.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/passdb') diff --git a/source3/passdb/machine_account_secrets.c b/source3/passdb/machine_account_secrets.c index e1b7855b01..16b563c2bb 100644 --- a/source3/passdb/machine_account_secrets.c +++ b/source3/passdb/machine_account_secrets.c @@ -57,7 +57,7 @@ bool secrets_store_domain_sid(const char *domain, const struct dom_sid *sid) { bool ret; -#ifdef _SAMBA_WAF_BUILD_ +#if _SAMBA_BUILD_ == 4 if (strequal(domain, get_global_sam_name()) && (pdb_capabilities() & PDB_CAP_ADS)) { /* If we have a ADS-capable passdb backend, we @@ -81,7 +81,7 @@ bool secrets_fetch_domain_sid(const char *domain, struct dom_sid *sid) struct dom_sid *dyn_sid; size_t size = 0; -#ifdef _SAMBA_WAF_BUILD_ +#if _SAMBA_BUILD_ == 4 if (strequal(domain, get_global_sam_name()) && (pdb_capabilities() & PDB_CAP_ADS)) { struct pdb_domain_info *domain_info; @@ -118,7 +118,7 @@ bool secrets_store_domain_guid(const char *domain, struct GUID *guid) { fstring key; -#ifdef _SAMBA_WAF_BUILD_ +#if _SAMBA_BUILD_ == 4 if (strequal(domain, get_global_sam_name()) && (pdb_capabilities() & PDB_CAP_ADS)) { /* If we have a ADS-capable passdb backend, we @@ -141,7 +141,7 @@ bool secrets_fetch_domain_guid(const char *domain, struct GUID *guid) size_t size = 0; struct GUID new_guid; -#ifdef _SAMBA_WAF_BUILD_ +#if _SAMBA_BUILD_ == 4 if (strequal(domain, get_global_sam_name()) && (pdb_capabilities() & PDB_CAP_ADS)) { struct pdb_domain_info *domain_info; -- cgit