diff options
author | cy <cy@FreeBSD.org> | 2016-12-13 11:00:08 +0800 |
---|---|---|
committer | cy <cy@FreeBSD.org> | 2016-12-13 11:00:08 +0800 |
commit | 6d73ee435538b0473e92f7ca4902af3495c2ff18 (patch) | |
tree | f82a121f3e748b77f6913df91891c871bb995dc7 /net | |
parent | 82e6cc04a1fc80b2661b918263b24908a402067c (diff) | |
download | freebsd-ports-gnome-6d73ee435538b0473e92f7ca4902af3495c2ff18.tar.gz freebsd-ports-gnome-6d73ee435538b0473e92f7ca4902af3495c2ff18.tar.zst freebsd-ports-gnome-6d73ee435538b0473e92f7ca4902af3495c2ff18.zip |
Flag ntp and ntp-devel ignore if libressl is installed due to md5
symbol conflicts.
PR: 215093
Diffstat (limited to 'net')
-rw-r--r-- | net/ntp-devel/Makefile | 4 | ||||
-rw-r--r-- | net/ntp/Makefile | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/net/ntp-devel/Makefile b/net/ntp-devel/Makefile index d9c2ee7436df..10ab8fd2548f 100644 --- a/net/ntp-devel/Makefile +++ b/net/ntp-devel/Makefile @@ -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} diff --git a/net/ntp/Makefile b/net/ntp/Makefile index 3aa5960b7578..ca827574cfa1 100644 --- a/net/ntp/Makefile +++ b/net/ntp/Makefile @@ -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 |