aboutsummaryrefslogtreecommitdiffstats
path: root/src/redshift.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-05 16:38:44 +0100
committerMattias Andrée <m@maandree.se>2025-03-05 16:38:44 +0100
commit844a48da2d670be95a62a582aab73ad8145040e2 (patch)
tree1c20cd1646706d6af03bce48822568c5602a8616 /src/redshift.c
parentUse colour temperature table from libred (diff)
downloadredshift-ng-844a48da2d670be95a62a582aab73ad8145040e2.tar.gz
redshift-ng-844a48da2d670be95a62a582aab73ad8145040e2.tar.bz2
redshift-ng-844a48da2d670be95a62a582aab73ad8145040e2.tar.xz
Unify header files (so far most)
Signed-off-by: Mattias Andrée <m@maandree.se>
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)))