Newbie Developing a Python Extension

2006-11-24 Thread Jeremy
Hi, I have been working on Linux 2.6.9 to adapt a C++ module to work as a Python extension with the following setup.py file: from distutils.core import setup, Extension sm=Extension( 'tdma', define_macros=[('__USE_POSIX199309','1')], include_dirs=['/usr/include','/usr/include/python2.3'],

Re: Newbie Developing a Python Extension

2006-11-24 Thread Carl Banks
Jeremy wrote: Hi, I have been working on Linux 2.6.9 to adapt a C++ module to work as a Python extension with the following setup.py file: from distutils.core import setup, Extension sm=Extension( 'tdma', define_macros=[('__USE_POSIX199309','1')],