From owner-svn-ports-head@freebsd.org Thu Mar 7 15:45:59 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C54F15013F4; Thu, 7 Mar 2019 15:45:59 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 00CF58B95E; Thu, 7 Mar 2019 15:45:59 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DF6401DC8A; Thu, 7 Mar 2019 15:45:58 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x27Fjwi6095624; Thu, 7 Mar 2019 15:45:58 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x27FjwDV095623; Thu, 7 Mar 2019 15:45:58 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201903071545.x27FjwDV095623@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Thu, 7 Mar 2019 15:45:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r494959 - head/www/e2guardian X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: head/www/e2guardian X-SVN-Commit-Revision: 494959 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 00CF58B95E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2019 15:45:59 -0000 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 (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" \