diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-05 16:38:44 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-05 16:38:44 +0100 |
commit | 844a48da2d670be95a62a582aab73ad8145040e2 (patch) | |
tree | 1c20cd1646706d6af03bce48822568c5602a8616 /src/redshift.c | |
parent | Use colour temperature table from libred (diff) | |
download | redshift-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.c | 42 |
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))) |