diff options
Diffstat (limited to 'redhat/applications/rosegarden/rosegarden-3.5.13-fix_gcc47_compilation.patch')
-rw-r--r-- | redhat/applications/rosegarden/rosegarden-3.5.13-fix_gcc47_compilation.patch | 334 |
1 files changed, 334 insertions, 0 deletions
diff --git a/redhat/applications/rosegarden/rosegarden-3.5.13-fix_gcc47_compilation.patch b/redhat/applications/rosegarden/rosegarden-3.5.13-fix_gcc47_compilation.patch new file mode 100644 index 000000000..596cddfd6 --- /dev/null +++ b/redhat/applications/rosegarden/rosegarden-3.5.13-fix_gcc47_compilation.patch @@ -0,0 +1,334 @@ +commit 15276f365c15527fbb10d42e3f5896f540de7413 +Author: Darrell Anderson <humanreadable@yahoo.com> +Date: 1334351761 -0500 + + Updated to build with gcc 4.7. + +diff --git a/src/base/Sets.h b/src/base/Sets.h +index 4fe14d1..2a59ed0 100644 +--- a/src/base/Sets.h ++++ b/src/base/Sets.h +@@ -287,7 +287,7 @@ AbstractSet<Element, Container>::initialise() + m_final = m_baseIterator; + sample(m_baseIterator, true); + +- if (getAsEvent(m_baseIterator)->isa(Note::EventType)) { ++ if (AbstractSet::getAsEvent(m_baseIterator)->isa(Note::EventType)) { + m_initialNote = m_baseIterator; + m_finalNote = m_baseIterator; + } +@@ -300,7 +300,7 @@ AbstractSet<Element, Container>::initialise() + for (i = j = m_baseIterator; i != getContainer().begin() && test(--j); i = j){ + if (sample(j, false)) { + m_initial = j; +- if (getAsEvent(j)->isa(Note::EventType)) { ++ if (AbstractSet::getAsEvent(j)->isa(Note::EventType)) { + m_initialNote = j; + if (m_finalNote == getContainer().end()) { + m_finalNote = j; +@@ -317,7 +317,7 @@ AbstractSet<Element, Container>::initialise() + for (i = j = m_baseIterator; ++j != getContainer().end() && test(j); i = j) { + if (sample(j, true)) { + m_final = j; +- if (getAsEvent(j)->isa(Note::EventType)) { ++ if (AbstractSet::getAsEvent(j)->isa(Note::EventType)) { + m_finalNote = j; + if (m_initialNote == getContainer().end()) { + m_initialNote = j; +@@ -332,17 +332,17 @@ bool + AbstractSet<Element, Container>::sample(const Iterator &i, bool) + { + const Quantizer &q(getQuantizer()); +- Event *e = getAsEvent(i); ++ Event *e = AbstractSet::getAsEvent(i); + timeT d(q.getQuantizedDuration(e)); + + if (e->isa(Note::EventType) || d > 0) { + if (m_longest == getContainer().end() || +- d > q.getQuantizedDuration(getAsEvent(m_longest))) { ++ d > q.getQuantizedDuration(AbstractSet::getAsEvent(m_longest))) { + // std::cerr << "New longest in set at duration " << d << " and time " << e->getAbsoluteTime() << std::endl; + m_longest = i; + } + if (m_shortest == getContainer().end() || +- d < q.getQuantizedDuration(getAsEvent(m_shortest))) { ++ d < q.getQuantizedDuration(AbstractSet::getAsEvent(m_shortest))) { + // std::cerr << "New shortest in set at duration " << d << " and time " << e->getAbsoluteTime() << std::endl; + m_shortest = i; + } +@@ -352,12 +352,12 @@ AbstractSet<Element, Container>::sample(const Iterator &i, bool) + long p = get__Int(e, BaseProperties::PITCH); + + if (m_highest == getContainer().end() || +- p > get__Int(getAsEvent(m_highest), BaseProperties::PITCH)) { ++ p > get__Int(AbstractSet::getAsEvent(m_highest), BaseProperties::PITCH)) { + // std::cerr << "New highest in set at pitch " << p << " and time " << e->getAbsoluteTime() << std::endl; + m_highest = i; + } + if (m_lowest == getContainer().end() || +- p < get__Int(getAsEvent(m_lowest), BaseProperties::PITCH)) { ++ p < get__Int(AbstractSet::getAsEvent(m_lowest), BaseProperties::PITCH)) { + // std::cerr << "New lowest in set at pitch " << p << " and time " << e->getAbsoluteTime() << std::endl; + m_lowest = i; + } +@@ -376,8 +376,8 @@ GenericChord<Element, Container, singleStaff>::GenericChord(Container &c, + PropertyName stemUpProperty) : + AbstractSet<Element, Container>(c, i, q), + m_stemUpProperty(stemUpProperty), +- m_time(q->getQuantizedAbsoluteTime(getAsEvent(i))), +- m_subordering(getAsEvent(i)->getSubOrdering()), ++ m_time(q->getQuantizedAbsoluteTime(GenericChord::getAsEvent(i))), ++ m_subordering(GenericChord::getAsEvent(i)->getSubOrdering()), + m_firstReject(c.end()) + { + AbstractSet<Element, Container>::initialise(); +@@ -416,7 +416,7 @@ template <class Element, class Container, bool singleStaff> + bool + GenericChord<Element, Container, singleStaff>::test(const Iterator &i) + { +- Event *e = getAsEvent(i); ++ Event *e = GenericChord::getAsEvent(i); + if (AbstractSet<Element, Container>:: + getQuantizer().getQuantizedAbsoluteTime(e) != m_time) { + return false; +@@ -452,7 +452,7 @@ bool + GenericChord<Element, Container, singleStaff>::sample(const Iterator &i, + bool goingForwards) + { +- Event *e1 = getAsEvent(i); ++ Event *e1 = GenericChord::getAsEvent(i); + if (!e1->isa(Note::EventType)) { + if (goingForwards && m_firstReject == AbstractSet<Element, Container>::getContainer().end()) m_firstReject = i; + return false; +@@ -472,7 +472,7 @@ GenericChord<Element, Container, singleStaff>::sample(const Iterator &i, + + if (AbstractSet<Element, Container>::m_baseIterator != AbstractSet<Element, Container>::getContainer().end()) { + +- Event *e0 = getAsEvent(AbstractSet<Element, Container>::m_baseIterator); ++ Event *e0 = GenericChord::getAsEvent(AbstractSet<Element, Container>::m_baseIterator); + + if (!(m_stemUpProperty == PropertyName::EmptyPropertyName)) { + +@@ -518,7 +518,7 @@ GenericChord<Element, Container, singleStaff>::sample(const Iterator &i, + } + + AbstractSet<Element, Container>::sample(i, goingForwards); +- push_back(i); ++ this->push_back(i); + return true; + } + +@@ -560,7 +560,7 @@ GenericChord<Element, Container, singleStaff>::getMarkCountForChord() const + + for (unsigned int i = 0; i < std::vector<typename Container::iterator>::size(); ++i) { + +- Event *e = getAsEvent((*this)[i]); ++ Event *e = GenericChord::getAsEvent((*this)[i]); + std::vector<Mark> marks(Marks::getMarks(*e)); + + for (std::vector<Mark>::iterator j = marks.begin(); j != marks.end(); ++j) { +@@ -580,7 +580,7 @@ GenericChord<Element, Container, singleStaff>::getMarksForChord() const + + for (unsigned int i = 0; i < std::vector<typename Container::iterator>::size(); ++i) { + +- Event *e = getAsEvent((*this)[i]); ++ Event *e = GenericChord::getAsEvent((*this)[i]); + std::vector<Mark> marks(Marks::getMarks(*e)); + + +@@ -607,9 +607,9 @@ GenericChord<Element, Container, singleStaff>::getPitches() const + + for (typename std::vector<typename Container::iterator>::const_iterator + i = std::vector<typename Container::iterator>::begin(); i != std::vector<typename Container::iterator>::end(); ++i) { +- if (getAsEvent(*i)->has(BaseProperties::PITCH)) { ++ if (GenericChord::getAsEvent(*i)->has(BaseProperties::PITCH)) { + int pitch = get__Int +- (getAsEvent(*i), BaseProperties::PITCH); ++ (GenericChord::getAsEvent(*i), BaseProperties::PITCH); + if (pitches.size() > 0 && pitches[pitches.size()-1] == pitch) + continue; + pitches.push_back(pitch); +@@ -641,7 +641,7 @@ GenericChord<Element, Container, singleStaff>::getPreviousNote() + while (1) { + if (i == AbstractSet<Element, Container>::getContainer().begin()) return AbstractSet<Element, Container>::getContainer().end(); + --i; +- if (getAsEvent(i)->isa(Note::EventType)) { ++ if (GenericChord::getAsEvent(i)->isa(Note::EventType)) { + return i; + } + } +@@ -655,7 +655,7 @@ GenericChord<Element, Container, singleStaff>::getNextNote() + Iterator i(AbstractSet<Element, Container>::getFinalElement()); + while ( i != AbstractSet<Element, Container>::getContainer().end() && + ++i != AbstractSet<Element, Container>::getContainer().end()) { +- if (getAsEvent(i)->isa(Note::EventType)) { ++ if (GenericChord::getAsEvent(i)->isa(Note::EventType)) { + return i; + } + } +@@ -677,8 +677,8 @@ GenericChord<Element, Container, singleStaff>::PitchGreater::operator()(const It + const Iterator &b) + { + try { +- long ap = get__Int(getAsEvent(a), BaseProperties::PITCH); +- long bp = get__Int(getAsEvent(b), BaseProperties::PITCH); ++ long ap = get__Int(GenericChord::getAsEvent(a), BaseProperties::PITCH); ++ long bp = get__Int(GenericChord::getAsEvent(b), BaseProperties::PITCH); + return (ap < bp); + } catch (Event::NoData) { + std::cerr << "Bad karma: PitchGreater failed to find one or both pitches" << std::endl; +diff --git a/src/document/RosegardenGUIDoc.cpp b/src/document/RosegardenGUIDoc.cpp +index 3ec8e94..fab09c3 100644 +--- a/src/document/RosegardenGUIDoc.cpp ++++ b/src/document/RosegardenGUIDoc.cpp +@@ -2106,15 +2106,15 @@ RosegardenGUIDoc::stopRecordingMidi() + + bool meaningless = true; + +- for (Segment::iterator i = s->begin(); i != s->end(); ++i) { ++ for (Segment::iterator j = s->begin(); j != s->end(); ++j) { + +- if ((*i)->isa(Clef::EventType)) continue; ++ if ((*j)->isa(Clef::EventType)) continue; + + // no rests in the segment yet, so anything else is meaningful + meaningless = false; + +- if (!haveMeaning || (*i)->getAbsoluteTime() < earliestMeaning) { +- earliestMeaning = (*i)->getAbsoluteTime(); ++ if (!haveMeaning || (*j)->getAbsoluteTime() < earliestMeaning) { ++ earliestMeaning = (*j)->getAbsoluteTime(); + } + + haveMeaning = true; +@@ -2149,13 +2149,13 @@ RosegardenGUIDoc::stopRecordingMidi() + ++i) { + + Segment *s = i->second; +- Segment::iterator i = s->begin(); ++ Segment::iterator j = s->begin(); + +- if (i == s->end() || !(*i)->isa(Clef::EventType)) continue; ++ if (j == s->end() || !(*j)->isa(Clef::EventType)) continue; + +- if ((*i)->getAbsoluteTime() < meaningfulBarStart) { +- Event *e = new Event(**i, meaningfulBarStart); +- s->erase(i); ++ if ((*j)->getAbsoluteTime() < meaningfulBarStart) { ++ Event *e = new Event(**j, meaningfulBarStart); ++ s->erase(j); + s->insert(e); + } + } +diff --git a/src/gui/application/LircClient.cpp b/src/gui/application/LircClient.cpp +index 7664b9e..8b20c84 100644 +--- a/src/gui/application/LircClient.cpp ++++ b/src/gui/application/LircClient.cpp +@@ -36,6 +36,7 @@ + #include <tqsocketnotifier.h> + #include <fcntl.h> + #include <cstdlib> ++#include <unistd.h> + + namespace Rosegarden + { +diff --git a/src/gui/application/LircCommander.cpp b/src/gui/application/LircCommander.cpp +index e323539..61afaca 100644 +--- a/src/gui/application/LircCommander.cpp ++++ b/src/gui/application/LircCommander.cpp +@@ -37,7 +37,7 @@ + #include "RosegardenGUIView.h" + + #include <tqobject.h> +- ++#include <unistd.h> + + namespace Rosegarden + { +diff --git a/src/gui/application/main.cpp b/src/gui/application/main.cpp +index b3147de..0744afa 100644 +--- a/src/gui/application/main.cpp ++++ b/src/gui/application/main.cpp +@@ -22,6 +22,7 @@ + #include <tqtimer.h> + #include <kapplication.h> + #include <sys/time.h> ++#include <unistd.h> + #include "base/RealTime.h" + + #include <kcmdlineargs.h> +diff --git a/src/gui/seqmanager/ControlBlockMmapper.cpp b/src/gui/seqmanager/ControlBlockMmapper.cpp +index 6e4560d..2417c67 100644 +--- a/src/gui/seqmanager/ControlBlockMmapper.cpp ++++ b/src/gui/seqmanager/ControlBlockMmapper.cpp +@@ -42,6 +42,7 @@ + #include <fcntl.h> + #include <sys/mman.h> + #include <errno.h> ++#include <unistd.h> + + namespace Rosegarden + { +diff --git a/src/gui/seqmanager/SegmentMmapper.cpp b/src/gui/seqmanager/SegmentMmapper.cpp +index b859aa6..29fe715 100644 +--- a/src/gui/seqmanager/SegmentMmapper.cpp ++++ b/src/gui/seqmanager/SegmentMmapper.cpp +@@ -45,7 +45,7 @@ + #include <fcntl.h> + #include <sys/mman.h> + #include <errno.h> +- ++#include <unistd.h> + + namespace Rosegarden + { +diff --git a/src/gui/seqmanager/SequencerMapper.cpp b/src/gui/seqmanager/SequencerMapper.cpp +index eec66a0..3a051e3 100644 +--- a/src/gui/seqmanager/SequencerMapper.cpp ++++ b/src/gui/seqmanager/SequencerMapper.cpp +@@ -40,7 +40,7 @@ + #include <fcntl.h> + #include <sys/mman.h> + #include <errno.h> +- ++#include <unistd.h> + + namespace Rosegarden + { +diff --git a/src/gui/studio/AudioPluginManager.cpp b/src/gui/studio/AudioPluginManager.cpp +index 24b49f2..4457493 100644 +--- a/src/gui/studio/AudioPluginManager.cpp ++++ b/src/gui/studio/AudioPluginManager.cpp +@@ -37,7 +37,7 @@ + #include <tqmutex.h> + #include <tqstring.h> + #include <tqthread.h> +- ++#include <unistd.h> + + namespace Rosegarden + { +diff --git a/src/gui/studio/AudioPluginOSCGUIManager.cpp b/src/gui/studio/AudioPluginOSCGUIManager.cpp +index 13da726..7b8bbd3 100644 +--- a/src/gui/studio/AudioPluginOSCGUIManager.cpp ++++ b/src/gui/studio/AudioPluginOSCGUIManager.cpp +@@ -25,6 +25,7 @@ + #ifdef HAVE_LIBLO + + #include <lo/lo.h> ++#include <unistd.h> + + #include "AudioPluginOSCGUIManager.h" + +diff --git a/src/sound/RingBuffer.h b/src/sound/RingBuffer.h +index 0cc5dc6..6ea0d4e 100644 +--- a/src/sound/RingBuffer.h ++++ b/src/sound/RingBuffer.h +@@ -24,6 +24,7 @@ + + #include <sys/types.h> + #include <sys/mman.h> ++#include <string.h> + + #include "Scavenger.h" + |