I'm trying to install EMBOSS v6.6.0 on a MacOSX 10.12 laptop. I did the following:
./configure --prefix=/Users/pc/local/opt/emboss/v6.6.0
sudo mkdir /usr/local/emboss
sudo chown pc /usr/local/emboss
make -j 4
Then I did make install and got the following error:
dyld: Library not loaded: /usr/local/opt/jpeg/lib/libjpeg.8.dylib
Referenced from: /usr/local/opt/gd/lib/libgd.3.dylib
Reason: image not found
make[3]: *** [install-exec-hook] Abort trap: 6
make[2]: *** [install-exec-am] Error 2
make[1]: *** [install-am] Error 2
make: *** [install-recursive] Error 1
Not sure how to fix this. What should I try?
If you don't need the UI elements then
generally makes life a lot easier on OSX.
Otherwise it looks like your installed library
gdin/usr/local/opt/gdis out of sync with thejpeglibrary. If youls /usr/local/opt/jpeg/lib/I am guessing you seelibjpeg.9.dylib. From this it is difficult to know exactly the next steps without knowing how you originally installed/usr/local/opt/gd. It might be as simple as (if you have homebrew)brew install gdto overwrite the 'broken' gd library. Or removing it entirely as I think it is getting in the way of the emboss includedgdduring compilation.