Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 1 Apr 2018 23:56:30 +0000 (UTC)
From:      "Carlos J. Puga Medina" <cpm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r466192 - branches/2018Q2/dns/dnsdist
Message-ID:  <201804012356.w31NuUTJ054640@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cpm
Date: Sun Apr  1 23:56:30 2018
New Revision: 466192
URL: https://svnweb.freebsd.org/changeset/ports/466192

Log:
  MFH: r466169
  
  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@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@cainites.net>
  
  Approved by:	ports-secteam (riggs)

Modified:
  branches/2018Q2/dns/dnsdist/Makefile
Directory Properties:
  branches/2018Q2/   (props changed)

Modified: branches/2018Q2/dns/dnsdist/Makefile
==============================================================================
--- branches/2018Q2/dns/dnsdist/Makefile	Sun Apr  1 23:55:25 2018	(r466191)
+++ branches/2018Q2/dns/dnsdist/Makefile	Sun Apr  1 23:56:30 2018	(r466192)
@@ -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



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