From owner-svn-ports-all@FreeBSD.ORG Sat Jul 12 20:49:37 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4FF68B07; Sat, 12 Jul 2014 20:49:37 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 3C6B52237; Sat, 12 Jul 2014 20:49:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6CKnbCl010773; Sat, 12 Jul 2014 20:49:37 GMT (envelope-from vsevolod@svn.freebsd.org) Received: (from vsevolod@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6CKnaSS010770; Sat, 12 Jul 2014 20:49:36 GMT (envelope-from vsevolod@svn.freebsd.org) Message-Id: <201407122049.s6CKnaSS010770@svn.freebsd.org> From: Vsevolod Stakhov Date: Sat, 12 Jul 2014 20:49:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361642 - in head/security/libressl: . 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.18 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: Sat, 12 Jul 2014 20:49:37 -0000 Author: vsevolod Date: Sat Jul 12 20:49:36 2014 New Revision: 361642 URL: http://svnweb.freebsd.org/changeset/ports/361642 QAT: https://qat.redports.org/buildarchive/r361642/ Log: - Fix OPENSSL_VERSION_NUMBER to identify that libressl supports features of openssl 1.0.1g only - Add LIBRESSL_VERSION_NUMBER to distinguish from openssl - Strip libraries correctly - Bump PORTREVISION Added: head/security/libressl/files/ head/security/libressl/files/patch-include-openssl-opensslv.h (contents, props changed) Modified: head/security/libressl/Makefile Modified: head/security/libressl/Makefile ============================================================================== --- head/security/libressl/Makefile Sat Jul 12 20:34:34 2014 (r361641) +++ head/security/libressl/Makefile Sat Jul 12 20:49:36 2014 (r361642) @@ -3,6 +3,7 @@ PORTNAME= libressl PORTVERSION= 2.0.0 +PORTREVISION= 1 CATEGORIES= security devel MASTER_SITES= ${MASTER_SITE_OPENBSD} MASTER_SITE_SUBDIR= LibreSSL @@ -18,6 +19,8 @@ GNU_CONFIGURE= yes USES= libtool USE_LDCONFIG= yes +INSTALL_TARGET= install-strip + test: build cd ${WRKSRC} && ${MAKE} check Added: head/security/libressl/files/patch-include-openssl-opensslv.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libressl/files/patch-include-openssl-opensslv.h Sat Jul 12 20:49:36 2014 (r361642) @@ -0,0 +1,12 @@ +--- include/openssl/opensslv.h.orig 2014-07-12 21:41:27.634267326 +0100 ++++ include/openssl/opensslv.h 2014-07-12 21:42:21.944270045 +0100 +@@ -2,7 +2,8 @@ + #ifndef HEADER_OPENSSLV_H + #define HEADER_OPENSSLV_H + +-#define OPENSSL_VERSION_NUMBER 0x20000000L ++#define OPENSSL_VERSION_NUMBER 0x1000107fL ++#define LIBRESSL_VERSION_NUMBER 0x20000000L + #define OPENSSL_VERSION_TEXT "LibreSSL 2.0" + #define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT +