From owner-svn-ports-all@freebsd.org Thu Jun 27 09:59:55 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A89D15B3216; Thu, 27 Jun 2019 09:59:55 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3B162769C7; Thu, 27 Jun 2019 09:59:55 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0D01FDA7D; Thu, 27 Jun 2019 09:59:55 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5R9xsAM005372; Thu, 27 Jun 2019 09:59:54 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5R9xsvn005370; Thu, 27 Jun 2019 09:59:54 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201906270959.x5R9xsvn005370@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Thu, 27 Jun 2019 09:59:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505205 - in head/misc/estic: . files X-SVN-Group: ports-head X-SVN-Commit-Author: dinoex X-SVN-Commit-Paths: in head/misc/estic: . files X-SVN-Commit-Revision: 505205 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3B162769C7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Jun 2019 09:59:55 -0000 Author: dinoex Date: Thu Jun 27 09:59:54 2019 New Revision: 505205 URL: https://svnweb.freebsd.org/changeset/ports/505205 Log: - fix build with gcc9 - fix build with clang from base on FreeBSD-11 and FreeBSD-12 PR: 238647 Modified: head/misc/estic/Makefile head/misc/estic/files/patch-str.h Modified: head/misc/estic/Makefile ============================================================================== --- head/misc/estic/Makefile Thu Jun 27 09:58:45 2019 (r505204) +++ head/misc/estic/Makefile Thu Jun 27 09:59:54 2019 (r505205) @@ -3,7 +3,7 @@ PORTNAME= estic PORTVERSION= 1.61 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= misc comms MASTER_SITES= LOCAL/dinoex PKGNAMESUFFIX?= ${NOX11_SUFFIX}${PKGNAMESUFFIX2} @@ -14,13 +14,9 @@ COMMENT= Controller for ISDN TK-Anlage (PBX) made by LICENSE= BSD2CLAUSE -BROKEN_armv6= fails to compile: str.h: friend declaration specifying a default argument must be the only declaration -BROKEN_armv7= fails to compile: str.h: friend declaration specifying a default argument must be the only declaration - USES= ncurses zip USE_CSTD= gnu89 USE_CXXSTD= gnu++98 -USE_GCC= any NO_WRKSUBDIR= yes # Personal Preferences, Where to install. Modified: head/misc/estic/files/patch-str.h ============================================================================== --- head/misc/estic/files/patch-str.h Thu Jun 27 09:58:45 2019 (r505204) +++ head/misc/estic/files/patch-str.h Thu Jun 27 09:59:54 2019 (r505205) @@ -47,3 +47,12 @@ class String : public Streamable { +@@ -303,7 +343,7 @@ public: + // representation by the character itself, e.g. replace "\n" by the + // character with code 13. + +- friend String ShowControls (const String& S, unsigned Style = ccDefault); ++ friend String ShowControls (const String& S, unsigned Style); + // Recode the given string and replace every control character by it's + // visible representation, e.g. "\n" instead of the character with code + // code 13.