diff options
author | Christoph Brill <egore911@egore911.de> | 2008-07-14 18:07:00 +0200 |
---|---|---|
committer | Christoph Brill <egore911@egore911.de> | 2008-07-14 18:07:00 +0200 |
commit | 63d2a8ce5b34c1d98798d44842b362c4ff77d526 (patch) | |
tree | 1c3e26fe216e26475337648a6d474e36582c27f6 /src/eventcomm.h | |
parent | 2476f0d6c75e0a410307212e796ac72725b86931 (diff) |
Build eventcomm on Linux systems only.
The old buildsystem defined "__LINUX" which enabled or disabled the complete
sources for eventcomm. The new buildsystem now adds the files to build
eventcomm dynamically if the host OS is Linux. This also fixes the bug
reported by Christian Schmitt.
Diffstat (limited to 'src/eventcomm.h')
-rw-r--r-- | src/eventcomm.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/eventcomm.h b/src/eventcomm.h index 6f30e1e..a4a9a44 100644 --- a/src/eventcomm.h +++ b/src/eventcomm.h @@ -27,14 +27,10 @@ #ifndef _EVENTCOMM_H_ #define _EVENTCOMM_H_ -#ifdef __LINUX - #include <linux/input.h> /* for auto-dev: */ #define DEV_INPUT_EVENT "/dev/input" #define EVENT_DEV_NAME "event" -#endif - #endif /* _EVENTCOMM_H_ */ |