From 254b1e2a5704dddb077bde88f7c273f75902ef80 Mon Sep 17 00:00:00 2001 From: Jon Lund Steffensen Date: Sun, 13 Apr 2014 22:10:34 +0200 Subject: Fix #67: Geoclue should pull in Glib as dependency Add checks in configure.ac for Glib and pull in through Makefile.am when Geoclue support is enabled. --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index d4bfc68..339f0c8 100644 --- a/configure.ac +++ b/configure.ac @@ -17,12 +17,14 @@ AM_GNU_GETTEXT_VERSION([0.17]) AM_GNU_GETTEXT([external]) PKG_CHECK_MODULES([DRM], [libdrm], [have_drm=yes], [have_drm=no]) + PKG_CHECK_MODULES([X11], [x11], [have_x11=yes], [have_x11=no]) PKG_CHECK_MODULES([XF86VM], [xxf86vm], [have_xf86vm=yes], [have_xf86vm=no]) PKG_CHECK_MODULES([XCB], [xcb], [have_xcb=yes], [have_xcb=no]) PKG_CHECK_MODULES([XCB_RANDR], [xcb-randr], [have_xcb_randr=yes], [have_xcb_randr=no]) +PKG_CHECK_MODULES([GLIB], [glib-2.0 gobject-2.0], [have_glib=yes], [have_glib=no]) PKG_CHECK_MODULES([GEOCLUE], [geoclue], [have_geoclue=yes], [have_geoclue=no]) AC_CHECK_HEADER([windows.h], [have_windows_h=yes], [have_windows_h=no]) @@ -133,7 +135,7 @@ AC_ARG_ENABLE([geoclue], [AC_HELP_STRING([--enable-geoclue], [enable Geoclue location provider])], [enable_geoclue=$enableval],[enable_geoclue=maybe]) AS_IF([test "x$enable_geoclue" != xno], [ - AS_IF([test "x$have_geoclue" = xyes], [ + AS_IF([test "x$have_geoclue" = xyes -a "x$have_glib" = xyes], [ AC_DEFINE([ENABLE_GEOCLUE], 1, [Define to 1 to enable Geoclue location provider]) AC_MSG_RESULT([yes]) -- cgit v1.2.3-70-g09d2 From 565ffc3c5030e2134c8caf655f89a0214018ce95 Mon Sep 17 00:00:00 2001 From: Jon Lund Steffensen Date: Sun, 20 Apr 2014 19:44:07 +0200 Subject: Update NEWS and configure.ac for 1.9.1 release --- NEWS | 11 +++++++++++ configure.ac | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/NEWS b/NEWS index f751138..6f75ec1 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,13 @@ +v1.9.1 (2014-04-20) +* Fix: Do not distribute redshift-gtk, only redshift-gtk.in. +* Fix: Geoclue support should pull in Glib as dependency. +* geoclue: Fix segfault when error is NULL (Mattias Andrée). +* geoclue: Set DISPLAY=:0 to work around issue when outside X + (Mattias Andrée). +* redshift-gtk: Fix crash when toggling state using the status icon. +* redshift-gtk: Fix line splitting logic (Maks Verver). + v1.9 (2014-04-06) * Use improved color scheme provided by Ingo Thies. * Add drm driver which will apply adjustments on linux consoles @@ -15,6 +24,8 @@ v1.9 (2014-04-06) file (Mattias Andrée). * Load config from %LOCALAPPDATA%\redshift.conf on Windows (TingPing). * Add RPM spec for Fedora in contrib. +* redshift-gtk has been ported to Python3 and new PyGObject bindings + for Python. v1.8 (2013-10-21) * IMPORTANT: gtk-redshift has changed name to redshift-gtk. diff --git a/configure.ac b/configure.ac index 339f0c8..deae0cf 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([redshift], [1.9], [https://github.com/jonls/redshift/issues]) +AC_INIT([redshift], [1.9.1], [https://github.com/jonls/redshift/issues]) AC_CONFIG_SRCDIR([src/redshift.c]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([foreign subdir-objects dist-xz]) -- cgit v1.2.3-70-g09d2