From 56f3965e9179f701b6b8c854102126571ed86a53 Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Tue, 29 Aug 2006 18:23:19 +0200 Subject: [PATCH] compile these classes for darwin --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 22e994808..96ce62ae0 100644 --- a/SConstruct +++ b/SConstruct @@ -468,7 +468,7 @@ core.add_sources ([ 'test.cc' ]) env = Environment () -if env['PLATFORM'] == 'posix': +if env['PLATFORM'] == 'posix' or env['PLATFORM'] == 'darwin': core.add_external_dep ('pthread') core.add_sources ([ 'unix-system-semaphore.cc',