From 8db96ce749e0183eda78bf5cfe74edfc5c4ffb7d Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Tue, 28 Feb 2006 09:33:56 +0000 Subject: [PATCH] On, windows, extension for Python modules should be .dll, not .so! [SVN r33171] --- src/tools/python.jam | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/python.jam b/src/tools/python.jam index 45f18d980..b871c686b 100644 --- a/src/tools/python.jam +++ b/src/tools/python.jam @@ -336,8 +336,8 @@ type.register PYTHON_EXTENSION : : SHARED_LIB ; # ordinary library. Therefore, we specify only suffixes # used for generation of targets. type.set-generated-target-suffix PYTHON_EXTENSION : : so ; -type.set-generated-target-suffix PYTHON_EXTENSION : NT : so ; -type.set-generated-target-suffix PYTHON_EXTENSION : CYGWIN : dll ; +type.set-generated-target-suffix PYTHON_EXTENSION : NT : dll ; +type.set-generated-target-suffix PYTHON_EXTENSION : CYGWIN : so ; rule python-extension ( name : sources * : requirements * : default-build * : usage-requirements * )