From owner-svn-ports-all@freebsd.org Fri Apr 29 15:41:41 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 885EAB2101E; Fri, 29 Apr 2016 15:41:41 +0000 (UTC) (envelope-from vsevolod@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 mx1.freebsd.org (Postfix) with ESMTPS id 4CD191FA6; Fri, 29 Apr 2016 15:41:41 +0000 (UTC) (envelope-from vsevolod@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3TFfeXB021264; Fri, 29 Apr 2016 15:41:40 GMT (envelope-from vsevolod@FreeBSD.org) Received: (from vsevolod@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3TFfeUd021262; Fri, 29 Apr 2016 15:41:40 GMT (envelope-from vsevolod@FreeBSD.org) Message-Id: <201604291541.u3TFfeUd021262@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vsevolod set sender to vsevolod@FreeBSD.org using -f From: Vsevolod Stakhov Date: Fri, 29 Apr 2016 15:41:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414279 - in head/security/hpenc: . files X-SVN-Group: ports-head 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.21 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: Fri, 29 Apr 2016 15:41:41 -0000 Author: vsevolod Date: Fri Apr 29 15:41:40 2016 New Revision: 414279 URL: https://svnweb.freebsd.org/changeset/ports/414279 Log: - Fix build with the recent libc++ PR: 209097 Submitted by: dim Added: head/security/hpenc/files/ head/security/hpenc/files/patch-src_common.h (contents, props changed) Modified: head/security/hpenc/Makefile Modified: head/security/hpenc/Makefile ============================================================================== --- head/security/hpenc/Makefile Fri Apr 29 15:23:33 2016 (r414278) +++ head/security/hpenc/Makefile Fri Apr 29 15:41:40 2016 (r414279) @@ -2,7 +2,7 @@ PORTNAME= hpenc PORTVERSION= 2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= http://highsecure.ru/distfiles/ Added: head/security/hpenc/files/patch-src_common.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/hpenc/files/patch-src_common.h Fri Apr 29 15:41:40 2016 (r414279) @@ -0,0 +1,11 @@ +--- src/common.h.orig 2014-10-21 15:58:03 UTC ++++ src/common.h +@@ -28,7 +28,7 @@ + // Ugly, ugly hack + #if defined(__clang__) && \ + (__STDC_VERSION__ >= 201112L || __cplusplus >= 201103L) && \ +- !defined(__CLANG_MAX_ALIGN_T_DEFINED) ++ !defined(__CLANG_MAX_ALIGN_T_DEFINED) && !defined(_LIBCPP_STDDEF_H) + typedef struct { + long long __clang_max_align_nonce1 + __attribute__((__aligned__(__alignof__(long long))));