dyld: Library not loaded: /usr/lib/libaprutil-1.0.dylib

Joined
Apr 3, 2010
Messages
1
Reaction score
0
Points
1
Ey guys, so I have quite a bit of a problem.

This time I followed this: Lemon Team’s blog Blog Archive Setting up Subversion 1.5 on Xcode

The last two steps I did and after I did it. My Xcode project's SVN capabilities were gone and when I went to add in a new repository the settings for subversion wouldn't pop up, but they would appear fine for Perforce and CVS. Anyways, hardly knowing anything about symbolic links, I wanted to undo my changes, so I made this script and ran it:

Code:
mkdir temp
cp /usr/lib/libapr-1.dylib ./temp
cp /usr/lib/libapr-1.0.dylib ./temp
cp /usr/lib/libaprutil-1.dylib ./temp
cp /usr/lib/libaprutil-1.0.dylib ./temp
cp /usr/lib/libsvn_client-1.dylib ./temp
cp /usr/lib/libsvn_client-1.0.dylib ./temp
cp /usr/lib/libsvn_diff-1.dylib ./temp
cp /usr/lib/libsvn_diff-1.0.dylib ./temp
cp /usr/lib/libsvn_fs_fs-1.dylib ./temp
cp /usr/lib/libsvn_fs_fs-1.0.dylib ./temp
cp /usr/lib/libsvn_fs-1.dylib ./temp
cp /usr/lib/libsvn_fs-1.0.dylib ./temp
cp /usr/lib/libsvn_ra_local-1.dylib ./temp
cp /usr/lib/libsvn_ra_local-1.0.dylib ./temp
cp /usr/lib/libsvn_ra_svn-1.dylib ./temp
cp /usr/lib/libsvn_ra_svn-1.0.dylib ./temp
cp /usr/lib/libsvn_ra-1.dylib ./temp
cp /usr/lib/libsvn_ra-1.0.dylib ./temp
cp /usr/lib/libsvn_wc-1.dylib ./temp
cp /usr/lib/libsvn_wc-1.0.dylib ./temp
cp /usr/lib/libsvn_repos-1.dylib ./temp
cp /usr/lib/libsvn_repos-1.0.dylib ./temp
cp /usr/lib/libsvn_subr-1.dylib ./temp
cp /usr/lib/libsvn_subr-1.0.dylib ./temp
cp /usr/lib/libsvn_delta-1.dylib ./temp
cp /usr/lib/libsvn_delta-1.0.dylib ./temp
cp /usr/lib/libsvn_diff-1.dylib ./temp
cp /usr/lib/libsvn_diff-1.0.dylib ./temp
rm /usr/lib/libapr-1.dylib
rm /usr/lib/libapr-1.0.dylib
rm /usr/lib/libaprutil-1.dylib
rm /usr/lib/libaprutil-1.0.dylib
rm /usr/lib/libsvn_client-1.dylib
rm /usr/lib/libsvn_client-1.0.dylib
rm /usr/lib/libsvn_diff-1.dylib
rm /usr/lib/libsvn_diff-1.0.dylib
rm /usr/lib/libsvn_fs_fs-1.dylib
rm /usr/lib/libsvn_fs_fs-1.0.dylib
rm /usr/lib/libsvn_fs-1.dylib
rm /usr/lib/libsvn_fs-1.0.dylib
rm /usr/lib/libsvn_ra_local-1.dylib
rm /usr/lib/libsvn_ra_local-1.0.dylib
rm /usr/lib/libsvn_ra_svn-1.dylib
rm /usr/lib/libsvn_ra_svn-1.0.dylib
rm /usr/lib/libsvn_ra-1.dylib
rm /usr/lib/libsvn_ra-1.0.dylib
rm /usr/lib/libsvn_wc-1.dylib
rm /usr/lib/libsvn_wc-1.0.dylib
rm /usr/lib/libsvn_repos-1.dylib
rm /usr/lib/libsvn_repos-1.0.dylib
rm /usr/lib/libsvn_subr-1.dylib
rm /usr/lib/libsvn_subr-1.0.dylib
rm /usr/lib/libsvn_delta-1.dylib
rm /usr/lib/libsvn_delta-1.0.dylib
rm /usr/lib/libsvn_diff-1.dylib
rm /usr/lib/libsvn_diff-1.0.dylib

And that definitely did not fix the problem. I even uninstalled and reinstalled Xcode to try to get the functionality back but that didn't work, and while I was installing Xcode I realized this error message for svn:
Code:
$ svn
dyld: Library not loaded: /usr/lib/libaprutil-1.0.dylib
  Referenced from: /opt/subversion/bin/svn
  Reason: image not found
So I tried installing svn again and that didn't do the trick either. So I am really in a pickle now. If anyone can help me or point me in the right direction as to what to do to fix the problem, please let me know! Thanks in advance.
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top