Date: Tue, 10 Jun 2014 15:22:13 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r357334 - head/databases/mariadb55-server Message-ID: <201406101522.s5AFMD2l060771@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201406101522.s5AFMD2l060771>