diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-10-19 09:48:37 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2006-10-19 09:48:37 +0000 |
commit | c5588f55f0428e0cb6b730004c45b45e7529e703 (patch) | |
tree | 4e8bae060733e3dbf220ddb66c60dc99056cae19 /src/zexy.h | |
parent | 9fa1ac4431fbceb0d3472dc9d8191c129169cdac (diff) |
protect zexyconf.h against re-inclusion;
use the protection in zexy.h (so we can force zexyconf.h to not be
included)
svn path=/trunk/externals/zexy/; revision=6143
Diffstat (limited to 'src/zexy.h')
-rw-r--r-- | src/zexy.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -39,7 +39,13 @@ # endif #endif -#include "zexyconf.h" +/* usually the re-inclusion magic is done in the header-file itself + * however, we do it outside, so we can force zexyconf.h to not be used + * (e.g. from by definig the INCLUDE_SH1T in externals/build/src/* + */ +#ifndef INCLUDE_ZEXYCONF_H__ +# include "zexyconf.h" +#endif /* INCLUDE_ZEXYCONF_H__ */ #include "m_pd.h" |