﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
122	target-os not always set up?	Dave Abrahams	ghost	"In order to get the right
suffix on python extensions built for cygwin, it seems to me that the following ought to have been enough:

{{{
type.set-generated-target-suffix PYTHON_EXTENSION : : so ;
type.set-generated-target-suffix PYTHON_EXTENSION : <target-os>windows : pyd ;
type.set-generated-target-suffix PYTHON_EXTENSION : <target-os>cygwin : dll ;
}}}

but if I do that, cygwin PYTHON_EXTENSIONs end up with a .so extension

Instead, I had to do:

{{{
type.set-generated-target-suffix PYTHON_EXTENSION : : so ;
type.set-generated-target-suffix PYTHON_EXTENSION : <os>windows : pyd ;
type.set-generated-target-suffix PYTHON_EXTENSION : <os>cygwin : dll ;
type.set-generated-target-suffix PYTHON_EXTENSION : <os>cygwin <target-os>windows : pyd ;
type.set-generated-target-suffix PYTHON_EXTENSION : <os>windows <target-os>cygwin : dll ;
}}}

"	defect	closed	major		component1		fixed		rene@…
