$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-build] python.jam FreeBSD small patch
From: Alexander Sack (pisymbol_at_[hidden])
Date: 2008-10-24 14:09:26
--- python.jam.0 Fri Oct 24 14:04:36 2008
+++ python.jam Fri Oct 24 14:05:05 2008
@@ -652,6 +652,8 @@
case hpux : return <library>rt ;
case aix : return <library>pthread <library>dl ;
+
+ case *bsd : return <library>pthread <toolset>gcc:<library>util ;
case * : return <library>pthread <library>dl
<toolset>gcc:<library>util ;
}
Was wondering if this simple patch could be committed as well. There
is no libdl on FreeBSD and this prevents the error message during
build of libboost_python etc. This was actually part of the
Boost-1.34 FreeBSD official port which I rediscovered on 1.36.0.
Thanks!
-aps