David Cournapeau wrote: > it won't work in that case: I want to use a symbol which may or not > exist depending on the header version, not a symbol whose value may > change.
Is there some reason you need IFDEF in particular rather than just IF? Note that there's no way you're going to be able to test whether a symbol is defined in a .h file from Cython, since it knows nothing about the contents of .h files apart from what you tell it. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
