svn commit: r412586 - in head/net-mgmt: zabbix3-agent zabbix3-proxy zabbix3-server

Mathieu Arnold mat at FreeBSD.org
Tue Apr 5 21:44:42 UTC 2016


+--On 5 avril 2016 20:13:50 +0000 Kurt Jaeger <pi at FreeBSD.org> wrote:
| +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
| +WITH_OPENSSL_PORT=yes
| +.endif

This is a bad idea, WITH_OPENSSL_PORT is a global directive.  After
installing this, some ports will use the base openssl, and some will use
the ports one.  I know other ports do it, it still is a bad idea.  It would
be much better to do something like this:

.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 &&
!defined(WITH_OPENSSL_PORT)
IGNORE=   OpenSSL from the base system is too old, add WITH_OPENSSL_PORT to
your /etc/make.conf and rebuild everything that needs SSL.
.endif

Or something similar.

-- 
Mathieu Arnold
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 949 bytes
Desc: not available
URL: <http://lists.freebsd.org/pipermail/svn-ports-all/attachments/20160405/2a5ad243/attachment.sig>


More information about the svn-ports-all mailing list