Kurt Jaeger wrote:
Hi!
I'm testbuilding those ports right now and find that
they fail on 9.3amd64 with:
With this in the -server Makefile, all is fine.
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
WITH_OPENSSL_PORT=yes
.endif
Umm probably a really bad idea... consider this or something more
creative/descriptive:
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 && ${WITH_OPENSSL_PORT} !=
"yes"
BROKEN= You must set WITH_OPENSSL_PORT=yes in /etc/make.conf on Pre 10.x
.endif
... the idea instead of silently turning it on which could cause a
myriad of hell for production systems where some ports are compiled
against security/openssl and some against the base openssl... stop the
compile and tell the user what they have to do to resolve it... which
will then make anything else use the same openssl and lessen the
dependency/library issues that could happen.
Regards,
--
Michelle Sullivan
http://www.mhix.org/
_______________________________________________
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"