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

Unix extension-modules are .so files!

[SVN r12116]
This commit is contained in:
Dave Abrahams
2001-12-18 17:57:06 +00:00
parent b8f02f7a39
commit cfe920c054
2 changed files with 16 additions and 2 deletions

View File

@@ -176,7 +176,14 @@ rule Link-PYD
declare-target-type PYD : <shared-linkable>true ;
gGENERATOR_FUNCTION(PYD) = python-files ;
SUFPYD = .pyd $(SUFDLL[2-]) ;
if $(NT)
{
SUFPYD = .pyd $(SUFDLL[2-]) ;
}
else
{
SUFPYD = $(SUFDLL) ;
}
PYDMODE = $(DLLMODE) ;
SHARED_TYPES += PYD ;