From owner-svn-ports-head@freebsd.org Sat Jan 2 22:53:44 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7463C4BAEFA for ; Sat, 2 Jan 2021 22:53:44 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D7cd42WWJz3M51 for ; Sat, 2 Jan 2021 22:53:44 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: from mail-io1-f45.google.com (mail-io1-f45.google.com [209.85.166.45]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: sunpoet) by smtp.freebsd.org (Postfix) with ESMTPSA id 43E1EA6EF for ; Sat, 2 Jan 2021 22:53:44 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: by mail-io1-f45.google.com with SMTP id t8so21652812iov.8 for ; Sat, 02 Jan 2021 14:53:44 -0800 (PST) X-Gm-Message-State: AOAM530Kn4XdcIMM9Ely+/2Pu42UYAku2rIc3mkwC0jKMW0O/SnXVnge Q/0YExp4FSOk4rGL7XFS0U2jaKQZ/1VcT02iDlsQlw== X-Google-Smtp-Source: ABdhPJz0XSD+EYzgwUMSSDHg7hYz4xEOxJwVlO39VKLpPXECmCR3YUO2v44DSyenk+o7+mc9Jl4c2XFID5LzjmJisws= X-Received: by 2002:a6b:b2c3:: with SMTP id b186mr52892152iof.126.1609628023764; Sat, 02 Jan 2021 14:53:43 -0800 (PST) MIME-Version: 1.0 References: <202012292225.0BTMP3dg064173@repo.freebsd.org> In-Reply-To: <202012292225.0BTMP3dg064173@repo.freebsd.org> From: Po-Chuan Hsieh Date: Sun, 3 Jan 2021 06:53:07 +0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r559622 - head/devel/abseil To: Yuri Victorovich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.34 X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 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, 02 Jan 2021 22:53:44 -0000 On Wed, Dec 30, 2020 at 6:25 AM Yuri Victorovich wrote: > Author: yuri > Date: Tue Dec 29 22:25:03 2020 > New Revision: 559622 > URL: https://svnweb.freebsd.org/changeset/ports/559622 > > Log: > devel/abseil: Change to C++17 to allow all dependent ports to build > > PR: 250376 > Approved by: danfe (maintainer's timeout) > > Modified: > head/devel/abseil/Makefile > > Modified: head/devel/abseil/Makefile > > ============================================================================== > --- head/devel/abseil/Makefile Tue Dec 29 22:24:24 2020 (r559621) > +++ head/devel/abseil/Makefile Tue Dec 29 22:25:03 2020 (r559622) > @@ -3,6 +3,7 @@ > > PORTNAME= abseil > PORTVERSION= 20200923.2 > +PORTREVISION= 1 > CATEGORIES= devel > > MAINTAINER= danfe@FreeBSD.org > @@ -14,6 +15,7 @@ USES= cmake compiler:c++11-lang > If you build this port with c++17, shouldn't this be changed to c++17-lang? > USE_GITHUB= yes > GH_PROJECT= ${PORTNAME}-cpp > > -CMAKE_ARGS= -DBUILD_SHARED_LIBS:BOOL=ON > +CMAKE_ARGS= -DBUILD_SHARED_LIBS:BOOL=ON \ > + -DCMAKE_CXX_STANDARD=17 # force the same highest C++ > standard because of ABI differences: see > https://github.com/abseil/abseil-cpp/issues/819 > > .include > _______________________________________________ > svn-ports-all@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" >