svn commit: r480436 - head/net/mpd5

Eugene Grosbein eugen at FreeBSD.org
Sat Sep 22 23:19:41 UTC 2018


Author: eugen
Date: Sat Sep 22 23:19:40 2018
New Revision: 480436
URL: https://svnweb.freebsd.org/changeset/ports/480436

Log:
  net/mpd5: mark broken with openssl111 for a moment
  
  mpd5 successfully compiles with openssl-devel or openssl111
  but cannot be linked because it links with base system libfetch(3)
  that currently links with /usr/lib/libssl.so.8 (openssl 1.0.2p-freebsd).
  
  So, one should not attempt to build mpd5 with newer openssl version
  until it's imported to base system so mpd5 won't link with two distinct
  openssl versions.
  
  PR:		231599

Modified:
  head/net/mpd5/Makefile

Modified: head/net/mpd5/Makefile
==============================================================================
--- head/net/mpd5/Makefile	Sat Sep 22 22:08:39 2018	(r480435)
+++ head/net/mpd5/Makefile	Sat Sep 22 23:19:40 2018	(r480436)
@@ -14,7 +14,9 @@ COMMENT=	Multi-link PPP daemon based on netgraph(4)
 
 LICENSE=	BSD3CLAUSE
 
-BROKEN_SSL=	openssl-devel
+BROKEN_SSL=	openssl-devel openssl111
+BROKEN_SSL_REASON_openss-devel=	needs libfetch(3) linked with system libssl
+BROKEN_SSL_REASON_openssl111=	needs libfetch(3) linked with system libssl
 
 OPTIONS_DEFINE=	DOCS NG_IPACCT
 NG_IPACCT_DESC=	Use ng_ipacct kernel module from port


More information about the svn-ports-all mailing list