svn commit: r382552 - in head/x11-wm/xfce4-session: . files

Olivier Duchateau olivierd at FreeBSD.org
Sat Mar 28 20:28:10 UTC 2015


Author: olivierd
Date: Sat Mar 28 20:28:08 2015
New Revision: 382552
URL: https://svnweb.freebsd.org/changeset/ports/382552
QAT: https://qat.redports.org/buildarchive/r382552/

Log:
  - Add patch, to make verbose logging conditional
  - Bump PORTREVISION
  
  PR:		198560
  Submitted by:	Zhihao Yuan <lichray at gmail.com>

Added:
  head/x11-wm/xfce4-session/files/patch-xfce4-session_xfsm-global.h   (contents, props changed)
Modified:
  head/x11-wm/xfce4-session/Makefile

Modified: head/x11-wm/xfce4-session/Makefile
==============================================================================
--- head/x11-wm/xfce4-session/Makefile	Sat Mar 28 20:26:11 2015	(r382551)
+++ head/x11-wm/xfce4-session/Makefile	Sat Mar 28 20:28:08 2015	(r382552)
@@ -3,6 +3,7 @@
 
 PORTNAME=	xfce4-session
 PORTVERSION=	4.12.1
+PORTREVISION=	1
 CATEGORIES=	x11-wm xfce
 MASTER_SITES=	XFCE/src/xfce/${PORTNAME}/${PORTVERSION:R}
 DIST_SUBDIR=	xfce4

Added: head/x11-wm/xfce4-session/files/patch-xfce4-session_xfsm-global.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-wm/xfce4-session/files/patch-xfce4-session_xfsm-global.h	Sat Mar 28 20:28:08 2015	(r382552)
@@ -0,0 +1,16 @@
+Make verbose logging conditional (Bug #11698)
+
+--- xfce4-session/xfsm-global.h.orig	2014-09-28 14:51:01 UTC
++++ xfce4-session/xfsm-global.h
+@@ -49,7 +49,10 @@ extern XfsmSplashScreen *splash_screen;
+ #if defined(G_HAVE_ISO_VARARGS)
+ 
+ #define xfsm_verbose(...)\
+-    xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__)
++G_STMT_START{ \
++  if (G_UNLIKELY (verbose)) \
++    xfsm_verbose_real (__func__, __FILE__, __LINE__, __VA_ARGS__); \
++}G_STMT_END
+ 
+ #else
+ 


More information about the svn-ports-head mailing list