Hi,
Hooo no! So Stupid !
I'm sorry, I don't understood  that "comment out" mean changing lines in
comment. Worse, I was persuaded it means precisely the opposite. (... I'm
french)
Sorry !
Now jack_fst compile successfull and I can start a VST plug-in.
After starting, I'm just getting som errors....but I think it's  jack!
cannot lock down memory for RT thread (Ne peut allouer de la mémoire)
Cannot temporarily set client to RT scheduler: Opération non permise
-:58: error: unexpected character `{', expected character `}'
-:58: error: unexpected character `{', expected character `}'
My kernel isn't patched and I ran not jack as root....
I'm going to search a bit.
Thanks a lot for your help !
Yves
Mark Knecht wrote:
  No, I think it isn't commented out. That's a
one-line comment. I'm
 sorry. I should have given more instructions. I'm embedding the way I
 have it:
 
>>>>>>>Lines 915 to 939:>>>>>>>>> 
 //---Used by audioMasterOpenFileSelector----------- 
 
 /*
  struct VstFileType
 {
         VstFileType (char* _name, char *_macType, char *_dosType, char
 *_unixType = 0, char *_mimeType1 = 0, char *_mimeType2 = 0)
         {
                 if (_name)
                         strcpy (name, _name);
                 if (_macType)
                         strcpy (macType, _macType);
                 if (_dosType)
                         strcpy (dosType, _dosType);
                 if (_unixType)
                         strcpy (unixType, _unixType);
                 if (_mimeType1)
                         strcpy (mimeType1, _mimeType1);
                 if (_mimeType2)
                         strcpy (mimeType2, _mimeType2);
         }
         char name[128];
         char macType[8];
         char dosType[8];
         char unixType[8];
         char mimeType1[128];
         char mimeType2[128];
 }; 
 */