From 0cc785c7308c49b86f098e27f359a362f178b41c Mon Sep 17 00:00:00 2001 From: Jon Lund Steffensen Date: Sun, 4 Jan 2015 14:51:21 -0500 Subject: 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. --- src/redshift.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/redshift.c') 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" -- cgit v1.2.3-70-g09d2