Date: Thu, 7 Mar 2019 15:45:58 +0000 (UTC) From: Renato Botelho <garga@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494959 - head/www/e2guardian Message-ID: <201903071545.x27FjwDV095623@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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" \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903071545.x27FjwDV095623>