2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-26 06:42:27 +00:00

Make AIX work again

[SVN r15737]
This commit is contained in:
Dave Abrahams
2002-10-05 17:29:32 +00:00
parent 33f139e516
commit 86489dd5a7
2 changed files with 17 additions and 4 deletions

View File

@@ -23,10 +23,20 @@ namespace boost { namespace python { namespace detail {
namespace
{
extern "C" void initlibbpl()
static PyMethodDef initial_methods[] = { { 0, 0, 0, 0 } };
extern "C" void initlibboost_python()
{
static PyMethodDef initial_methods[] = { { 0, 0, 0, 0 } };
Py_InitModule("libbpl", initial_methods);
Py_InitModule("libbboost_python", initial_methods);
}
extern "C" void initlibboost_python_debug()
{
Py_InitModule("libbboost_python_debug", initial_methods);
}
extern "C" void initlibboost_python_pydebug()
{
Py_InitModule("libbboost_python_pydebug", initial_methods);
}
struct find_and_open_file