aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.h
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/common.h
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 '')
-rw-r--r--src/common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/common.h b/src/common.h
index f1bd414..d9a268d 100644
--- a/src/common.h
+++ b/src/common.h
@@ -60,6 +60,7 @@
#endif
#include <libgamma.h>
+#include <libgeome.h>
#include <libred.h>
@@ -1669,6 +1670,10 @@ extern const struct location_provider geoclue2_location_provider;
#ifdef ENABLE_CORELOCATION
extern const struct location_provider corelocation_location_provider;
#endif
+#ifndef WINDOWS
+extern const struct location_provider geofile_location_provider;
+extern const struct location_provider timezone_location_provider;
+#endif
#if defined(__GNUC__)