diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2015-01-04 14:51:21 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2015-01-04 14:53:16 -0500 |
commit | 0cc785c7308c49b86f098e27f359a362f178b41c (patch) | |
tree | 140064260ce33d852e85a13b19cdb7355d866875 /src/redshift.c | |
parent | Fix #152: redshift: Loop in reset/manual/one-shot mode with Quartz (diff) | |
download | redshift-ng-0cc785c7308c49b86f098e27f359a362f178b41c.tar.gz redshift-ng-0cc785c7308c49b86f098e27f359a362f178b41c.tar.bz2 redshift-ng-0cc785c7308c49b86f098e27f359a362f178b41c.tar.xz |
redshift: Add noop pause() macro on windows platform
Build failed on windows platform since pause() is not available. The
function is not needed on the windows platform so we just define a
noop pause() macro.
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/redshift.c b/src/redshift.c index a813956..4fa9b85 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -53,6 +53,11 @@ #define MIN(x,y) ((x) < (y) ? (x) : (y)) #define MAX(x,y) ((x) > (y) ? (x) : (y)) +/* pause() is not defined on windows platform but is not needed either. + Use a noop macro instead. */ +#ifdef __WIN32__ +# define pause() +#endif #include "gamma-dummy.h" |