From owner-svn-ports-all@freebsd.org Sun Oct 22 10:31:29 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB1E5E4F342; Sun, 22 Oct 2017 10:31:29 +0000 (UTC) (envelope-from madpilot@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 mx1.freebsd.org (Postfix) with ESMTPS id 7867713DA; Sun, 22 Oct 2017 10:31:29 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9MAVS26092907; Sun, 22 Oct 2017 10:31:28 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9MAVS2i092906; Sun, 22 Oct 2017 10:31:28 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201710221031.v9MAVS2i092906@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sun, 22 Oct 2017 10:31:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r452632 - head/multimedia/libvdpau X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: head/multimedia/libvdpau X-SVN-Commit-Revision: 452632 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Oct 2017 10:31:29 -0000 Author: madpilot Date: Sun Oct 22 10:31:28 2017 New Revision: 452632 URL: https://svnweb.freebsd.org/changeset/ports/452632 Log: - WITH_DEBUG=yes is set by the infrastructure when the DEBUG option is enabled, so don't do that here [1] - Also make the port enables the DEBUG option when WITH_DEBUG is defined so full debug is enabled. Reported by: jbeich [1] Modified: head/multimedia/libvdpau/Makefile Modified: head/multimedia/libvdpau/Makefile ============================================================================== --- head/multimedia/libvdpau/Makefile Sun Oct 22 10:31:00 2017 (r452631) +++ head/multimedia/libvdpau/Makefile Sun Oct 22 10:31:28 2017 (r452632) @@ -20,8 +20,11 @@ INSTALL_TARGET= install-strip OPTIONS_DEFINE= DEBUG +.ifdef WITH_DEBUG +OPTIONS_DEFAULT= DEBUG +.endif + DEBUG_CFLAGS= -D_DEBUG -DEBUG_VARS= WITH_DEBUG=yes DEBUG_CFLAGS_OFF= -DNDEBUG post-patch: .SILENT