diff --git a/example/quickstart/boost-build.jam b/example/quickstart/boost-build.jam index a440ea9..cf910e7 100644 --- a/example/quickstart/boost-build.jam +++ b/example/quickstart/boost-build.jam @@ -2,6 +2,6 @@ # Software License, Version 1.0. (See accompanying # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) -# Edit this path to point at the tools/build/v2 subdirectory of your +# Edit this path to point at the tools/build/src subdirectory of your # Boost installation. Absolute paths work, too. -boost-build ../../../../tools/build/v2 ; +boost-build ../../../../tools/build/src ; diff --git a/example/quickstart/embedding.cpp b/example/quickstart/embedding.cpp index 65bcd16..71cb27b 100644 --- a/example/quickstart/embedding.cpp +++ b/example/quickstart/embedding.cpp @@ -53,7 +53,7 @@ void exec_test() std::cout << "registering extension module embedded_hello..." << std::endl; // Register the module with the interpreter - if (PyImport_AppendInittab("embedded_hello", initembedded_hello) == -1) + if (PyImport_AppendInittab("embedded_hello", PyInit_embedded_hello) == -1) throw std::runtime_error("Failed to add embedded_hello to the interpreter's " "builtin modules");