Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 77008 - jack-audio-connection-kit-0.99.0-r1 doesn't really enable shm when with USE=jack-tmpfs
Summary: jack-audio-connection-kit-0.99.0-r1 doesn't really enable shm when with USE=j...
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: rob holland (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-01-07 04:45 UTC by Dennis Schridde
Modified: 2005-01-07 13:33 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dennis Schridde 2005-01-07 04:45:49 UTC
jack-audio-connection-kit doesn't really enable shm when with USE=jack-tmpfs, it only sets the default tmpdir, but doesn't switch the enable configure flag.

Here is my patch to the ebuild:

        if use jack-tmpfs; then
-               myconf="${myconf} --with-default-tmpdir=/dev/shm"
+               myconf="${myconf} --with-default-tmpdir=/dev/shm --enable-posix-shm"
        else
                myconf="${myconf} --with-default-tmpdir=/var/run/jack"
        fi


Reproducible: Always
Steps to Reproduce:
Comment 1 rob holland (RETIRED) gentoo-dev 2005-01-07 07:19:23 UTC
Your patch only toggles between the two types of shm. Without your patch Sysmtem V shm is being used. Run jackd and then check /dev/shm, or read the output of ./configure
Comment 2 Dennis Schridde 2005-01-07 13:33:17 UTC
But I think there where errors, whitout that patch. I'll test that.