Ticket #1074: patch-tools_build_v2_tools_python.jam

File patch-tools_build_v2_tools_python.jam, 397 bytes (added by barner@…, 15 years ago)

Fix build of Boost.Python on *BSD: don't link against libdl

Line 
1--- ./tools/build/v2/tools/python.jam.orig Wed Jun 27 10:33:39 2007
2+++ ./tools/build/v2/tools/python.jam Wed Jun 27 10:39:36 2007
3@@ -625,6 +625,7 @@
4 case windows : return ;
5
6 case hpux : return <library>rt ;
7+ case *bsd : return <library>pthread <toolset>gcc:<library>util ;
8
9 case * : return <library>pthread <library>dl <toolset>gcc:<library>util ;
10 }