Date: Tue, 13 Dec 2016 03:00:08 +0000 (UTC) From: Cy Schubert <cy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428460 - in head/net: ntp ntp-devel Message-ID: <201612130300.uBD308kR075708@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cy Date: Tue Dec 13 03:00:08 2016 New Revision: 428460 URL: https://svnweb.freebsd.org/changeset/ports/428460 Log: Flag ntp and ntp-devel ignore if libressl is installed due to md5 symbol conflicts. PR: 215093 Modified: head/net/ntp-devel/Makefile head/net/ntp/Makefile Modified: head/net/ntp-devel/Makefile ============================================================================== --- head/net/ntp-devel/Makefile Tue Dec 13 02:50:42 2016 (r428459) +++ head/net/ntp-devel/Makefile Tue Dec 13 03:00:08 2016 (r428460) @@ -59,6 +59,10 @@ THREADS_CONFIGURE_WITH= threads .include <bsd.port.pre.mk> +if ${SSL_DEFAULT:Mlibressl*} +IGNORE= detected LibreSSL (undefined references to MD5 symbols) +.endif + .for D in ${NTP_DRIVERS} .if ${PORT_OPTIONS:M${D}} CONFIGURE_ARGS+= --enable-${D} Modified: head/net/ntp/Makefile ============================================================================== --- head/net/ntp/Makefile Tue Dec 13 02:50:42 2016 (r428459) +++ head/net/ntp/Makefile Tue Dec 13 03:00:08 2016 (r428460) @@ -70,6 +70,10 @@ ${D}_CONFIGURE_ON= --enable-${D} BROKEN= Does not build under FreeBSD-9, aclocal not found .endif +.if ${SSL_DEFAULT:Mlibressl*} +IGNORE= detected LibreSSL (md5 definition conflicts) +.endif + # XXX Temporary hack. Remember to remove this next commit. post-extract: @${TOUCH} ${WRKSRC}/scripts/build/checkHtmlFileDates
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201612130300.uBD308kR075708>