Package: spiralsynthmodular Version: 0.2.2a-3.1 Usertags: ftbfs-gcc-4.3 Tags: patch
Your package fails to build with GCC 4.3. Version 4.3 has not been released yet but I'm building with a snapshot in order to find errors and give people an advance warning. In GCC 4.3, the C++ header dependencies have been cleaned up. The advantage of this is that programs will compile faster. The downside is that you actually need to directly #include everything you use (but you really should do this anyway, otherwise your program won't work with any compiler other than GCC). Some background of this can be found at http://gcc.gnu.org/PR28080 You can reproduce this problem with gcc-snapshot (20070326-1 or higher) from unstable. (Currently not available for i386, but for amd64, powerpc and ia64. I hope to have i386 binaries in the archive in ~3 weeks.) > Automatic build of spiralsynthmodular_0.2.2a-3.1 on coconut0 by sbuild/ia64 > 0.49 ... > SpiralSound/ChannelHandler.h:71: warning: type qualifiers ignored on function > return type > SpiralSound/ChannelHandler.C: In destructor > 'ChannelHandler::~ChannelHandler()': > SpiralSound/ChannelHandler.C:43: error: 'free' was not declared in this scope > SpiralSound/ChannelHandler.C: In member function 'void > ChannelHandler::RegisterData(const std::string&, ChannelHandler::Type, void*, > int)': > SpiralSound/ChannelHandler.C:177: error: 'malloc' was not declared in this > scope > SpiralSound/ChannelHandler.C: In member function 'void > ChannelHandler::BulkTransfer(const std::string&, void*, int)': > SpiralSound/ChannelHandler.C:323: error: 'malloc' was not declared in this > scope > SpiralSound/ChannelHandler.C:326: error: 'free' was not declared in this scope > make[1]: *** [SpiralSound/ChannelHandler.o] Error 1 --- SpiralSound/Plugins/ControllerPlugin/ControllerPluginGUI.C~ 2007-04-04 11:13:16.000000000 +0000 +++ SpiralSound/Plugins/ControllerPlugin/ControllerPluginGUI.C 2007-04-04 11:13:28.000000000 +0000 @@ -17,6 +17,7 @@ */ #include <stdio.h> +#include <cstdlib> #include "ControllerPluginGUI.h" #include <FL/fl_draw.H> --- SpiralSound/Plugins/CounterPlugin/CounterPluginGUI.C~ 2007-04-04 11:15:06.000000000 +0000 +++ SpiralSound/Plugins/CounterPlugin/CounterPluginGUI.C 2007-04-04 11:15:12.000000000 +0000 @@ -19,6 +19,7 @@ #include "CounterPluginGUI.h" #include <FL/fl_draw.H> #include <stdio.h> +#include <cstdlib> using namespace std; --- SpiralSound/Plugins/MasherPlugin/MasherPlugin.C~ 2007-04-04 11:16:42.000000000 +0000 +++ SpiralSound/Plugins/MasherPlugin/MasherPlugin.C 2007-04-04 11:16:48.000000000 +0000 @@ -15,6 +15,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include <cstdlib> #include <math.h> #include "MasherPlugin.h" #include "MasherPluginGUI.h" --- SpiralSound/Plugins/NoisePlugin/NoisePlugin.C~ 2007-04-04 11:17:48.000000000 +0000 +++ SpiralSound/Plugins/NoisePlugin/NoisePlugin.C 2007-04-04 11:17:56.000000000 +0000 @@ -21,6 +21,8 @@ #include <limits.h> #include "SpiralIcon.xpm" +#include <cstdlib> + using namespace std; extern "C" { --- SpiralSound/Plugins/OscillatorPlugin/OscillatorPlugin.C~ 2007-04-04 11:18:22.000000000 +0000 +++ SpiralSound/Plugins/OscillatorPlugin/OscillatorPlugin.C 2007-04-04 11:18:30.000000000 +0000 @@ -18,6 +18,7 @@ #include "OscillatorPlugin.h" #include "OscillatorPluginGUI.h" #include <FL/Fl_Button.H> +#include <cstdlib> #include <limits.h> #include "SpiralIcon.xpm" --- SpiralSound/ChannelHandler.C~ 2007-04-04 11:12:01.000000000 +0000 +++ SpiralSound/ChannelHandler.C 2007-04-04 11:12:08.000000000 +0000 @@ -18,6 +18,7 @@ #include "ChannelHandler.h" #include <unistd.h> +#include <cstdlib> using namespace std; -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

