From 469e2fc36cea3bdfcd1ce983737b9a6148397237 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 16 May 2013 11:48:02 +0200 Subject: [PATCH] wscript: set conf.env.replace_add_global_pthread = True In Samba we currently add PTHREAD CFLAGS/LDFLAGS globally. The following changes will move the configure checks to lib/replace and the the default of adding the flags globally will change there. Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam Reviewed-by: Jeremy Allison --- wscript | 1 + 1 file changed, 1 insertion(+) diff --git a/wscript b/wscript index 80587ef349f..58af180d887 100644 --- a/wscript +++ b/wscript @@ -96,6 +96,7 @@ def configure(conf): conf.ADD_EXTRA_INCLUDES('#include/public #source4 #lib #source4/lib #source4/include #include #lib/replace') + conf.env.replace_add_global_pthread = True conf.RECURSE('lib/replace') conf.find_program('perl', var='PERL', mandatory=True) -- 2.11.4.GIT