From b1393087ace8289a13e09e5246ac0efec560e959 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 12 Apr 2010 09:12:29 +0200 Subject: lib/replace/wscript: rename REPLACE_H_SOURCE => REPLACE_HOSTCC_SOURCE metze --- lib/replace/wscript | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/replace/wscript b/lib/replace/wscript index 43e8e9ac40..5457b175d1 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -295,18 +295,19 @@ def configure(conf): def build(bld): bld.RECURSE('buildtools/wafsamba') - REPLACE_H_SOURCE = 'replace.c snprintf.c' + REPLACE_HOSTCC_SOURCE = 'replace.c snprintf.c' - if bld.CONFIG_SET('REPLACE_STRPTIME'): REPLACE_H_SOURCE += ' strptime.c' - if not bld.CONFIG_SET('HAVE_TIMEGM'): REPLACE_H_SOURCE += ' timegm.c' + if bld.CONFIG_SET('REPLACE_STRPTIME'): REPLACE_HOSTCC_SOURCE += ' strptime.c' + if not bld.CONFIG_SET('HAVE_TIMEGM'): REPLACE_HOSTCC_SOURCE += ' timegm.c' bld.SAMBA_SUBSYSTEM('LIBREPLACE_H', - REPLACE_H_SOURCE, + REPLACE_HOSTCC_SOURCE, + cflags='-DSOCKET_WRAPPER_DISABLE=1 -DNSS_WRAPPER_DISABLE=1 -D_SAMBA_HOSTCC_', group='compiler_libraries' ) - REPLACE_SOURCE = REPLACE_H_SOURCE + REPLACE_SOURCE = REPLACE_HOSTCC_SOURCE if bld.CONFIG_SET('REPLACE_GETPASS'): REPLACE_SOURCE += ' getpass.c' -- cgit