Your message dated Sun, 13 May 2007 16:54:03 +0900 with message-id <9bd2f8970705130054j204d1e16ua2bd56d99140c763@mail.gmail.com> and subject line Bug#423476: Internal portaudio v19 libraries crash against JACK on AMD64 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database)
--- Begin Message ---
- To: bugs@debian.org
- Subject: Internal portaudio v19 libraries crash against JACK on AMD64
- From: "Emmet Hikory" <emmet.hikory@gmail.com>
- Date: Sat, 12 May 2007 14:49:14 +0900
- Message-id: <9bd2f8970705112249h4c8a616ayc9d9d7f997b9120@mail.gmail.com>
Package: audacity Version: 1.3.2-2 Tags: patch Severity: wishlist The JACK interface of the internal portaudio libraries used by audacity do not have proper memory bounds checking for 64-bit architectures (see bug 406754 for discussion). The decision taken by the portaudio maintainer appears to have been to disable JACK for architectures other than i386 and powerpc. Please consider the attached patch as a similar workaround for the audacity package, until such time as this issue is fullly addressed. Thank you. -- Emmet HIKORYdiff -u audacity-1.3.2/debian/rules audacity-1.3.2/debian/rules --- audacity-1.3.2/debian/rules +++ audacity-1.3.2/debian/rules @@ -5,6 +5,7 @@ include /usr/share/cdbs/1/rules/simple-patchsys.mk include /usr/share/cdbs/1/rules/utils.mk +ifeq (i386,$(DEB_HOST_ARCH)) DEB_CONFIGURE_EXTRA_FLAGS := --with-libsndfile=system \ --with-vorbis=system \ --with-id3tag=system \ @@ -13,6 +14,28 @@ --with-expat=system \ --with-portaudio=v19 \ --enable-unicode +else +ifeq (powerpc,$(DEB_HOST_ARCH)) +DEB_CONFIGURE_EXTRA_FLAGS := --with-libsndfile=system \ + --with-vorbis=system \ + --with-id3tag=system \ + --with-libmad=system \ + --with-libflac=system \ + --with-expat=system \ + --with-portaudio=v19 \ + --enable-unicode +else +DEB_CONFIGURE_EXTRA_FLAGS := --with-libsndfile=system \ + --with-vorbis=system \ + --with-id3tag=system \ + --with-libmad=system \ + --with-libflac=system \ + --with-expat=system \ + --with-portaudio=v19 \ + --with-jack=no \ + --enable-unicode +endif +endif DEB_COMPRESS_EXCLUDE := *.htb
--- End Message ---
--- Begin Message ---
- To: "Free Ekanayaka" <free@64studio.com>
- Cc: "Free Ekanayaka" <freee@debian.org>, "Joost Yervante Damad" <andete@debian.org>, 423476-done@bugs.debian.org, debian-multimedia@lists.debian.org
- Subject: Re: Bug#423476: Internal portaudio v19 libraries crash against JACK on AMD64
- From: "Emmet Hikory" <emmet.hikory@gmail.com>
- Date: Sun, 13 May 2007 16:54:03 +0900
- Message-id: <9bd2f8970705130054j204d1e16ua2bd56d99140c763@mail.gmail.com>
- In-reply-to: <87bqgqjrel.fsf@64studio.com>
- References: <9bd2f8970705112249h4c8a616ayc9d9d7f997b9120@mail.gmail.com> <200705120836.49369.andete@debian.org> <87lkfubfle.fsf@64studio.com> <9bd2f8970705120158l3720ea80kc153915937383fc0@mail.gmail.com> <87bqgqjrel.fsf@64studio.com>
On 5/12/07, Free Ekanayaka <free@64studio.com> wrote:I've just tested audacity 1.3.2 on an amd64 install of 64 Studio 1.3.0 (based on etch, jack 0.103.0 and RT-patched 2.6.19 kernel). Record and playback apparently work nice with Jack.. I didn't test bleeding edge Debian testing or unstable though.I've completed retesting, and appear to have previously proved that the unstable distribution is unstable. Audacity 1.3.2-3 and JACK 0.103.0-4 work perfectly together on AMD64 for me today. My apologies for the bug noise. -- Emmet
--- End Message ---