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/redshift.c | |
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/redshift.c')
-rw-r--r-- | src/redshift.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/src/redshift.c b/src/redshift.c index 41629cc..ead3a84 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -81,10 +81,6 @@ #include "location-manual.h" -#ifdef ENABLE_GEOCLUE -# include "location-geoclue.h" -#endif - #ifdef ENABLE_GEOCLUE2 # include "location-geoclue2.h" #endif @@ -195,28 +191,11 @@ static const gamma_method_t gamma_methods[] = { /* Union of state data for location providers */ typedef union { location_manual_state_t manual; -#ifdef ENABLE_GEOCLUE - location_geoclue_state_t geoclue; -#endif } location_state_t; /* Location provider method structs */ static const location_provider_t location_providers[] = { -#ifdef ENABLE_GEOCLUE - { - "geoclue", - (location_provider_init_func *)location_geoclue_init, - (location_provider_start_func *)location_geoclue_start, - (location_provider_free_func *)location_geoclue_free, - (location_provider_print_help_func *) - location_geoclue_print_help, - (location_provider_set_option_func *) - location_geoclue_set_option, - (location_provider_get_location_func *) - location_geoclue_get_location - }, -#endif #ifdef ENABLE_GEOCLUE2 { "geoclue2", |