From owner-svn-ports-head@freebsd.org Thu May 18 22:34:57 2017 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 8268BD714A7; Thu, 18 May 2017 22:34:57 +0000 (UTC) (envelope-from wg@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 522FA142F; Thu, 18 May 2017 22:34:57 +0000 (UTC) (envelope-from wg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4IMYuI6067031; Thu, 18 May 2017 22:34:56 GMT (envelope-from wg@FreeBSD.org) Received: (from wg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4IMYuEt067029; Thu, 18 May 2017 22:34:56 GMT (envelope-from wg@FreeBSD.org) Message-Id: <201705182234.v4IMYuEt067029@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wg set sender to wg@FreeBSD.org using -f From: William Grzybowski Date: Thu, 18 May 2017 22:34:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r441203 - in head/devel/libgit2: . 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-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: Thu, 18 May 2017 22:34:57 -0000 Author: wg Date: Thu May 18 22:34:56 2017 New Revision: 441203 URL: https://svnweb.freebsd.org/changeset/ports/441203 Log: devel/libgit2: fix build with libressl PR: 219362 Submitted by: tobik Added: head/devel/libgit2/files/ head/devel/libgit2/files/patch-src_openssl__stream.h (contents, props changed) Modified: head/devel/libgit2/Makefile Modified: head/devel/libgit2/Makefile ============================================================================== --- head/devel/libgit2/Makefile Thu May 18 22:11:54 2017 (r441202) +++ head/devel/libgit2/Makefile Thu May 18 22:34:56 2017 (r441203) @@ -2,6 +2,7 @@ PORTNAME= libgit2 PORTVERSION= 0.25.1 +PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= devel Added: head/devel/libgit2/files/patch-src_openssl__stream.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libgit2/files/patch-src_openssl__stream.h Thu May 18 22:34:56 2017 (r441203) @@ -0,0 +1,15 @@ +Fix build with LibreSSL + +https://github.com/libgit2/libgit2/commit/42ad85e + +--- src/openssl_stream.h.orig 2017-01-09 20:26:45 UTC ++++ src/openssl_stream.h +@@ -27,7 +27,7 @@ extern int git_openssl_stream_new(git_stream **out, co + + + +-# if OPENSSL_VERSION_NUMBER < 0x10100000L ++# if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER) + + GIT_INLINE(BIO_METHOD*) BIO_meth_new(int type, const char *name) + {