From 01447a62c3b5b2ccdb359519a0c8a8eda4cc42c2 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Wed, 22 Mar 2006 14:13:43 +0000 Subject: [PATCH] Make dependents of Python link to 'util' library on Unix. [SVN r33440] --- src/tools/python.jam | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/tools/python.jam b/src/tools/python.jam index 5ffc48612..e28734979 100644 --- a/src/tools/python.jam +++ b/src/tools/python.jam @@ -46,7 +46,10 @@ project python ; # Dynamic linker lib. Necessary to specify it explicitly # on some platforms. -lib dl ; +lib dl ; +# This contains 'openpty' function need by python. Again, on +# some system need to pass this to linker explicitly. +lib util ; # Initializes the Python toolset. @@ -140,7 +143,7 @@ rule init-unix ( version ? : root ? : includes ? : libraries ? : condition * ) ; alias python - : dl + : dl util : $(condition) : : $(includes)