svn commit: r483042 - head/irc/bitchx

Alexey Dokuchaev danfe at FreeBSD.org
Fri Oct 26 16:42:56 UTC 2018


Author: danfe
Date: Fri Oct 26 16:42:55 2018
New Revision: 483042
URL: https://svnweb.freebsd.org/changeset/ports/483042

Log:
  Unbreak the build against newer versions of OpenSSL where they had removed
  SSLeay() from libcrypto so configure test for it now fails.  Check against
  ERR_get_error() instead.
  
  PR:	232550

Modified:
  head/irc/bitchx/Makefile

Modified: head/irc/bitchx/Makefile
==============================================================================
--- head/irc/bitchx/Makefile	Fri Oct 26 16:18:28 2018	(r483041)
+++ head/irc/bitchx/Makefile	Fri Oct 26 16:42:55 2018	(r483042)
@@ -52,6 +52,7 @@ PLUGIN_LIST=	abot acro arcfour autocycle blowfish cavl
 
 post-patch:
 	${REINPLACE_CMD} -e 's|bzip2|true|g' ${WRKSRC}/Makefile.in
+	${REINPLACE_CMD} -e 's|SSLeay|ERR_get_error|' ${WRKSRC}/configure
 
 post-patch-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}


More information about the svn-ports-all mailing list