diff options
author | Mattias Andrée <m@maandree.se> | 2025-03-25 23:06:51 +0100 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2025-03-25 23:06:51 +0100 |
commit | 8fed0248b8c26a4135bd230ec9dea84c4ee23233 (patch) | |
tree | 098b52dd860a015a25b4b91e03e14ea3b31cbb30 /src/location.c | |
parent | Remove pointless inclusion guard (diff) | |
download | redshift-ng-8fed0248b8c26a4135bd230ec9dea84c4ee23233.tar.gz redshift-ng-8fed0248b8c26a4135bd230ec9dea84c4ee23233.tar.bz2 redshift-ng-8fed0248b8c26a4135bd230ec9dea84c4ee23233.tar.xz |
Add support for /etc/geolocation and guessing by timezone
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'src/location.c')
-rw-r--r-- | src/location.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/location.c b/src/location.c index 8ca4374..5979a2d 100644 --- a/src/location.c +++ b/src/location.c @@ -28,6 +28,10 @@ const struct location_provider *location_providers[] = { &corelocation_location_provider, #endif &manual_location_provider, +#ifndef WINDOWS + &geofile_location_provider, + &timezone_location_provider, +#endif NULL }; |