diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2006-10-31 05:41:10 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2006-10-31 05:41:10 +0000 |
commit | ef6c9dc66114fb7f76584e952bc79c2694027ed3 (patch) | |
tree | 607dcb2fce2f3526559bed798622d1437c9ac2bc | |
parent | 4d63e125f82ad3e71bff43277df73a9b2ffd7f93 (diff) | |
download | ports-ef6c9dc66114fb7f76584e952bc79c2694027ed3.tar.gz ports-ef6c9dc66114fb7f76584e952bc79c2694027ed3.zip |
Notes
-rw-r--r-- | games/gnome-games/Makefile | 1 | ||||
-rw-r--r-- | games/gnome-games/files/patch-aisleriot_cscmi.c | 22 |
2 files changed, 23 insertions, 0 deletions
diff --git a/games/gnome-games/Makefile b/games/gnome-games/Makefile index 6c65030ec758..d4cce0a5562b 100644 --- a/games/gnome-games/Makefile +++ b/games/gnome-games/Makefile @@ -8,6 +8,7 @@ PORTNAME= gnome-games PORTVERSION= 2.16.1 +PORTREVISION= 1 CATEGORIES= games gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} diff --git a/games/gnome-games/files/patch-aisleriot_cscmi.c b/games/gnome-games/files/patch-aisleriot_cscmi.c new file mode 100644 index 000000000000..49d5ee6c7231 --- /dev/null +++ b/games/gnome-games/files/patch-aisleriot_cscmi.c @@ -0,0 +1,22 @@ +--- aisleriot/cscmi.c.orig Wed Oct 18 17:51:31 2006 ++++ aisleriot/cscmi.c Wed Oct 18 17:51:13 2006 +@@ -603,8 +603,8 @@ cscmi_drag_valid(int slot_id, GList *car + cscmi_catch_handler, + NULL); + retval = call_data->retval; +- g_free (call_data); + scm_gc_unprotect_object (call_data->arg2); ++ g_free (call_data); + + return SCM_NFALSEP(retval); + } +@@ -698,8 +698,8 @@ cscmi_drop_valid(int start_slot, GList * + cscmi_catch_handler, + NULL); + retval = call_data->retval; +- g_free (call_data); + scm_gc_unprotect_object (call_data->arg2); ++ g_free (call_data); + + return SCM_NFALSEP(retval); + } |