Control: tags -1 patch fixed-upstream

On Wed, 2015-06-24 at 22:58 +0100, Dominic Hargreaves wrote:
> Source: lives
> Version: 2.2.8~ds0-1
> Severity: serious
> Justification: FTBFS
> 
> This package FTBFS in a clean sid sbuild setup:
[...]
> /«PKGBUILDDIR»/src/widget-helper.c:2279: undefined reference to 
> `gtk_label_set_y_align'
> collect2: error: ld returned 1 exit status

This was caused by GTK 3.16 being updated and was fixed upstream:
http://sourceforge.net/p/lives/code/2240/

Thanks,
James
Description: Fix FTBFS with GTK 3.16 caused by typo in widget-helper.c
Author: G. Finch <salsa...@gmail.com>
Bug-Debian: https://bugs.debian.org/789858
Applied-Upstream: http://sourceforge.net/p/lives/code/2240/
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/widget-helper.c
+++ b/src/widget-helper.c
@@ -2404,7 +2404,7 @@ LIVES_INLINE LiVESWidget *lives_expander
 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

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to