# HG changeset patch # User Chris Cannam # Date 1318582127 -3600 # Node ID 1bac284886f9ee4be5a92e16171d5a1a8ced184c # Parent 691c1116fc02f94c6bc14f5b0cc241e350aac6f5 Fix build with gcc 4.6 diff -r 691c1116fc02 -r 1bac284886f9 build/linux/Makefile.linux --- a/build/linux/Makefile.linux Fri Oct 14 09:41:38 2011 +0100 +++ b/build/linux/Makefile.linux Fri Oct 14 09:48:47 2011 +0100 @@ -1,5 +1,5 @@ -CFLAGS := -DNDEBUG -O3 -fno-exceptions -fPIC -ffast-math -msse -mfpmath=sse -ftree-vectorize -fomit-frame-pointer -DUSE_PTHREADS +CFLAGS := -DNDEBUG -O3 -fno-exceptions -fPIC -ffast-math -msse -mfpmath=sse -ftree-vectorize -fomit-frame-pointer -DUSE_PTHREADS -I./include CXXFLAGS := $(CFLAGS) include build/general/Makefile.inc diff -r 691c1116fc02 -r 1bac284886f9 dsp/tempotracking/DownBeat.h --- a/dsp/tempotracking/DownBeat.h Fri Oct 14 09:41:38 2011 +0100 +++ b/dsp/tempotracking/DownBeat.h Fri Oct 14 09:48:47 2011 +0100 @@ -17,6 +17,7 @@ #define DOWNBEAT_H #include +#include #include "dsp/rateconversion/Decimator.h" diff -r 691c1116fc02 -r 1bac284886f9 dsp/tempotracking/TempoTrackV2.h --- a/dsp/tempotracking/TempoTrackV2.h Fri Oct 14 09:41:38 2011 +0100 +++ b/dsp/tempotracking/TempoTrackV2.h Fri Oct 14 09:48:47 2011 +0100 @@ -18,6 +18,7 @@ #define TEMPOTRACKV2_H #include +#include using std::vector;