Jmess

What other apps and distros do you use to round out your studio?

Moderators: MattKingUSA, khz

Post Reply
studio32

Jmess

Post by studio32 »

Don't know what is different to the qjackctl patchbay, but I tried Jmess

http://ccrma.stanford.edu/groups/soundw ... are/jmess/

But got:

Code: Select all

$ make                                                                                                    
g++ -c -pipe -Wno-deprecated -pg -g -O2 -Wall -W -D_REENTRANT -DQT_NO_DEBUG -DQT_XML_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtXml -I/usr/include/qt4 -I. -I. -I. -I. -o anyoption.o anyoption.cpp                                                                                                                           
anyoption.cpp: In member function ‘void AnyOption::init(int, int)’:                                                                            
anyoption.cpp:131: error: ‘strcpy’ was not declared in this scope                                                                              
anyoption.cpp: In member function ‘void AnyOption::setCommandLongPrefix(char*)’:                                                               
anyoption.cpp:276: error: ‘strlen’ was not declared in this scope                                                                              
anyoption.cpp:280: error: ‘strcpy’ was not declared in this scope                                                                              
anyoption.cpp: In member function ‘char AnyOption::parsePOSIX(char*)’:                                                                         
anyoption.cpp:655: error: ‘strlen’ was not declared in this scope                                                                              
anyoption.cpp: In member function ‘int AnyOption::parseGNU(char*)’:                                                                            
anyoption.cpp:687: error: ‘strlen’ was not declared in this scope                                                                              
anyoption.cpp: In member function ‘int AnyOption::matchOpt(char*)’:                                                                            
anyoption.cpp:721: error: ‘strcmp’ was not declared in this scope                                                                              
anyoption.cpp: In member function ‘char* AnyOption::getValue(const char*)’:                                                                    
anyoption.cpp:789: error: ‘strcmp’ was not declared in this scope                                                                              
anyoption.cpp: In member function ‘bool AnyOption::getFlag(const char*)’:                                                                      
anyoption.cpp:801: error: ‘strcmp’ was not declared in this scope                                                                              
anyoption.cpp: In member function ‘bool AnyOption::findFlag(char*)’:                                                                           
anyoption.cpp:837: error: ‘strcmp’ was not declared in this scope                                                                              
anyoption.cpp: In member function ‘bool AnyOption::setValue(const char*, char*)’:                                                              
anyoption.cpp:852: error: ‘strcmp’ was not declared in this scope                                                                              
anyoption.cpp:853: error: ‘strlen’ was not declared in this scope                                                                              
anyoption.cpp:854: error: ‘strcpy’ was not declared in this scope                                                                              
anyoption.cpp: In member function ‘bool AnyOption::setFlagOn(const char*)’:                                                                    
anyoption.cpp:867: error: ‘strcmp’ was not declared in this scope                                                                              
anyoption.cpp:868: error: ‘strlen’ was not declared in this scope                                                                              
anyoption.cpp:869: error: ‘strcpy’ was not declared in this scope                                                                              
anyoption.cpp: In member function ‘bool AnyOption::setValue(char, char*)’:                                                                     
anyoption.cpp:883: error: ‘strlen’ was not declared in this scope
anyoption.cpp:884: error: ‘strcpy’ was not declared in this scope
anyoption.cpp: In member function ‘bool AnyOption::setFlagOn(char)’:
anyoption.cpp:898: error: ‘strlen’ was not declared in this scope
anyoption.cpp:899: error: ‘strcpy’ was not declared in this scope
anyoption.cpp: In member function ‘bool AnyOption::consumeFile(char*)’:
anyoption.cpp:984: error: ‘strlen’ was not declared in this scope
anyoption.cpp: In member function ‘char* AnyOption::chomp(char*)’:
anyoption.cpp:1060: error: ‘strlen’ was not declared in this scope
anyoption.cpp: In member function ‘void AnyOption::valuePairs(char*, char*)’:
anyoption.cpp:1070: error: ‘strlen’ was not declared in this scope
anyoption.cpp:1084: error: ‘strcmp’ was not declared in this scope
anyoption.cpp: In member function ‘void AnyOption::justValue(char*)’:
anyoption.cpp:1102: error: ‘strlen’ was not declared in this scope
anyoption.cpp:1116: error: ‘strcmp’ was not declared in this scope
make: *** [anyoption.o] Fout 1
User avatar
spm_gl
Established Member
Posts: 358
Joined: Wed Apr 22, 2009 7:58 am
Location: Spreewald, Germany
Contact:

Re: Jmess

Post by spm_gl »

Looks more like lash than qjackctl. Hm, the error looks like something is missing, perhaps some header. I'll see if I can get it compiled on my nebook.
--- Spreemusik ---
Jan Fuchsmann, Audio Engineer
Check our blog at http://www.spreemusik.com/blog
User avatar
spm_gl
Established Member
Posts: 358
Joined: Wed Apr 22, 2009 7:58 am
Location: Spreewald, Germany
Contact:

Re: Jmess

Post by spm_gl »

Got it. In src/anyoption.h change

Code: Select all

#include <string>
to

Code: Select all

#include <string.h>
--- Spreemusik ---
Jan Fuchsmann, Audio Engineer
Check our blog at http://www.spreemusik.com/blog
Post Reply