distinguishing octave versions with ifdef

Xavier Delacour xavier.delacour at gmail.com
Sun Jul 5 19:25:00 CDT 2009


I would like to make oct-file plugins that compile properly against
multiple versions of octave, in the face of internal API changes.
Ideally I want something like

#if OCTAVE_API_VERSION >= 37
// use new api
#else
// use old api
#endif

In src/version.h I see

#define OCTAVE_API_VERSION "api-v37"

which is difficult to use from the preprocessor.

Can someone suggest a way to do what I want? (without resorting to
configure magic and generating my own defines, etc).

Thanks,
Xavier


More information about the Help-octave mailing list