config.h.in.mod 495 B

12345678910111213141516171819202122232425262728
  1. /* config.h */
  2. #define _GNU_SOURCE
  3. #define VERSION "@VERSION@"
  4. #ifndef DEBUG
  5. #define NDEBUG
  6. #endif
  7. /* All these settings should eventually be configurable via libPropList */
  8. /* Note that within the program, the first source is 0 and not 1
  9. */
  10. #define DEFAULT_SOURCE 0
  11. #define DEFAULT_MIXER_DEVICE "/dev/mixer2"
  12. /* units: seconds
  13. */
  14. #define MAX_DOUBLE_CLICK_TIME 0.5
  15. /* X11 wheel button codes (for wheel mice)
  16. */
  17. #define BUTTON_WHEEL_UP 4
  18. #define BUTTON_WHEEL_DOWN 5
  19. /* end config.h */