From owner-svn-ports-head@freebsd.org Sat Nov 3 12:22:45 2018 Return-Path: Delivered-To: svn-ports-head@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 4505710FC78A; Sat, 3 Nov 2018 12:22:45 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (ainaz.pair.com [IPv6:2607:f440::d144:242]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E51CA803FC; Sat, 3 Nov 2018 12:22:44 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (localhost [127.0.0.1]) by ainaz.pair.com (Postfix) with ESMTP id 58460B5451B; Sat, 3 Nov 2018 08:22:38 -0400 (EDT) Received: from anthias (vie-188-118-241-150.dsl.sil.at [188.118.241.150]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ainaz.pair.com (Postfix) with ESMTPSA id 1310BB542B0; Sat, 3 Nov 2018 08:22:36 -0400 (EDT) Date: Sat, 3 Nov 2018 13:22:35 +0100 (CET) From: Gerald Pfeifer To: Rene Ladan , Michael Reifenberger , Emanuel Haupt , Steve Wills cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r483807 - in head: Mk Mk/Uses audio/kwave audio/logitechmediaserver audio/supercollider audio/teamspeak3-server audio/wavpack audio/zynaddsubfx base/binutils cad/calculix cad/linuxcnc-d... In-Reply-To: <201811021332.wA2DWZPm025383@repo.freebsd.org> Message-ID: References: <201811021332.wA2DWZPm025383@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Nov 2018 12:22:45 -0000 On Fri, 2 Nov 2018, Rene Ladan wrote: > URL: https://svnweb.freebsd.org/changeset/ports/483807 > > Log: > Remove compatibility code for FreeBSD < 11.2 from all ports. > > Simplify some ports where DragonFlyBSD no longer needs to be special-cased. > Submitted by: rene > Reviewed by: bapt, jbeich > Differential Revision: https://reviews.freebsd.org/D17724 > Modified: head/cad/openscad/Makefile > ============================================================================== > -#.if ${ARCH} == i386 && ${OSVERSION} >= 1100000 > +#.if ${ARCH} == i386 > #USE_GCC= yes > #.endif Yes, but this was dead code before and is still dead code. Okay to remove this, Michael? > Modified: head/devel/heimdall/Makefile > ============================================================================== > # does not compile with clang 6.0.0 > -.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1101513 > +.if ${OPSYS} == FreeBSD > USE_GCC= yes > .endif Yes, but shouldn't the .if simple be removed now? Okay, to do so, Emanuel? > Modified: head/devel/libzim/Makefile ============================================================================ > # Using gcc6 and libstdc++ leads to error because xapian-core is linked with libc++ > -BROKEN_FreeBSD_10= /usr/include/c++/v1/memory:4004:35: error: no viable overloaded '=' That comment now became obsolete, so I went ahead and remove it (revision 483889). Hope you're fine, Steve. Gerald