Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 24 Sep 2016 06:43:04 +0000 (UTC)
From:      Dirk Meyer <dinoex@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r422700 - head/security/openssl
Message-ID:  <201609240643.u8O6h4I4041080@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dinoex
Date: Sat Sep 24 06:43:04 2016
New Revision: 422700
URL: https://svnweb.freebsd.org/changeset/ports/422700

Log:
  - add option ASM for OPNsense
  - drop MAINTAINERSHIP caused of version naming change

Modified:
  head/security/openssl/Makefile

Modified: head/security/openssl/Makefile
==============================================================================
--- head/security/openssl/Makefile	Sat Sep 24 01:18:14 2016	(r422699)
+++ head/security/openssl/Makefile	Sat Sep 24 06:43:04 2016	(r422700)
@@ -9,7 +9,7 @@ MASTER_SITES=	http://www.openssl.org/sou
 		ftp://ftp.cert.dfn.de/pub/tools/net/openssl/source/
 DIST_SUBDIR=	${DISTNAME}
 
-MAINTAINER=	dinoex@FreeBSD.org
+MAINTAINER=	ports@FreeBSD.org
 COMMENT=	SSL and crypto library
 
 LICENSE=	OpenSSL
@@ -21,7 +21,7 @@ CONFLICTS=	libressl-[0-9]* \
 		libressl-devel-[0-9]* \
 		openssl-devel-[0-9]*
 
-OPTIONS_DEFINE=	SHARED THREADS SSE2 PADLOCK ZLIB SCTP SSL2 SSL3 RFC3779 MD2 RC5 EXPCIPHERS DOCS MAN3
+OPTIONS_DEFINE=	SHARED THREADS SSE2 ASM PADLOCK ZLIB SCTP SSL2 SSL3 RFC3779 MD2 RC5 EXPCIPHERS DOCS MAN3
 OPTIONS_DEFAULT=SHARED THREADS SSE2 SCTP SSL2 SSL3 MD2 MAN3
 OPTIONS_DEFINE_i386=	I386
 OPTIONS_DEFINE_amd64=	EC
@@ -36,6 +36,7 @@ OPTIONS_DEFAULT_mips=	EC
 NO_OPTIONS_SORT=yes
 OPTIONS_SUB=	yes
 I386_DESC?=	Optimize for i386 (instead of i486+)
+ASM_DESC?=	optimized Assembler code
 SSE2_DESC?=	runtime SSE2 detection
 PADLOCK_DESC?=	VIA Padlock support
 SHARED_DESC?=	build of shared libs
@@ -82,7 +83,11 @@ EXTRACONFIGURE+=	386
 EXTRACONFIGURE+=	no-sse2
 .endif
 
+.if ${PORT_OPTIONS:MASM}
+BROKEN_sparc64=		option ASM generates illegal instructions
+.else
 EXTRACONFIGURE+=	no-asm
+.endif
 
 .if ${PORT_OPTIONS:MTHREADS}
 EXTRACONFIGURE+=	threads



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609240643.u8O6h4I4041080>