Your message dated Tue, 20 Sep 2005 16:02:09 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#274809: fixed in creox 0.2.2rc2-3 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) -------------------------------------- Received: (at submit) by bugs.debian.org; 4 Oct 2004 06:16:10 +0000 >From [EMAIL PROTECTED] Sun Oct 03 23:16:10 2004 Return-path: <[EMAIL PROTECTED]> Received: from c169091.adsl.hansenet.de (localhost.localdomain) [213.39.169.91] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1CEM8o-0001cF-00; Sun, 03 Oct 2004 23:16:10 -0700 Received: from aj by localhost.localdomain with local (Exim 4.34) id 1CEM9y-0007iS-4Y; Mon, 04 Oct 2004 08:17:22 +0200 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: creox: FTBFS with gcc-3.4: `EBUSY' undeclared Message-Id: <[EMAIL PROTECTED]> Date: Mon, 04 Oct 2004 08:17:22 +0200 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-7.0 required=4.0 tests=BAYES_01,HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: Package: creox Severity: normal Tags: patch When building 'creox' with gcc-3.4 I get the following error: make[4]: Entering directory `/creox-0.2.2rc2/creox/dsp_flow' if x86_64-linux-g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/include/kde -I/usr/share/qt3/include -I. -I../../creox -I../../creox/cr_lib -I../../creox/preset -DQT_THREAD_SUPPORT -D_REENTRANT -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new -fexceptions -DKDE_NO_COMPAT -DQT_NO_COMPAT -DQT_CLEAN_NAMESPACE -MT threadeffector.o -MD -MP -MF ".deps/threadeffector.Tpo" \ -c -o threadeffector.o `test -f 'threadeffector.cpp' || echo './'`threadeffector.cpp; \ then mv -f ".deps/threadeffector.Tpo" ".deps/threadeffector.Po"; \ else rm -f ".deps/threadeffector.Tpo"; exit 1; \ fi threadeffector.cpp: In member function `int ThreadEffector::process(jack_nframes_t)': threadeffector.cpp:93: error: `EBUSY' undeclared (first use this function) threadeffector.cpp:93: error: (Each undeclared identifier is reported only once for each function it appears in.) make[4]: *** [threadeffector.o] Error 1 make[4]: Leaving directory `/creox-0.2.2rc2/creox/dsp_flow' With the attached patch 'creox' can be compiled using gcc-3.4. Regards Andreas Jochens diff -urN ../tmp-orig/creox-0.2.2rc2/creox/dsp_flow/threadeffector.cpp ./creox/dsp_flow/threadeffector.cpp --- ../tmp-orig/creox-0.2.2rc2/creox/dsp_flow/threadeffector.cpp 2003-04-03 02:30:24.000000000 +0200 +++ ./creox/dsp_flow/threadeffector.cpp 2004-10-03 20:03:11.038763624 +0200 @@ -22,6 +22,7 @@ #include <cmath> #include <cstring> #include <iostream> +#include <errno.h> #include <klocale.h> #include <kapplication.h> #include <kglobal.h> diff -urN ../tmp-orig/creox-0.2.2rc2/creox/effects_dsp/distortionprocessor.cpp ./creox/effects_dsp/distortionprocessor.cpp --- ../tmp-orig/creox-0.2.2rc2/creox/effects_dsp/distortionprocessor.cpp 2003-03-02 22:12:18.000000000 +0100 +++ ./creox/effects_dsp/distortionprocessor.cpp 2004-10-04 08:10:21.674898736 +0200 @@ -21,6 +21,7 @@ #define _GNU_SOURCE #endif #include "control.h" +#include <errno.h> #include <cmath> #include <cassert> #include <cstring> diff -urN ../tmp-orig/creox-0.2.2rc2/creox/effects_dsp/echoprocessor.cpp ./creox/effects_dsp/echoprocessor.cpp --- ../tmp-orig/creox-0.2.2rc2/creox/effects_dsp/echoprocessor.cpp 2003-03-04 23:13:46.000000000 +0100 +++ ./creox/effects_dsp/echoprocessor.cpp 2004-10-04 08:10:04.489511312 +0200 @@ -18,6 +18,7 @@ #define _GNU_SOURCE #endif #include "control.h" +#include <errno.h> #include <cassert> #include <cmath> #include <cstring> diff -urN ../tmp-orig/creox-0.2.2rc2/creox/effects_dsp/flangerprocessor.cpp ./creox/effects_dsp/flangerprocessor.cpp --- ../tmp-orig/creox-0.2.2rc2/creox/effects_dsp/flangerprocessor.cpp 2003-03-02 22:12:18.000000000 +0100 +++ ./creox/effects_dsp/flangerprocessor.cpp 2004-10-04 08:09:50.535632624 +0200 @@ -18,6 +18,7 @@ #define _GNU_SOURCE #endif #include "control.h" +#include <errno.h> #include <cstring> #include <cmath> #include <iostream> diff -urN ../tmp-orig/creox-0.2.2rc2/creox/effects_dsp/phaserprocessor.cpp ./creox/effects_dsp/phaserprocessor.cpp --- ../tmp-orig/creox-0.2.2rc2/creox/effects_dsp/phaserprocessor.cpp 2003-09-16 20:58:01.000000000 +0200 +++ ./creox/effects_dsp/phaserprocessor.cpp 2004-10-04 08:08:23.920800080 +0200 @@ -23,6 +23,7 @@ #define _GNU_SOURCE #endif #include "control.h" +#include <errno.h> #include <cstring> #include <cmath> #include <iostream> diff -urN ../tmp-orig/creox-0.2.2rc2/creox/effects_dsp/tremoloprocessor.cpp ./creox/effects_dsp/tremoloprocessor.cpp --- ../tmp-orig/creox-0.2.2rc2/creox/effects_dsp/tremoloprocessor.cpp 2003-03-02 22:13:43.000000000 +0100 +++ ./creox/effects_dsp/tremoloprocessor.cpp 2004-10-04 08:07:40.245439744 +0200 @@ -18,6 +18,7 @@ #define _GNU_SOURCE #endif #include "control.h" +#include <errno.h> #include <cassert> #include <cmath> #include <iostream> --------------------------------------- Received: (at 274809-close) by bugs.debian.org; 20 Sep 2005 23:08:15 +0000 >From [EMAIL PROTECTED] Tue Sep 20 16:08:15 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1EHr7p-00084I-00; Tue, 20 Sep 2005 16:02:09 -0700 From: Free Ekanayaka <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#274809: fixed in creox 0.2.2rc2-3 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Tue, 20 Sep 2005 16:02:09 -0700 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Level: X-Spam-Status: No, hits=-3.4 required=4.0 tests=ADDR_FREE,BAYES_00, HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02 Source: creox Source-Version: 0.2.2rc2-3 We believe that the bug you reported is fixed in the latest version of creox, which is due to be installed in the Debian FTP archive: creox_0.2.2rc2-3.diff.gz to pool/main/c/creox/creox_0.2.2rc2-3.diff.gz creox_0.2.2rc2-3.dsc to pool/main/c/creox/creox_0.2.2rc2-3.dsc creox_0.2.2rc2-3_powerpc.deb to pool/main/c/creox/creox_0.2.2rc2-3_powerpc.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Free Ekanayaka <[EMAIL PROTECTED]> (supplier of updated creox package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Thu, 15 Sep 2005 09:11:46 +0100 Source: creox Binary: creox Architecture: source powerpc Version: 0.2.2rc2-3 Distribution: unstable Urgency: low Maintainer: Free Ekanayaka <[EMAIL PROTECTED]> Changed-By: Free Ekanayaka <[EMAIL PROTECTED]> Description: creox - real-time guitar effects Closes: 274809 317189 327956 Changes: creox (0.2.2rc2-3) unstable; urgency=low . * Actually enabled the ebusy undeclared patch (closes: #274809) * Rebuilt against the new Qt/KDE (closes: #327956) * Rebuilt against libjack 0.100.0 (closes: #317189) Files: 85716a1476eafc33a174833a5b0f6f7f 645 sound optional creox_0.2.2rc2-3.dsc ce1315ca8922de15227eb1c26b69a8d3 54717 sound optional creox_0.2.2rc2-3.diff.gz 2264bc3f3cd2474523d0a5cfb06d9878 297796 sound optional creox_0.2.2rc2-3_powerpc.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFDMJKH2PLmgVuXpdIRAmV4AJ9UC37B4O8IAMl5Sh7NlbfxC/wL9QCghSFY AUa92KWIizMUbmYlpUm0bcA= =kDI7 -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]