From owner-svn-ports-all@freebsd.org Sat Dec 24 10:27:20 2016 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 47410C8BCE4; Sat, 24 Dec 2016 10:27:20 +0000 (UTC) (envelope-from ehaupt@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 168691EBD; Sat, 24 Dec 2016 10:27:20 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBOARJUL062612; Sat, 24 Dec 2016 10:27:19 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBOARJY4062610; Sat, 24 Dec 2016 10:27:19 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201612241027.uBOARJY4062610@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Sat, 24 Dec 2016 10:27:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429325 - in head/audio/aucatctl: . files X-SVN-Group: ports-head 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: Sat, 24 Dec 2016 10:27:20 -0000 Author: ehaupt Date: Sat Dec 24 10:27:18 2016 New Revision: 429325 URL: https://svnweb.freebsd.org/changeset/ports/429325 Log: Fix setting master volume on i386 PR: 215521 Submitted by: t@tobik.me (maintainer) MFH: 2016Q4 Added: head/audio/aucatctl/files/ head/audio/aucatctl/files/patch-aucatctl.c (contents, props changed) Modified: head/audio/aucatctl/Makefile Modified: head/audio/aucatctl/Makefile ============================================================================== --- head/audio/aucatctl/Makefile Sat Dec 24 10:20:19 2016 (r429324) +++ head/audio/aucatctl/Makefile Sat Dec 24 10:27:18 2016 (r429325) @@ -6,6 +6,7 @@ PORTNAME= aucatctl PORTVERSION= 0.1 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://www.sndio.org/ Added: head/audio/aucatctl/files/patch-aucatctl.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/aucatctl/files/patch-aucatctl.c Sat Dec 24 10:27:18 2016 (r429325) @@ -0,0 +1,10 @@ +--- aucatctl.c.orig 2016-12-22 19:50:06 UTC ++++ aucatctl.c +@@ -69,6 +69,7 @@ setmaster(unsigned vol) + + msg.start = SYSEX_START; + msg.type = SYSEX_TYPE_RT; ++ msg.dev = 0; + msg.id0 = SYSEX_CONTROL; + msg.id1 = SYSEX_MASTER; + msg.u.master.fine = 0;