svn commit: r463487 - in head/x11-wm/icewm: . files

Thomas Zander riggs at FreeBSD.org
Sat Mar 3 15:37:04 UTC 2018


Author: riggs
Date: Sat Mar  3 15:37:03 2018
New Revision: 463487
URL: https://svnweb.freebsd.org/changeset/ports/463487

Log:
  Fix build on 11 and later with c++ compilers by default in c++11 mode
  
  PR:		226213
  Submitted by:	portmaster at bsdforge.com (maintainer)
  MFH:		2018Q1 (ports-secteam build fix blanket)

Added:
  head/x11-wm/icewm/files/patch-src_wmabout.cc   (contents, props changed)
Modified:
  head/x11-wm/icewm/Makefile

Modified: head/x11-wm/icewm/Makefile
==============================================================================
--- head/x11-wm/icewm/Makefile	Sat Mar  3 15:29:51 2018	(r463486)
+++ head/x11-wm/icewm/Makefile	Sat Mar  3 15:37:03 2018	(r463487)
@@ -3,7 +3,7 @@
 
 PORTNAME=	icewm
 PORTVERSION=	1.3.8
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	x11-wm
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}/${PORTVERSION}
 

Added: head/x11-wm/icewm/files/patch-src_wmabout.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-wm/icewm/files/patch-src_wmabout.cc	Sat Mar  3 15:37:03 2018	(r463487)
@@ -0,0 +1,11 @@
+--- src/wmabout.cc.orig	2018-02-25 21:00:14.796410000 -0800
++++ src/wmabout.cc	2018-02-25 21:00:22.254233000 -0800
+@@ -23,7 +23,7 @@
+ AboutDlg *aboutDlg = 0;
+ 
+ AboutDlg::AboutDlg(): YDialog() {
+-    char const *version("IceWM "VERSION" ("HOSTOS"/"HOSTCPU")");
++    char const *version("IceWM " VERSION" (" HOSTOS"/" HOSTCPU")");
+     ustring copyright =
+         ustring("Copyright ")
+         .append(_("(C)"))


More information about the svn-ports-all mailing list