svn commit: r357334 - head/databases/mariadb55-server
Bryan Drewery
bdrewery at FreeBSD.org
Tue Jun 10 15:22:13 UTC 2014
Author: bdrewery
Date: Tue Jun 10 15:22:12 2014
New Revision: 357334
URL: http://svnweb.freebsd.org/changeset/ports/357334
QAT: https://qat.redports.org/buildarchive/r357334/
Log:
- Explain to user how to build if they have openssl installed. Another option
is to auto select OPENSSL and PORTSSL options but I stuck with letting the
user make that decision.
PR: 186566
Reported by: agifford at infowest.com
Modified:
head/databases/mariadb55-server/Makefile
Modified: head/databases/mariadb55-server/Makefile
==============================================================================
--- head/databases/mariadb55-server/Makefile Tue Jun 10 15:20:59 2014 (r357333)
+++ head/databases/mariadb55-server/Makefile Tue Jun 10 15:22:12 2014 (r357334)
@@ -83,9 +83,14 @@ CMAKE_ARGS+= -DWITH_JEMALLOC="system"
.endif
.if ${PORT_OPTIONS:MSSL}
+.if exists(${LOCALBASE}/include/openssl/opensslv.h)
+. if !${PORT_OPTIONS:MOPENSSL} || !${PORT_OPTIONS:MPORTSSL}
+IGNORE= security/openssl package is installed. To build this either select the OPENSSL and PORTSSL options or deinstall openssl
+. endif
+.endif
.if ${PORT_OPTIONS:MOPENSSL}
USE_OPENSSL= yes
-.if empty(PORT_OPTIONS:MPORTSSL)
+.if !${PORT_OPTIONS:MPORTSSL}
WITH_OPENSSL_BASE= yes
.else
WITH_OPENSSL_PORT= yes
More information about the svn-ports-all
mailing list