svn commit: r428460 - in head/net: ntp ntp-devel

Cy Schubert cy at FreeBSD.org
Tue Dec 13 03:00:09 UTC 2016


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


More information about the svn-ports-head mailing list