[Python-checkins] r77347 - python/branches/py3k-cdecimal/setup.py

Mark Dickinson dickinsm at gmail.com
Thu Jan 7 14:52:32 CET 2010


On Thu, Jan 7, 2010 at 1:23 PM, stefan.krah <python-checkins at python.org> wrote:
> Author: stefan.krah
> Date: Thu Jan  7 14:19:38 2010
> New Revision: 77347
>
> Log:
> Add build instructions for cdecimal
>
> Modified:
>   python/branches/py3k-cdecimal/setup.py
>
> Modified: python/branches/py3k-cdecimal/setup.py
> ==============================================================================
> --- python/branches/py3k-cdecimal/setup.py      (original)
> +++ python/branches/py3k-cdecimal/setup.py      Thu Jan  7 14:19:38 2010
> @@ -7,7 +7,7 @@
>  from glob import glob

[...]
> +        ext = Extension (
> +            'cdecimal',
> +            define_macros=define_macros,
> +            undef_macros=['NDEBUG'],
> +            extra_compile_args=extra_compile_args,
> +            sources=sources,
> +            extra_objects=extra_objects
> +        )

Should this also include a 'depends' field for the cdecimal/*.h files?


More information about the Python-checkins mailing list