ports/145989: audio/qjackctl - jackd does not start from not root user

Ivan Klymenko fidaj at ukr.net
Fri Apr 23 17:15:44 UTC 2010


>Number:         145989
>Category:       ports
>Synopsis:       audio/qjackctl - jackd does not start from not root user
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Fri Apr 23 17:15:43 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Ivan Klymenko
>Release:        FreeBSD 9.0-CURRENT amd64
>Organization:
individual
>Environment:
>Description:
If this option "realtime" is not specified in qjackctl, then tries to start jackd with realtime priority - that will not be successful for not root user. For the successful launch jackd should add the option "-r"
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

--- src/qjackctlMainForm.cpp.orig	2010-04-23 14:36:05.000000000 +0300
+++ src/qjackctlMainForm.cpp	2010-04-23 14:36:32.000000000 +0300
@@ -805,6 +805,8 @@
 		if (m_preset.iPriority > 0 && !bCoreaudio)
 			args.append("-P" + QString::number(m_preset.iPriority));
 	}
+	else
+		args.append("-r");
 	if (m_preset.iPortMax > 0 && m_preset.iPortMax != 256)
 		args.append("-p" + QString::number(m_preset.iPortMax));
 	if (m_preset.iTimeout > 0 && m_preset.iTimeout != 500)


>Release-Note:
>Audit-Trail:
>Unformatted:



More information about the freebsd-ports-bugs mailing list