From owner-svn-ports-head@freebsd.org Wed Sep 5 16:14:39 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 4143BFF5615; Wed, 5 Sep 2018 16:14:39 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E185A885E3; Wed, 5 Sep 2018 16:14:38 +0000 (UTC) (envelope-from swills@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 D80E0281EC; Wed, 5 Sep 2018 16:14:38 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w85GEcYD019637; Wed, 5 Sep 2018 16:14:38 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w85GEcWG019636; Wed, 5 Sep 2018 16:14:38 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201809051614.w85GEcWG019636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Wed, 5 Sep 2018 16:14:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479026 - head/net-im/telegram-desktop X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/net-im/telegram-desktop X-SVN-Commit-Revision: 479026 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 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: Wed, 05 Sep 2018 16:14:39 -0000 Author: swills Date: Wed Sep 5 16:14:38 2018 New Revision: 479026 URL: https://svnweb.freebsd.org/changeset/ports/479026 Log: net-im/telegram-desktop: put back removed BROKEN line Can build but won't run on 10.x PR: 231014 Reported by: Henry Hu (maintainer) Pointyhat to: swills Modified: head/net-im/telegram-desktop/Makefile (contents, props changed) Modified: head/net-im/telegram-desktop/Makefile ============================================================================== --- head/net-im/telegram-desktop/Makefile Wed Sep 5 14:48:12 2018 (r479025) +++ head/net-im/telegram-desktop/Makefile Wed Sep 5 16:14:38 2018 (r479026) @@ -64,6 +64,15 @@ GYP_DEFINES:= ${GYP_DEFINES},TDESKTOP_DISABLE_GTK_INTE .include + +# This port needs C++17 libs/compiler. +# Currently, this is not supported by USES=compiler +# Using clang does not work: libc++ in base does not support C++17. +# Using gcc does not work: using both libc++ and libstdc++ causes crashes. +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100000 +BROKEN= Need C++17 support in compiler and runtime +.endif + # Since 1.3.14, the clang compiler provided in 11.1 (4.0.0) gets a segmentation # fault. .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1102000