Summary: | media-sound/hydrogen does not respect LDFLAGS | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Diego Elio Pettenò (RETIRED) <flameeyes> |
Component: | New packages | Assignee: | Professional Audio Applications Maintainers <proaudio> |
Status: | RESOLVED FIXED | ||
Severity: | QA | CC: | esigra, fordfrog |
Priority: | High | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Bug Depends on: | |||
Bug Blocks: | 331933 | ||
Attachments: | Build log |
Description
Diego Elio Pettenò (RETIRED)
2010-12-29 08:38:37 UTC
Created attachment 258311 [details]
Build log
Doesnt respect the chost either. Also their are build issues with qt: libs/hydrogen/src/song.cpp: In static member function 'static H2Core::Song* H2Core::Song::get_default_song()': libs/hydrogen/src/song.cpp:144: error: call of overloaded 'QString(int)' is ambiguous /usr/include/qt4/QtCore/qstring.h:428: note: candidates are: QString::QString(const QByteArray&) /usr/include/qt4/QtCore/qstring.h:426: note: QString::QString(const char*) /usr/include/qt4/QtCore/qstring.h:728: note: QString::QString(const QString&) /usr/include/qt4/QtCore/qstring.h:106: note: QString::QString(QChar) /usr/include/qt4/QtCore/qstring.h:105: note: QString::QString(const QChar*) scons: *** [libs/hydrogen/src/song.o] Error 1 --- hydrogen-0.9.4.1.orig/libs/hydrogen/src/song.cpp +++ hydrogen-0.9.4.1/libs/hydrogen/src/song.cpp @@ -141,7 +141,7 @@ Song* Song::get_default_song(){ song->set_swing_factor( 0.0 ); InstrumentList* pList = new InstrumentList(); - Instrument *pNewInstr = new Instrument(QString( 0 ), "New instrument", new ADSR()); + Instrument *pNewInstr = new Instrument(QString( "" ), "New instrument", new ADSR()); pList->add( pNewInstr ); song->set_instrument_list( pList ); this is fixed in the 1* series |