From owner-svn-ports-head@freebsd.org Sun Nov 20 13:40:24 2016 Return-Path: Delivered-To: svn-ports-head@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 069F4C4A9E0; Sun, 20 Nov 2016 13:40:24 +0000 (UTC) (envelope-from novel@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 CC9ED93D; Sun, 20 Nov 2016 13:40:23 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAKDeMve085012; Sun, 20 Nov 2016 13:40:22 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAKDeMkg085011; Sun, 20 Nov 2016 13:40:22 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201611201340.uAKDeMkg085011@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Sun, 20 Nov 2016 13:40:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426589 - head/security/gnupg X-SVN-Group: ports-head 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.23 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: Sun, 20 Nov 2016 13:40:24 -0000 Author: novel Date: Sun Nov 20 13:40:22 2016 New Revision: 426589 URL: https://svnweb.freebsd.org/changeset/ports/426589 Log: security/gnupg: fix build on 9.x gnupg fails to build on 9.x with: mime-parser.h:53: error: redefinition of typedef 'rfc822parse_t' rfc822parse.h:23: error: previous declaration of 'rfc822parse_t' was here Add compiler:c11 to USES to fix that. Reported by: antoine Modified: head/security/gnupg/Makefile Modified: head/security/gnupg/Makefile ============================================================================== --- head/security/gnupg/Makefile Sun Nov 20 13:36:50 2016 (r426588) +++ head/security/gnupg/Makefile Sun Nov 20 13:40:22 2016 (r426589) @@ -26,7 +26,7 @@ BUILD_DEPENDS= libassuan>=2.4.3:security RUN_DEPENDS= pinentry>0:security/pinentry GNU_CONFIGURE= YES -USES= cpe gmake iconv pkgconfig sqlite tar:bzip2 +USES= compiler:c11 cpe gmake iconv pkgconfig sqlite tar:bzip2 USE_LDCONFIG= YES # libreadline.so.8 is placed in /lib, but --with-readline argument # will be treated as $value/lib, so try using /usr instead.