2018-08-07 Fred Gleason <fredg@paravelsystems.com>

* Removed the 'pam_rd' plug-in.
	* Removed rdchunk(1).
	* Upgraded Qt3 to Qt4.
This commit is contained in:
Fred Gleason
2018-08-07 10:09:49 -04:00
parent 6b1a06a910
commit 796e1bebc3
774 changed files with 10347 additions and 10823 deletions

View File

@@ -441,7 +441,7 @@ void MainObject::jackClientStartData()
cae_station,rd_config,
rd_config->provisioningServiceName(rd_config->stationName()));
QStringList fields=QStringList().split(" ",cmd);
jack_clients.push_back(new QProcess(fields,this));
jack_clients.push_back(new Q3Process(fields,this));
if(jack_clients.back()->start()) {
rd_config->log("caed",RDConfig::LogDebug,"started JACK Client \""+
q->value(0).toString()+"\"");
@@ -487,7 +487,7 @@ void MainObject::jackInit(RDStation *station)
//
if(station->startJack()) {
QStringList fields=QStringList().split(" ",station->jackCommandLine());
QProcess *proc=new QProcess(fields,this);
Q3Process *proc=new Q3Process(fields,this);
if(proc->start()) {
rd_config->log("caed",RDConfig::LogDebug,"JACK server started");
}