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/config.mk | |
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/config.mk')
-rw-r--r-- | src/config.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.mk b/src/config.mk index d8e2a19..00a032c 100644 --- a/src/config.mk +++ b/src/config.mk @@ -12,9 +12,9 @@ PKGCONFIG_LDFLAGS = $(PKGCONFIG) --libs GEOCLUE_LIBS = glib-2.0 gio-2.0 -LIBS_PKGCONFIG = $(DRM_LIBS) $(GEOCLUE_LIBS) libgamma +LIBS_PKGCONFIG = $(GEOCLUE_LIBS) libgamma CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_GNU_SOURCE\ -DENABLE_GEOCLUE2 -DENABLE_COOPGAMMA CFLAGS = $$($(PKGCONFIG_CFLAGS) $(LIBS_PKGCONFIG)) -LDFLAGS = $$($(PKGCONFIG_LDFLAGS) $(LIBS_PKGCONFIG)) -lm -lcoopgamma -lred +LDFLAGS = $$($(PKGCONFIG_LDFLAGS) $(LIBS_PKGCONFIG)) -lm -lcoopgamma -lred -lgeome |