diff options
author | musil <tmusil@users.sourceforge.net> | 2006-01-27 13:02:05 +0000 |
---|---|---|
committer | musil <tmusil@users.sourceforge.net> | 2006-01-27 13:02:05 +0000 |
commit | 23bcc8f5ac7fc96dadd06a52e58dac146a471a01 (patch) | |
tree | 9b4fcfa9c1d122dedc4875bb2921c3b134a257a0 | |
parent | ed61f361c0cc828bbde6d3f736af380621a2c134 (diff) |
default zexyconf.h for Windows
svn path=/trunk/externals/zexy/; revision=4503
-rw-r--r-- | src/zexyconf.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/zexyconf.h b/src/zexyconf.h new file mode 100644 index 0000000..1e02d87 --- /dev/null +++ b/src/zexyconf.h @@ -0,0 +1,25 @@ +/* this is a zexyconf.h for windows + * on unix-derivatives (linux, os-X,...) this file should be overwritten by configure + * via the template zexyconf.h.in + * + * if you cannot use configure to re-generate this file, make sure all the defines + * are set correctly + */ + + +/* Define if you have the <regex.h> header file. */ +#undef HAVE_REGEX_H + +/* Define if you have the <alloca.h> header file. */ +#undef HAVE_ALLOCA_H + +/* define if you want parallelport-support (direct access to the port address) */ +#define Z_WANT_LPT 1 + +/* define if you have the <linux/ppdev.h> header file. + * (for parport _device_ support) + * you need Z_WANT_LPT for this to have an effect ! + */ +#undef HAVE_LINUX_PPDEV_H + + |