svn commit: r484799 - branches/2018Q4/dns/dnsdist

Carlos J. Puga Medina cpm at FreeBSD.org
Mon Nov 12 10:28:04 UTC 2018


Author: cpm
Date: Mon Nov 12 10:28:03 2018
New Revision: 484799
URL: https://svnweb.freebsd.org/changeset/ports/484799

Log:
  MFH: r484700
  
  - Fix building against Lua(JIT). The configuration switch change since version 1.3.2.
    When building without poudriere, it would always pick LuaJIT over Lua if both are installed,
    basically ignoring the configuration knob.
  - Bump PORTREVISION
  
  PR:		233142 (based on)
  Submitted by:	Ralf van der Enden <tremere at cainites.net>
  
  Approved by:	ports-secteam (miwi)

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

Modified: branches/2018Q4/dns/dnsdist/Makefile
==============================================================================
--- branches/2018Q4/dns/dnsdist/Makefile	Mon Nov 12 10:26:13 2018	(r484798)
+++ branches/2018Q4/dns/dnsdist/Makefile	Mon Nov 12 10:28:03 2018	(r484799)
@@ -3,6 +3,7 @@
 
 PORTNAME=	dnsdist
 DISTVERSION=	1.3.3
+PORTREVISION=	1
 CATEGORIES=	dns net
 MASTER_SITES=	https://downloads.powerdns.com/releases/ \
 		LOCAL/cpm
@@ -51,9 +52,10 @@ FSTRM_CONFIGURE_ENABLE=	fstrm
 GNUTLS_LIB_DEPENDS=	libgnutls.so:security/gnutls
 GNUTLS_CONFIGURE_ENABLE=gnutls
 
-LUAJIT_LIB_DEPENDS=	libluajit-5.1.so.2:lang/luajit
+LUAJIT_LIB_DEPENDS=	libluajit-5.1.so:lang/luajit
 LUAJIT_USES_OFF=	lua
-LUAJIT_CONFIGURE_WITH=	luajit
+LUAJIT_CONFIGURE_ON=	--with-lua=luajit
+LUAJIT_CONFIGURE_OFF=	--with-lua=lua-${LUA_VER}
 
 OPENSSL_USES=		ssl
 OPENSSL_CONFIGURE_ENABLE=libssl


More information about the svn-ports-branches mailing list