2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 00:52:16 +00:00

On, windows, extension for Python modules should be .dll, not .so!

[SVN r33171]
This commit is contained in:
Vladimir Prus
2006-02-28 09:33:56 +00:00
parent e069df21af
commit 8db96ce749

View File

@@ -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 : <os>NT : so ;
type.set-generated-target-suffix PYTHON_EXTENSION : <os>CYGWIN : dll ;
type.set-generated-target-suffix PYTHON_EXTENSION : <os>NT : dll ;
type.set-generated-target-suffix PYTHON_EXTENSION : <os>CYGWIN : so ;
rule python-extension ( name : sources * : requirements * : default-build * :
usage-requirements * )