Mojtaba
Mojtaba

Reputation: 6044

SVN 1.8.4 libserf-1.1.3.0.dylib

After I updated SVN version on my mac using homebrew I'm getting following error:

dyld: Library not loaded: /usr/local/lib/libserf-1.1.3.0.dylib
    Referenced from: /Applications/Xcode.app/Contents/Developer/usr/bin/svn
    Reason: image not found
Trace/BPT trap: 5

I have no idea what libserf-1.1.3.0.dylib is and where it should be!

Any thought?

[UPDATE 01] I tried installing serf using following:

brew install serf

and got the following error:

Error: No available formula for serf

also I checked svn dependncies on homebrew by doing brew deps svn there is no serf:

autoconf
automake
libtool
pkg-config
scons
sqlite

Upvotes: 2

Views: 2054

Answers (2)

Robert Brisita
Robert Brisita

Reputation: 5844

If anyone has httpd installed with brew these commands worked for me:

brew unlink httpd
brew install svn
brew link httpd

Hope this helps!

Upvotes: 1

Anony372
Anony372

Reputation: 494

Got it working.

If you want the latest svn uninstall and then build from source

brew remove svn
brew install --build-from-source svn

If you want an older version (I needed 1.6.17) then follow the direction here, but replace the line that says brew install with the install command from above (don't forget to remove svn first though)

Upvotes: 5

Related Questions