From a5c9a2a41432b86ff1c224190843667549d1e19d Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Fri, 23 Mar 2007 13:35:11 +0000 Subject: [PATCH] Removed pthread from hpux system libs per request of Boris Grubenko (see http://docs.hp.com/en/8759/options.htm#opt-mt) [SVN r37270] --- v2/tools/python.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/tools/python.jam b/v2/tools/python.jam index 64e196791..33855df6d 100644 --- a/v2/tools/python.jam +++ b/v2/tools/python.jam @@ -601,7 +601,7 @@ local rule system-library-dependencies ( target-os ) case darwin : return ; case windows : return ; - case hpux : return pthread rt ; + case hpux : return rt ; case * : return pthread dl gcc:util ; }