svn commit: r446475 - in head/databases: percona55-server percona56-server
Mark Felder
feld at FreeBSD.org
Sun Jul 23 13:58:47 UTC 2017
Author: feld
Date: Sun Jul 23 13:58:45 2017
New Revision: 446475
URL: https://svnweb.freebsd.org/changeset/ports/446475
Log:
databases/percona55-server percona56-server:
Fix OPENSSL option to actually enable linking with OpenSSL
MFH: 2017Q3
Differential Revision: https://reviews.freebsd.org/D9122
Modified:
head/databases/percona55-server/Makefile
head/databases/percona56-server/Makefile
Modified: head/databases/percona55-server/Makefile
==============================================================================
--- head/databases/percona55-server/Makefile Sun Jul 23 13:46:35 2017 (r446474)
+++ head/databases/percona55-server/Makefile Sun Jul 23 13:58:45 2017 (r446475)
@@ -2,7 +2,7 @@
PORTNAME?= percona
DISTVERSION= 5.5.54-38.6
-PORTREVISION?= 1
+PORTREVISION?= 2
CATEGORIES= databases ipv6
MASTER_SITES= http://www.percona.com/downloads/Percona-Server-5.5/Percona-Server-${DISTVERSION}/source/tarball/
PKGNAMESUFFIX?= 55-server
@@ -48,7 +48,8 @@ SHEBANG_FILES= scripts/*.pl* scripts/*.sh
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MOPENSSL}
-CMAKE_ARGS+= -DWITH_SSL=bundled
+CMAKE_ARGS+= -DWITH_SSL=system
+OPENSSL_USES= ssl
.endif
.if ${PORT_OPTIONS:MFASTMTX}
CMAKE_ARGS+= -DWITH_FAST_MUTEXES=1
Modified: head/databases/percona56-server/Makefile
==============================================================================
--- head/databases/percona56-server/Makefile Sun Jul 23 13:46:35 2017 (r446474)
+++ head/databases/percona56-server/Makefile Sun Jul 23 13:58:45 2017 (r446475)
@@ -3,7 +3,7 @@
PORTNAME?= percona
DISTVERSION= 5.6.35-80.0
-PORTREVISION?= 1
+PORTREVISION?= 2
CATEGORIES= databases ipv6
MASTER_SITES= http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-${DISTVERSION}/source/tarball/
PKGNAMESUFFIX?= 56-server
@@ -27,7 +27,8 @@ FASTMTX_DESC= Replace mutexes with spinlocks
FASTMTX_CMAKE_ON= -DWITH_FAST_MUTEXES=1
INNODBMEMCACHED_DESC= InnoDB Memcached plugin
INNODBMEMCACHED_CMAKE_ON= -DWITH_INNODB_MEMCACHED=1
-OPENSSL_CMAKE_ON= -DWITH_SSL=bundled
+OPENSSL_CMAKE_ON= -DWITH_SSL=system
+OPENSSL_USES= ssl
TOKUDB_DESC= TokuDB Engine (experimental)
TOKUDB_CMAKE_ON= -DUSE_CTAGS=0
TOKUDB_EXTRA_PATCHES=${PATCHDIR}/extrapatch-tokudb
More information about the svn-ports-head
mailing list