diff options
author | Thomas Zander <riggs@FreeBSD.org> | 2018-03-03 15:39:06 +0000 |
---|---|---|
committer | Thomas Zander <riggs@FreeBSD.org> | 2018-03-03 15:39:06 +0000 |
commit | cc589ff95c9d865f0f66f5c72b94efd7cbf723f0 (patch) | |
tree | d4a3a76045f257004152ea5f9b7d5e0ccf96c9fe /x11-wm | |
parent | 077fdfe44af2f80e1f9dd981c206ffe64881dc33 (diff) | |
download | ports-cc589ff95c9d865f0f66f5c72b94efd7cbf723f0.tar.gz ports-cc589ff95c9d865f0f66f5c72b94efd7cbf723f0.zip |
MFH: r463487
Fix build on 11 and later with c++ compilers by default in c++11 mode
PR: 226213
Submitted by: portmaster@bsdforge.com (maintainer)
Approved by: ports-secteam (build fix blanket)
Notes
Notes:
svn path=/branches/2018Q1/; revision=463488
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/icewm/Makefile | 2 | ||||
-rw-r--r-- | x11-wm/icewm/files/patch-src_wmabout.cc | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/x11-wm/icewm/Makefile b/x11-wm/icewm/Makefile index 43579244d3a9..6919e3ed56ec 100644 --- a/x11-wm/icewm/Makefile +++ b/x11-wm/icewm/Makefile @@ -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} diff --git a/x11-wm/icewm/files/patch-src_wmabout.cc b/x11-wm/icewm/files/patch-src_wmabout.cc new file mode 100644 index 000000000000..4f332e4cb929 --- /dev/null +++ b/x11-wm/icewm/files/patch-src_wmabout.cc @@ -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)")) |