I have a python package that builds its own extension module. currently I'm doing all the compilation in setup.py as an ext_module, but I really need AC_CHECK_LIB type capability - is there something like this for setup.py, or do I need to write a autoconf for my module?
Specific case here is that quite a few distros now have iconv included in libc, but I still need to support distros where -liconv needs to be passed to gcc. How can I check if iconv functionality is included in libc or not?
Should I skip doing all this through setup.py, and use autoconf?
Thanks!
From my poking around, it doesn't look like there's much you can do. You might have luck using
autoconf
to generatesetup.py
, or you could useautomake
andlibtool
and do the whole thing with autofoo. Automake provides a macroAM_PATH_PYTHON
that sets a whole pile of useful variables and gives the following example for declaring an extension module: