aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Lund Steffensen <jonlst@gmail.com>2015-01-04 14:51:21 -0500
committerJon Lund Steffensen <jonlst@gmail.com>2015-01-04 14:53:16 -0500
commit0cc785c7308c49b86f098e27f359a362f178b41c (patch)
tree140064260ce33d852e85a13b19cdb7355d866875
parentFix #152: redshift: Loop in reset/manual/one-shot mode with Quartz (diff)
downloadredshift-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.
-rw-r--r--src/redshift.c5
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"