On Thu, Dec 01, 2016 at 07:05:37PM +0100, Trussardi Dario Romano wrote:
>       few days ago i encountered problems installing gitFileTree in pharo 5.0.
>       The basic error is relative to the :     External module not found.

Could be that the VM cannot locate the libgit2 so/dylib, which is my case. On
Pharo 6, LGitLibrary:

  unixModuleName 
    ^ 'libgit2.so.0'

  macModuleName
    | pluginDir |
    pluginDir := Smalltalk vm binary parent / 'Plugins'.
    #('libgit2.dylib' 'libgit2.0.dylib')
        detect: [ :each | (pluginDir / each) exists ] 
        ifFound: [ :libName | ^ libName ].

    self error: 'Module not found.'

Pierce

Reply via email to