dcherring wrote: > Folks, > > In answer to the error "libgsm 32-bit development files not found," after completing the libtool command, you must copy the library to /usr/lib. "cp lib/* /usr/lib" would do nicely. > > HTH, > > David Also...major problem with this command that I found was that in terminal you won't get an error message but this doesn't work unless you have read/write access to your /usr/lib directory which some people don't have. Therefore: Code: sudo libtool -dynamic -v -o lib/libgsm.1.0.13.dylib -install_name /usr/lib/libgsm.1.0.13.dylib -compatibility_version 1.0.13 -current_version 1.0.13 -lc ${GSMOBJS} sudo cp inc/* /usr/include sudo ln -s /usr/lib/libgsm.1.0.13.dylib /usr/lib/libgsm.dylib Unless there is an easier way?