From 67857be6ac7b6e2072761472a6479ca0c7fff18d Mon Sep 17 00:00:00 2001 From: infirit Date: Tue, 12 Nov 2013 17:43:33 +0100 Subject: Fix --with-libgl config option --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index f67d67b..b513f2b 100644 --- a/configure.ac +++ b/configure.ac @@ -567,7 +567,7 @@ dnl --------------------------------------------------------------------------- dnl - Check for GL dnl --------------------------------------------------------------------------- -AC_ARG_WITH(gl, [ --with-libgl build with GL support]) +AC_ARG_WITH(libgl, [ --with-libgl build with GL support]) have_libgl=no GL_LIBS="" -- cgit v1.2.1 From b1b187cdb8bdfb075177f55ab27c8a1e2e5d1913 Mon Sep 17 00:00:00 2001 From: infirit Date: Wed, 13 Nov 2013 01:27:49 +0100 Subject: Re-add erroneously removed opening semicolon --- savers/floaters.c | 1 + 1 file changed, 1 insertion(+) diff --git a/savers/floaters.c b/savers/floaters.c index 755488a..b693ed5 100644 --- a/savers/floaters.c +++ b/savers/floaters.c @@ -1285,6 +1285,7 @@ main (int argc, style = drawing_area->style; state = (GtkStateType) 0; while (state < (GtkStateType) G_N_ELEMENTS (style->bg)) + { gtk_widget_modify_bg (drawing_area, state, &style->mid[state]); state++; } -- cgit v1.2.1