svn commit: r466169 - head/dns/dnsdist

Carlos J. Puga Medina cpm at FreeBSD.org
Sun Apr 1 16:33:17 UTC 2018


Author: cpm
Date: Sun Apr  1 16:33:16 2018
New Revision: 466169
URL: https://svnweb.freebsd.org/changeset/ports/466169

Log:
  dns/dnsdist: Fix building against openssl from base
  
  checking for LIBSSL... no
  configure: error: OpenSSL libssl requested but libraries were not found
  ===>  Script "configure" failed unexpectedly.
  Please report the problem to cpm at FreeBSD.org [maintainer] and attach the
  "/wrkdirs/usr/ports/dns/dnsdist/work/dnsdist-1.3.0/config.log" including the
  output of the failure of your make command. Also, it might be a good idea to
  provide an overview of all packages installed on your system (e.g. a
  /usr/local/sbin/pkg-static info -g -Ea).
  *** Error code 1
  
  Stop.
  make: stopped in /usr/ports/dns/dnsdist
  
  PR:		227180
  Submitted by:	Ralf van der Enden <tremere at cainites.net>
  MFH:		2018Q2

Modified:
  head/dns/dnsdist/Makefile

Modified: head/dns/dnsdist/Makefile
==============================================================================
--- head/dns/dnsdist/Makefile	Sun Apr  1 15:38:48 2018	(r466168)
+++ head/dns/dnsdist/Makefile	Sun Apr  1 16:33:16 2018	(r466169)
@@ -57,6 +57,7 @@ LUAJIT_CONFIGURE_WITH=	luajit
 
 OPENSSL_USES=		ssl
 OPENSSL_CONFIGURE_ENABLE=libssl
+OPENSSL_CONFIGURE_ON=	LIBSSL_CFLAGS=-I${OPENSSLINC} LIBSSL_LIBS="-L${OPENSSLLIB} -lssl"
 
 SNMP_LIB_DEPENDS=	libnetsnmp.so:net-mgmt/net-snmp
 SNMP_CONFIGURE_WITH=	net-snmp


More information about the svn-ports-head mailing list