svn commit: r494959 - head/www/e2guardian

Renato Botelho garga at FreeBSD.org
Thu Mar 7 15:45:59 UTC 2019


Author: garga
Date: Thu Mar  7 15:45:58 2019
New Revision: 494959
URL: https://svnweb.freebsd.org/changeset/ports/494959

Log:
  www/e2guardian: Fix DEBUG option
  
  e2guardian configure script doesn't respect --without-dgdebug option and
  end up building binary with debug support since it was upgraded to 5.3.1.
  Pass --with-dgdebug=off explicit when DEBUG option is not set.  While
  here, include --with-newdebug parameter to make sure all debug will be
  disabled.
  
  PR:		235879
  Approved by:	Marcello Coutinho <marcellocoutinho at gmail.com> (maintainer)
  Sponsored by:	Rubicon Communications, LLC (Netgate)

Modified:
  head/www/e2guardian/Makefile

Modified: head/www/e2guardian/Makefile
==============================================================================
--- head/www/e2guardian/Makefile	Thu Mar  7 15:45:54 2019	(r494958)
+++ head/www/e2guardian/Makefile	Thu Mar  7 15:45:58 2019	(r494959)
@@ -3,6 +3,7 @@
 
 PORTNAME=	e2guardian
 PORTVERSION=	5.3.1
+PORTREVISION=	1
 DISTVERSIONPREFIX=	v
 CATEGORIES=	www
 
@@ -56,7 +57,8 @@ NTLM_CONFIGURE_ENABLE=		ntlm
 NTLM_USES=			iconv
 DNS_CONFIGURE_ENABLE=		dnsauth
 EMAIL_CONFIGURE_ENABLE=		email
-DEBUG_CONFIGURE_WITH=		dgdebug
+DEBUG_CONFIGURE_OFF=		--with-dgdebug=off --with-newdebug=off
+DEBUG_CONFIGURE_ON=		--with-dgdebug=on --with-newdebug=on
 SSL_MITM_USES=			ssl
 SSL_MITM_CONFIGURE_ENABLE=	sslmitm
 SSL_MITM_CONFIGURE_ENV=		OPENSSL_LIBS="-lssl -lcrypto" \


More information about the svn-ports-all mailing list