Hi,

i was trying to load JNIPort as described on squeaksource on my Macbook (OS X 10.6.6). I downloaded the latest Pharo 1.2 from Hudson (https://pharo-ic.lille.inria.fr/hudson/view/Pharo/job/Pharo%201.2/) and opened it using SqueakVM 5.8b12. I was able to load Alien using the following command:

Gofer it
	squeaksource:'MetacelloRepository' ;
	package: 'ConfigurationOfAlien';
	load.

((Smalltalk globals classNamed: 'ConfigurationOfAlien') 
	project version: 'Pharo 1.2') 
		load: 'Core'; load: 'LibC
Then i loaded the JNIPort Configuration:
Gofer it 
		squeaksource: 'JNIPort';
		package: 'ConfigurationOfJNIPort';
		load.
But when i load the actual project with this:
	ConfigurationOfJNIPort project latestVersion load
I get the following error in the class StandardLibInterface(AlienLibrary)>>load
libraryName: 	'/System/Library/Frameworks/System.framework/System'
errorCode: 	#'not found'
When i check on the file system i find a symbolic link which points to /usr/lib/libSystem.B.dylib (which also exists there).

Any hints to what i'm doing wrong?

Cheers,
Matt