Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Sep 2018 23:19:41 +0000 (UTC)
From:      Eugene Grosbein <eugen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480436 - head/net/mpd5
Message-ID:  <201809222319.w8MNJf7G014122@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809222319.w8MNJf7G014122>