Re: [Pharo-dev] Pharo MIDIPlugin

2013-07-25 Thread jannik.laval
Hi pharoers, I have always the same problem, to reproduce it, you can use the following script. If you execute it in a clean image and a clean vm, it returns 0, then rerun the last line, it returns 1. If you execute it in a one-click image, it returns 0. I don't understand this difference. Jann

Re: [Pharo-dev] Pharo MIDIPlugin

2013-06-20 Thread jannik laval
Ok, new try to understand: I loaded Phratch in a new image, with the last vm, it works fine. Then I took the structure of the one-click and replace the contents by the working vm, the working images and all my plugins that works outside the one-click package. When I run the one-click, it does not

Re: [Pharo-dev] Pharo MIDIPlugin

2013-06-19 Thread jannik.laval
So, I tried to load Phratch in multiple VM versions. MIDIPlugins does not load if I use a one-click. Else, If I use the vm + an image, it works fine. Where is the problem ? Here is the report of the latest one-click i found on pharo-project.org: === Image - /Users/janniklaval/Desktop/Pharo2.

Re: [Pharo-dev] Pharo MIDIPlugin

2013-06-19 Thread Nicolas Cellier
At some point, I remember that there have been a mess when merging changes from interpreter-VM in cog-vm branch. This might have infected the Pharo-branch and this plugin may have been retracted at that time. I'm not really sure, but that would be my starting point for inquiring about MIDIPlugin st

Re: [Pharo-dev] Pharo MIDIPlugin

2013-06-19 Thread jannik.laval
MIDIPlugin is loaded in a prvious PharoVM version (7.zip in the file directory). Here is the system report, probably something has change since this version: === Image - /Users/janniklaval/Desktop/Pharo-2.0/Pharo-2.0.image Pharo2.0 Latest update: #20593 Unnamed Virtual Machine ---

Re: [Pharo-dev] Pharo MIDIPlugin

2013-06-19 Thread NISHIHARA Satoshi
caseOf: MacOSX 1. MIDIPlugin in Pharo vm requires SerialPlugin (see sqMacMIDI.c). 2. source of SerialPlugin is sqUnixSerial.c (see MacOSConfig>> configureSerialPlugin: in vmmaker-image). 3. at midiInit() of sqMacMIDI.c, it checks the functions of SerialPlugin, but functions below ware missing. s

Re: [Pharo-dev] Pharo MIDIPlugin

2013-06-19 Thread jannik.laval
In a previous version it was loaded, but I don't remember which one. Jannik On Jun 19, 2013, at 9:24 PM, Stéphane Ducasse wrote: > yes. > > On Jun 19, 2013, at 6:56 PM, NISHIHARA Satoshi wrote: > >> Mac OS X? >> >> >> 2013/6/19 jannik laval >> Hi pharoers, >> >> It seems that MidiPlugin

Re: [Pharo-dev] Pharo MIDIPlugin

2013-06-19 Thread Stéphane Ducasse
yes. On Jun 19, 2013, at 6:56 PM, NISHIHARA Satoshi wrote: > Mac OS X? > > > 2013/6/19 jannik laval > Hi pharoers, > > It seems that MidiPlugin is not loaded in Pharo2.0. > The plugin is present in the repository, but when I try "Smalltalk > loadModule: 'MIDIPlugin'" it raises an error. >

Re: [Pharo-dev] Pharo MIDIPlugin

2013-06-19 Thread NISHIHARA Satoshi
Mac OS X? 2013/6/19 jannik laval > Hi pharoers, > > It seems that MidiPlugin is not loaded in Pharo2.0. > The plugin is present in the repository, but when I try "Smalltalk > loadModule: 'MIDIPlugin'" it raises an error. > > In "Smalltalk listLoadedModules" and "Smalltalk listBuiltinModules" th

[Pharo-dev] Pharo MIDIPlugin

2013-06-19 Thread jannik laval
Hi pharoers, It seems that MidiPlugin is not loaded in Pharo2.0. The plugin is present in the repository, but when I try "Smalltalk loadModule: 'MIDIPlugin'" it raises an error. In "Smalltalk listLoadedModules" and "Smalltalk listBuiltinModules" there is no MIDIPlugin. Could someone give me some