diff options
author | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-14 16:19:25 -0500 |
---|---|---|
committer | Jon Lund Steffensen <jonlst@gmail.com> | 2014-12-15 01:47:49 -0500 |
commit | ee7e91dd8692f51acfde6a534766ff391000ed82 (patch) | |
tree | cacf18fd8b6f2c1ac9a4d1951bd85de114fa5957 /.travis.yml | |
parent | systemtime: Use gettimeofday if POSIX timers not available (diff) | |
download | redshift-ng-ee7e91dd8692f51acfde6a534766ff391000ed82.tar.gz redshift-ng-ee7e91dd8692f51acfde6a534766ff391000ed82.tar.bz2 redshift-ng-ee7e91dd8692f51acfde6a534766ff391000ed82.tar.xz |
Fix #80: Add Geoclue2 location provider
This simply runs a GLib main loop when the location is requested
and tries to get the location from GeoClue2. We need to run a
main loop since the location is not immediately available, instead
it becomes available through a signal.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 9cca098..eef7b6c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,5 +8,6 @@ install: - sudo apt-get install -qq libxcb1-dev libxcb-randr0-dev - sudo apt-get install -qq libx11-dev libxxf86vm-dev - sudo apt-get install -qq libgeoclue-dev + - sudo apt-get install -qq libglib2.0-dev - sudo apt-get install -qq python3 -script: ./bootstrap && ./configure --enable-drm --enable-vidmode --enable-randr --enable-geoclue --enable-gui && make -j2 distcheck +script: ./bootstrap && ./configure --enable-drm --enable-vidmode --enable-randr --enable-geoclue --enable-geoclue2 --enable-gui && make -j2 distcheck |