Has anyone compiled, or know of a pre-compiled, libnoise for MacOS X 10.6? It does not compile out of the box here due to a libtool issue.
libtool --mode=compile g++ -c ../src/latlon.cpp -o ../src/latlon.o
libtool: unknown option character `-' in: --mode=compile
This is because OS X has its own
libtool, quite different from GNU'slibtool, which is calledglibtoolon OS X. You need to editMakefileinsrc/to setetc. You should also delete the lines which generates
.sofiles, because OS X has a different format for the dynamic library and how it is installed. I'd recommend you to stick to.afile. Good luck!This Apple document Porting UNIX/Linux Applications might help you.