svn commit: r421534 - head/security/openssl-devel

Bernard Spil brnrd at FreeBSD.org
Thu Sep 8 07:16:17 UTC 2016


Author: brnrd
Date: Thu Sep  8 07:16:16 2016
New Revision: 421534
URL: https://svnweb.freebsd.org/changeset/ports/421534

Log:
  security/openssl-devel: Fix EC option on DragonflyBSD
  
    - Allow Dragonfly to transform amd64 to x86_64
  
  Submitted by:	John Marino <freebsd.contact at marino.st>
  Reported by:	John Marino <freebsd.contact at marino.st>

Modified:
  head/security/openssl-devel/Makefile

Modified: head/security/openssl-devel/Makefile
==============================================================================
--- head/security/openssl-devel/Makefile	Thu Sep  8 06:49:24 2016	(r421533)
+++ head/security/openssl-devel/Makefile	Thu Sep  8 07:16:16 2016	(r421534)
@@ -33,10 +33,11 @@ OPTIONS_DEFINE_i386=	I386
 OPTIONS_GROUP_PROTOCOLS=	NEXTPROTONEG SCTP SSL3
 
 OPTIONS_DEFINE=	SHARED THREADS ZLIB RFC3779 MAN3
-.for a in amd64 ia64
-OPTIONS_DEFINE_${a}=	EC
-OPTIONS_DEFAULT_${a}=	EC
-.endfor
+
+OPTIONS_DEFINE_amd64=	EC
+OPTIONS_DEFAULT_amd64=	EC
+OPTIONS_DEFINE_ia64=	EC
+OPTIONS_DEFAULT_ia64=	EC
 .if ${MACHINE_ARCH} == "mips64el"
 OPTIONS_DEFINE+=	EC
 OPTIONS_DEFAULT+=	EC


More information about the svn-ports-head mailing list