svn commit: r393573 - head/multimedia/lives/files

Koop Mast kwm at FreeBSD.org
Wed Aug 5 07:25:00 UTC 2015


Author: kwm
Date: Wed Aug  5 07:24:59 2015
New Revision: 393573
URL: https://svnweb.freebsd.org/changeset/ports/393573

Log:
  Fix a typo in gtk+ 3 function name. This fixes the build with GTK+ 3.16.
  
  PR:		201980
  Obtained from:	upstream

Added:
  head/multimedia/lives/files/patch-src_widget-helper.c   (contents, props changed)

Added: head/multimedia/lives/files/patch-src_widget-helper.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/multimedia/lives/files/patch-src_widget-helper.c	Wed Aug  5 07:24:59 2015	(r393573)
@@ -0,0 +1,11 @@
+--- src/widget-helper.c.orig	2015-08-05 09:16:34.803154000 +0200
++++ src/widget-helper.c	2015-08-05 09:16:59.890589000 +0200
+@@ -2404,7 +2404,7 @@
+ LIVES_INLINE boolean lives_label_set_halignment(LiVESLabel *label, float yalign) {
+ #ifdef GUI_GTK
+ #if GTK_CHECK_VERSION(3,16,0)
+-  gtk_label_set_y_align(label,yalign);
++  gtk_label_set_yalign(label,yalign);
+ #else
+   gtk_misc_set_alignment(GTK_MISC(label),0.,yalign);
+ #endif


More information about the svn-ports-head mailing list