From 98da68d19d73dfc1085ab98181dc8a66aaa8d9e2 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 20 Dec 2006 13:27:15 +0000 Subject: [PATCH] Patch for HPUX from Boris Grubenko [SVN r36466] --- v2/tools/python.jam | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/v2/tools/python.jam b/v2/tools/python.jam index e3cb287cc..a9f5e4e29 100644 --- a/v2/tools/python.jam +++ b/v2/tools/python.jam @@ -286,6 +286,11 @@ rule init-unix ( version ? : root ? : includes ? : libraries ? : condition * ) extra-libs = ; } + case HPUX : + { + extra-libs = pthread rt ; + } + case * : extra-libs = pthread dl util ; }