aboutsummaryrefslogtreecommitdiffstats
path: root/src/location.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-25 23:06:51 +0100
committerMattias Andrée <m@maandree.se>2025-03-25 23:06:51 +0100
commit8fed0248b8c26a4135bd230ec9dea84c4ee23233 (patch)
tree098b52dd860a015a25b4b91e03e14ea3b31cbb30 /src/location.c
parentRemove pointless inclusion guard (diff)
downloadredshift-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.c4
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
};