From c4821ca360aadc07dc115da4232f0acac4e58046 Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Mon, 20 Mar 2006 08:48:58 +0000 Subject: [PATCH] Python/OSX fix from Noel Belcourt. This change addresses how Darwin handles compiling for frameworks. The python frameworks require specific #include syntax that is not present in the boost source code so this change specifically adds python framework includes to the compile line. [SVN r33402] --- src/tools/python.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/python.jam b/src/tools/python.jam index b871c686b..e75a406ac 100644 --- a/src/tools/python.jam +++ b/src/tools/python.jam @@ -186,7 +186,7 @@ rule init-mac ( version : root ? : includes ? : libraries ? ) : : MACOSX darwin : - : $(PYTHON_FRAMEWORK) + : $(includes) $(PYTHON_FRAMEWORK) ; }