aboutsummaryrefslogtreecommitdiffstats
path: root/src/redshift.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/redshift.c')
-rw-r--r--src/redshift.c42
1 files changed, 1 insertions, 41 deletions
diff --git a/src/redshift.c b/src/redshift.c
index d2e79f6..60e2441 100644
--- a/src/redshift.c
+++ b/src/redshift.c
@@ -59,12 +59,9 @@ int poll(struct pollfd *fds, int nfds, int timeout) { abort(); return -1; }
# define gettext(s) s
#endif
-#include "redshift.h"
+#include "common.h"
#include "config-ini.h"
#include "solar.h"
-#include "systemtime.h"
-#include "hooks.h"
-#include "signals.h"
#include "options.h"
/* pause() is not defined on windows platform but is not needed either.
@@ -73,43 +70,6 @@ int poll(struct pollfd *fds, int nfds, int timeout) { abort(); return -1; }
# define pause()
#endif
-#include "gamma-dummy.h"
-
-#ifdef ENABLE_COOPGAMMA
-# include "gamma-coopgamma.h"
-#endif
-
-#ifdef ENABLE_DRM
-# include "gamma-drm.h"
-#endif
-
-#ifdef ENABLE_RANDR
-# include "gamma-randr.h"
-#endif
-
-#ifdef ENABLE_VIDMODE
-# include "gamma-vidmode.h"
-#endif
-
-#ifdef ENABLE_QUARTZ
-# include "gamma-quartz.h"
-#endif
-
-#ifdef ENABLE_WINGDI
-# include "gamma-w32gdi.h"
-#endif
-
-
-#include "location-manual.h"
-
-#ifdef ENABLE_GEOCLUE2
-# include "location-geoclue2.h"
-#endif
-
-#ifdef ENABLE_CORELOCATION
-# include "location-corelocation.h"
-#endif
-
#undef CLAMP
#define CLAMP(lo,mid,up) (((lo) > (mid)) ? (lo) : (((mid) < (up)) ? (mid) : (up)))