From owner-svn-ports-all@freebsd.org Sun Apr 29 12:34:58 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 32242FABFB5; Sun, 29 Apr 2018 12:34:58 +0000 (UTC) (envelope-from brnrd@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 D56848688F; Sun, 29 Apr 2018 12:34:57 +0000 (UTC) (envelope-from brnrd@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 D04012466C; Sun, 29 Apr 2018 12:34:57 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3TCYvK4046343; Sun, 29 Apr 2018 12:34:57 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3TCYvOI046341; Sun, 29 Apr 2018 12:34:57 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201804291234.w3TCYvOI046341@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Sun, 29 Apr 2018 12:34:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r468625 - in head/security/libressl-devel: . files X-SVN-Group: ports-head X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: in head/security/libressl-devel: . files X-SVN-Commit-Revision: 468625 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: Sun, 29 Apr 2018 12:34:58 -0000 Author: brnrd Date: Sun Apr 29 12:34:57 2018 New Revision: 468625 URL: https://svnweb.freebsd.org/changeset/ports/468625 Log: security/libressl-devel: Fix AES-NI acceleration - As implemented in non-devel Added: head/security/libressl-devel/files/ head/security/libressl-devel/files/patch-configure.ac - copied unchanged from r468425, head/security/libressl/files/patch-configure.ac Modified: head/security/libressl-devel/Makefile Modified: head/security/libressl-devel/Makefile ============================================================================== --- head/security/libressl-devel/Makefile Sun Apr 29 12:29:40 2018 (r468624) +++ head/security/libressl-devel/Makefile Sun Apr 29 12:34:57 2018 (r468625) @@ -3,6 +3,7 @@ PORTNAME= libressl PORTVERSION= 2.7.2 +PORTREVISION= 1 CATEGORIES= security devel MASTER_SITES= OPENBSD/LibreSSL PKGNAMESUFFIX= -devel @@ -27,7 +28,7 @@ CONFLICTS_INSTALL= libressl-[0-9]* \ NC_CONFIGURE_ENABLE= nc GNU_CONFIGURE= yes -USES= cpe libtool pathfix pkgconfig +USES= autoreconf cpe libtool pathfix pkgconfig USE_LDCONFIG= yes OPTIONS_SUB= yes CFLAGS+= -fpic -DPIC -Wl,-rpath,${PREFIX}/lib -Wl,--as-needed Copied: head/security/libressl-devel/files/patch-configure.ac (from r468425, head/security/libressl/files/patch-configure.ac) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/libressl-devel/files/patch-configure.ac Sun Apr 29 12:34:57 2018 (r468625, copy of r468425, head/security/libressl/files/patch-configure.ac) @@ -0,0 +1,19 @@ +--- configure.ac.orig 2017-11-04 20:04:56 UTC ++++ configure.ac +@@ -102,13 +102,13 @@ int main() {return 0;} + + AC_ARG_ENABLE([asm], + AS_HELP_STRING([--disable-asm], [Disable assembly])) +-AM_CONDITIONAL([OPENSSL_NO_ASM], [test "x$enable_asm" = "xno"]) ++AM_CONDITIONAL([OPENSSL_NO_ASM],[test x$enableval = xno]) + + # Conditionally enable assembly by default + AM_CONDITIONAL([HOST_ASM_ELF_X86_64], +- [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "x86_64" -a "x$enable_asm" != "xno"]) ++ [test "x$HOST_ABI" = "xelf" -a "$host_cpu" = "x86_64," -a x$enableval != xno]) + AM_CONDITIONAL([HOST_ASM_MACOSX_X86_64], +- [test "x$HOST_ABI" = "xmacosx" -a "$host_cpu" = "x86_64" -a "x$enable_asm" != "xno"]) ++ [test "x$HOST_ABI" = "xmacosx" -a "$host_cpu" = "x86_64," -a x$enableval != xno]) + + # Check if time_t is sized correctly + AC_CHECK_SIZEOF([time_t], [time.h])