I'm tearing my hair out: I'd really like a MIDI (and audio would be great) sequencer, and Rosegarden seems to fit the bill. It's not available through any of the normal repositories (as far as i know -- please, please, _please_ correct me if I'm wrong) so I'm compiling from source.
the readme instructs:
scons configure
scons
scons install
(scons being a replacement for make, which I have installed)
the configure I have got to work (with some extra options). the next step, the scons (what should I call that?), does a hell of a lot of compiling before finally spitting the dummy. I get warnings about deprecated functions, conversions between variable types, and a few like this:
, but as far as I can tell, the major dummy-spit is at the end, as follows:
and so on, several lines omitted for brevity's sake....
Sorry to bombard with code; I don't know what's relevant and what's not. There's over 1000 lines of output when I actually run it. It looks to me like I'm missing something that the configure didn't pick up on, but I really don't have a clue what it is or if I'm right . Any ideas?
the readme instructs:
scons configure
scons
scons install
(scons being a replacement for make, which I have installed)
the configure I have got to work (with some extra options). the next step, the scons (what should I call that?), does a hell of a lot of compiling before finally spitting the dummy. I get warnings about deprecated functions, conversions between variable types, and a few like this:
Code:
gui/trackeditor.cpp:461: warning: passing 'double' for argument 1 to 'void CompositionView::setPointerPos(int)'
Code:
ranlib RGbuild/sound/libRosegardenSound.a ar: creating RGbuild/sound/libRosegardenSound.a g++ -Wl,--rpath=/usr/lib/qt3//lib -Wl,--rpath=/usr/lib -Wl,--rpath=/usr/lib/kde3 -lasound -lm -ldl -lpthread -ljack -L/usr/local/lib -llo -lXft -lXrender -lfontconfig -lfreetype -lz -lX11 -llrdf -llirc_client -o RGbuild/gui/rosegarden RGbuild/gui/audiocommands.o RGbuild/gui/audiomanagerdialog.o RGbuild/gui/audioplugindialog.o RGbuild/gui/audiopluginmanager.o RGbuild/gui/audiopluginoscgui.o RGbuild/gui/audiopreviewthread.o RGbuild/gui/audiopreviewupdater.o RGbuild/gui/audiosynthmanager.o RGbuild/gui/bankeditor.o RGbuild/gui/barbuttons.o RGbuild/gui/basiccommand.o RGbuild/gui/chordnameruler.o
Code:
RGbuild/gui/velocitycolour.o RGbuild/gui/vumeter.o RGbuild/gui/widgets.o RGbuild/gui/xmlstorableevent.o RGbuild/gui/lircclient.o RGbuild/gui/lirccommander.o -LRGbuild/base -Lbase -LRGbuild/sound -Lsound -L/usr/X11R6/lib -L/usr/lib -L/usr/lib/qt3/lib -lqt-mt -lkdeui -lkdecore -lkdeprint -lkio -lXft -lRosegardenSequencer -lRosegardenSound -lbase RGbuild/gui/audiopluginoscgui.o: In function `AudioPluginOSCGUIManager::checkOSCThread()':audiopluginoscgui.cpp:(.text+0x562): undefined reference to `lo_server_thread_new' :audiopluginoscgui.cpp:(.text+0x589): undefined reference to `lo_server_thread_add_method' :audiopluginoscgui.cpp:(.text+0x594): undefined reference to `lo_server_thread_start' :audiopluginoscgui.cpp:(.text+0x59f): undefined reference to `lo_server_thread_get_url' RGbuild/gui/audiopluginoscgui.o: In function `AudioPluginOSCGUI::setGUIUrl(QString)':audiopluginoscgui.cpp:(.text+0x60b): undefined reference to `lo_address_free' :audiopluginoscgui.cpp:(.text+0x61b): undefined reference to `lo_url_get_hostname' :audiopluginoscgui.cpp:(.text+0x62d): undefined reference to `lo_url_get_port' :audiopluginoscgui.cpp:(.text+0x63b): undefined reference to `lo_address_new' :audiopluginoscgui.cpp:(.text+0x661): undefined reference to `lo_url_get_path' RGbuild/gui/audiopluginoscgui.o: In function `AudioPluginOSCGUIManager::getOSCUrl(unsigned int, int, QString)':audiopluginoscgui.cpp:(.text+0xf93): undefined reference to `lo_server_thread_get_url' RGbuild/gui/audiopluginoscgui.o: In function `AudioPluginOSCGUI::show()':audiopluginoscgui.cpp:(.text+0x15c8): undefined reference to `lo_send_internal' RGbuild/gui/audiopluginoscgui.o: In function `AudioPluginOSCGUI::hide()':audiopluginoscgui.cpp:(.text+0x16e8): undefined reference to `lo_send_internal' RGbuild/gui/audiopluginoscgui.o: In function `AudioPluginOSCGUI::quit()':audiopluginoscgui.cpp:(.text+0x1808): undefined reference to `lo_send_internal' RGbuild/gui/audiopluginoscgui.o: In function `AudioPluginOSCGUI::sendProgram(int, int)':audiopluginoscgui.cpp:(.text+0x1b3c): undefined reference to `lo_send_internal' RGbuild/gui/audiopluginoscgui.o: In function `AudioPluginOSCGUI::sendPortValue(int, float)':audiopluginoscgui.cpp:(.text+0x1c6a): undefined reference to `lo_send_internal' RGbuild/gui/audiopluginoscgui.o:audiopluginoscgui.cpp:(.text+0x1f29): more undefined references to `lo_send_internal' follow collect2: ld returned 1 exit status scons: *** [RGbuild/gui/rosegarden] Error 1 scons: building terminated because of errors.
Comment