From owner-svn-ports-all@freebsd.org Wed Jan 31 16:37:44 2018 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 25EB5ED58AC; Wed, 31 Jan 2018 16:37:44 +0000 (UTC) (envelope-from sbruno@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 CCA546CAC4; Wed, 31 Jan 2018 16:37:43 +0000 (UTC) (envelope-from sbruno@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 C786428675; Wed, 31 Jan 2018 16:37:43 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0VGbhAt093009; Wed, 31 Jan 2018 16:37:43 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0VGbhIX093008; Wed, 31 Jan 2018 16:37:43 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201801311637.w0VGbhIX093008@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Wed, 31 Jan 2018 16:37:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460499 - head/sysutils/synergy/files X-SVN-Group: ports-head X-SVN-Commit-Author: sbruno X-SVN-Commit-Paths: head/sysutils/synergy/files X-SVN-Commit-Revision: 460499 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 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: Wed, 31 Jan 2018 16:37:44 -0000 Author: sbruno Date: Wed Jan 31 16:37:43 2018 New Revision: 460499 URL: https://svnweb.freebsd.org/changeset/ports/460499 Log: Fix nullptr definition buildfailure on current with clang6 PR: 225549 Submitted by: jhb Differential Revision: https://reviews.freebsd.org/D14131 Added: head/sysutils/synergy/files/patch-src_lib_common_common.h (contents, props changed) Added: head/sysutils/synergy/files/patch-src_lib_common_common.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/synergy/files/patch-src_lib_common_common.h Wed Jan 31 16:37:43 2018 (r460499) @@ -0,0 +1,11 @@ +--- src/lib/common/common.h.orig 2018-01-28 08:03:58.996880000 -0800 ++++ src/lib/common/common.h 2018-01-28 08:04:48.899097000 -0800 +@@ -137,7 +137,7 @@ + #include + + // if not c++0x, future proof code by allowing use of nullptr +-#ifndef nullptr ++#if __cplusplus < 201103L + # define nullptr NULL + #endif +