From 66b26195d21f0889e7ccd0de25a5827bb3722196 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 27 Apr 2011 13:16:59 +0200 Subject: s3-waf: add pthreadpool support. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Volker, please check. Guenther Autobuild-User: Günther Deschner Autobuild-Date: Wed Apr 27 17:57:32 CEST 2011 on sn-devel-104 --- source3/lib/pthreadpool/wscript_build | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 source3/lib/pthreadpool/wscript_build (limited to 'source3/lib') diff --git a/source3/lib/pthreadpool/wscript_build b/source3/lib/pthreadpool/wscript_build new file mode 100644 index 0000000000..7679b58c44 --- /dev/null +++ b/source3/lib/pthreadpool/wscript_build @@ -0,0 +1,11 @@ +#!/usr/bin/env python + +bld.SAMBA3_SUBSYSTEM('PTHREADPOOL', + source='pthreadpool.c', + deps='pthread', + enabled=bld.env.WITH_PTHREADPOOL) + +bld.SAMBA3_BINARY('pthreadpooltest', + source='tests.c', + deps='PTHREADPOOL', + enabled=bld.env.WITH_PTHREADPOOL) -- cgit