From 19ce30d05eebc8c68b066bafc0185367a6ee9dbf Mon Sep 17 00:00:00 2001 From: Bruce Cowan <bruce@bcowan.me.uk> Date: Tue, 9 Jul 2013 11:23:20 +0100 Subject: [PATCH] Change versions to minimum requirements --- Makefile | 4 ++-- rugby-score-store.c | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a01ddf5..f70a223 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CFLAGS = -Wall `pkg-config --cflags gtk+-3.0` -CPPFLAGS = -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_36 -DGDK_VERSION_MIN_REQUIRED=GDK_VERSION_3_8 -CPPFLAGS += -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_36 -DGDK_VERSION_MAX_ALLOWED=GDK_VERSION_3_8 +CPPFLAGS = -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_36 -DGDK_VERSION_MIN_REQUIRED=GDK_VERSION_3_4 +CPPFLAGS += -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_36 -DGDK_VERSION_MAX_ALLOWED=GDK_VERSION_3_4 LDLIBS = `pkg-config --libs gtk+-3.0` all: rugby diff --git a/rugby-score-store.c b/rugby-score-store.c index b0d6671..4835cd6 100644 --- a/rugby-score-store.c +++ b/rugby-score-store.c @@ -71,7 +71,6 @@ rugby_score_store_class_init (RugbyScoreStoreClass *klass) obj_class->get_property = rugby_score_store_get_property; obj_class->set_property = rugby_score_store_set_property; - pspecs[PROP_SCORE] = g_param_spec_int ("score", "Score", "The score", 0, 150, 0, G_PARAM_READWRITE); -- GitLab