Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 Jan 2017 02:49:07 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r432894 - in branches/2017Q1/x11/slim: . files
Message-ID:  <201701310249.v0V2n7xD007630@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Tue Jan 31 02:49:07 2017
New Revision: 432894
URL: https://svnweb.freebsd.org/changeset/ports/432894

Log:
  MFH: r432893
  
  x11/slim: unbreak build with clang/libc++ 4.0
  
  PR:		216633
  Submitted by:	Henry Hu <henry.hu.sh@gmail.com> (maintainer)
  Approved by:	ports-secteam blanket

Added:
  branches/2017Q1/x11/slim/files/patch-panel.cpp
     - copied unchanged from r432893, head/x11/slim/files/patch-panel.cpp
Modified:
  branches/2017Q1/x11/slim/Makefile
Directory Properties:
  branches/2017Q1/   (props changed)

Modified: branches/2017Q1/x11/slim/Makefile
==============================================================================
--- branches/2017Q1/x11/slim/Makefile	Tue Jan 31 02:44:48 2017	(r432893)
+++ branches/2017Q1/x11/slim/Makefile	Tue Jan 31 02:49:07 2017	(r432894)
@@ -3,7 +3,7 @@
 
 PORTNAME=	slim
 PORTVERSION=	1.3.6
-PORTREVISION=	12
+PORTREVISION=	13
 CATEGORIES=	x11
 MASTER_SITES=	ftp://ftp.berlios.de/pub/slim/ \
 		SF/slim.berlios

Copied: branches/2017Q1/x11/slim/files/patch-panel.cpp (from r432893, head/x11/slim/files/patch-panel.cpp)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2017Q1/x11/slim/files/patch-panel.cpp	Tue Jan 31 02:49:07 2017	(r432894, copy of r432893, head/x11/slim/files/patch-panel.cpp)
@@ -0,0 +1,11 @@
+--- panel.cpp.orig	2013-10-01 22:38:05 UTC
++++ panel.cpp
+@@ -48,7 +48,7 @@ Panel::Panel(Display* dpy, int scr, Wind
+ 		gcm = GCGraphicsExposures;
+ 		gcv.graphics_exposures = False;
+ 		WinGC = XCreateGC(Dpy, Win, gcm, &gcv);
+-		if (WinGC < 0) {
++		if (WinGC == NULL) {
+ 			cerr << APPNAME
+ 				<< ": failed to create pixmap\n.";
+ 			exit(ERR_EXIT);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201701310249.v0V2n7xD007630>