diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2017-08-16 17:58:30 -0700 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2017-08-16 20:46:53 -0700 |
commit | 4adb93a448e701a9df13941c13da8bb92e778302 (patch) | |
tree | efe620c326b8b007d922e76df1363dcef35310f7 /src/Makefile.am | |
parent | Merge pull request #494 from jonls/contributing (diff) | |
download | redshift-ng-4adb93a448e701a9df13941c13da8bb92e778302.tar.gz redshift-ng-4adb93a448e701a9df13941c13da8bb92e778302.tar.bz2 redshift-ng-4adb93a448e701a9df13941c13da8bb92e778302.tar.xz |
Remove deprecated geoclue 1 location provider
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index d6dc149..73ead4b 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -9,15 +9,15 @@ AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" bin_PROGRAMS = redshift redshift_SOURCES = \ - redshift.c redshift.h \ - signals.c signals.h \ colorramp.c colorramp.h \ config-ini.c config-ini.h \ + gamma-dummy.c gamma-dummy.h \ + hooks.c hooks.h \ location-manual.c location-manual.h \ + redshift.c redshift.h \ + signals.c signals.h \ solar.c solar.h \ - systemtime.c systemtime.h \ - hooks.c hooks.h \ - gamma-dummy.c gamma-dummy.h + systemtime.c systemtime.h EXTRA_redshift_SOURCES = \ gamma-drm.c gamma-drm.h \ @@ -25,7 +25,8 @@ EXTRA_redshift_SOURCES = \ gamma-vidmode.c gamma-vidmode.h \ gamma-quartz.c gamma-quartz.h \ gamma-w32gdi.c gamma-w32gdi.h \ - location-geoclue.c location-geoclue.h \ + location-geoclue2.c location-geoclue2.h \ + location-corelocation.m location-corelocation.h \ windows/appicon.rc \ windows/versioninfo.rc @@ -69,16 +70,6 @@ redshift_LDADD += -lgdi32 endif -if ENABLE_GEOCLUE -redshift_SOURCES += location-geoclue.c location-geoclue.h -AM_CFLAGS += \ - $(GEOCLUE_CFLAGS) $(GEOCLUE_LIBS) \ - $(GLIB_CFLAGS) $(GLIB_LIBS) -redshift_LDADD += \ - $(GEOCLUE_LIBS) $(GEOCLUE_CFLAGS) - $(GLIB_LIBS) $(GLIB_CFLAGS) -endif - if ENABLE_GEOCLUE2 redshift_SOURCES += location-geoclue2.c location-geoclue2.h AM_CFLAGS += \ |