With OS X 10.9 before 10.9.4 you need this information.
File "_none_", line 1: Error: Error on dynamically loaded library: /usr/local/lib/ocaml/stublibs/dllgraphics.so: dlopen(/usr/local/lib/ocaml/stublibs/dllgraphics.so, 138): Library not loaded: /opt/local/lib/libX11.6.dylib Referenced from: /usr/local/lib/ocaml/stublibs/dllgraphics.so Reason: image not foundI presume that /opt/local/lib/libX11.6.dylib is needed and not found. There is today a symbolic link /opt/X11/lib/libX11.dylib -> /usr/X11/lib/libX11.6.dylib. Perhaps that is wanted. Here are two workarounds:
export DYLD_LIBRARY_PATH=/opt/X11/lib
mkdir /opt/local mkdir /opt/local/lib ln -s /opt/X11/lib/libX11.6.dylib /opt/local/lib/libX11.6.dylibMemorandum ln old_name new_name