Thanks. That fixed things. Currently in the progress of installing gnucash after slib installed :) Just a quick addendum to the libintl.3.dylib fix - just used those instructions to construct this script to automate the entire process, in case it helps someone. bash ~/Desktop/depsearch.sh libintl | while read x; do sudo port uninstall -f "$x"; sudo port clean --archive "$x"; echo "$x" >> pkgs.txt; done && sudo port -duf uninstall && cat pkgs.txt | while read x; do sudo port install -f "$x"; done Thanks for the reallly prompt replies and the extremely helpful suggestions, Carl On 16/11/2006, at 1:07 PM, Marc André Selig wrote:
On 16.11.2006, at 01:02, Carl Menezes wrote:
Got an error while executing sudo install slib : [...] makeinfo slib.texi --no-warn --no-split -o slib.info dyld: Library not loaded: /opt/local/lib/libintl.3.dylib Referenced from: /opt/local/bin/makeinfo Reason: image not found make: *** [slib3a3.info] Trace/BPT trap
You've hit the gettext bug. Please see http://trac.macosforge.org/ projects/macports/wiki/ProblemHotlist
Regards, Marc