File arts-start-on-demand.diff of Package arts
--- mcop/objectmanager.cc +++ mcop/objectmanager.cc @@ -267,6 +267,12 @@ bool ObjectManager::addGlobalReference(O string ObjectManager::getGlobalReference(const string& name) { + static bool started_arts = false; + if (!started_arts) + { + system("arts-start"); + started_arts = true; + } return Dispatcher::the()->globalComm().get(name); }