svn commit: r426568 - in head/sysutils/lxterminal: . files

Olivier Duchateau olivierd at FreeBSD.org
Sun Nov 20 10:54:08 UTC 2016


Author: olivierd
Date: Sun Nov 20 10:54:06 2016
New Revision: 426568
URL: https://svnweb.freebsd.org/changeset/ports/426568

Log:
  - Fix build with clang
  - Bump PORTREVISION
  
  PR:		214468
  Submitted by:	<w.schwarzenfeld at utanet.at>
  Reviewed by:	Ting-Wei Lan
  Obtained from:	Upstream repository

Added:
  head/sysutils/lxterminal/files/
  head/sysutils/lxterminal/files/patch-src_setting.c   (contents, props changed)
Modified:
  head/sysutils/lxterminal/Makefile

Modified: head/sysutils/lxterminal/Makefile
==============================================================================
--- head/sysutils/lxterminal/Makefile	Sun Nov 20 10:25:56 2016	(r426567)
+++ head/sysutils/lxterminal/Makefile	Sun Nov 20 10:54:06 2016	(r426568)
@@ -3,7 +3,7 @@
 
 PORTNAME=	lxterminal
 PORTVERSION=	0.2.0
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	sysutils
 MASTER_SITES=	SF/lxde/LXTerminal%20%28terminal%20emulator%29/LXTerminal%20${PORTVERSION}/
 
@@ -18,7 +18,6 @@ LIB_DEPENDS=	libvte.so:x11-toolkits/vte
 USES=		gmake iconv pkgconfig
 USE_GNOME=	gtk20 intlhack
 GNU_CONFIGURE=	yes
-USE_GCC=	yes
 CONFIGURE_ARGS=	--prefix=${PREFIX}
 USE_LDCONFIG=	yes
 

Added: head/sysutils/lxterminal/files/patch-src_setting.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/lxterminal/files/patch-src_setting.c	Sun Nov 20 10:54:06 2016	(r426568)
@@ -0,0 +1,11 @@
+--- src/setting.c.orig	2014-10-21 15:29:18 UTC
++++ src/setting.c
+@@ -162,7 +162,7 @@ void save_setting()
+ /* Deep copy settings. */
+ Setting * copy_setting(Setting * setting)
+ {
+-    g_return_if_fail (setting != NULL);
++    g_return_val_if_fail (setting != NULL, NULL);
+ 
+     /* Allocate structure. */
+     Setting * new_setting = g_slice_new0(Setting);


More information about the svn-ports-head mailing list