|
From: Camille T. <ca...@os...> - 2012-10-01 12:30:51
|
Hi, For some obscure reason, I can't get autogen.sh to properly run on my new work environment based on OS X 10.8. It is awfully frustrating knowing that I am very bad at dealing with automake and autoconf issues. Here's the problem: Xcode does not ship autotools anymore so you have to install them by hand. Best approach is to install them using brew: $ brew install automake autoconf Then in liblo source directory: $ ./autogen.sh **Warning**: I am going to run `configure' with no arguments. If you wish to pass any to it, please specify them on the `./autogen.sh' command line. processing . Running libtoolize... glibtoolize: putting auxiliary files in `.'. glibtoolize: copying file `./ltmain.sh' glibtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and glibtoolize: rerunning glibtoolize, to keep the correct libtool macros in-tree. glibtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. Running aclocal ... Running autoheader... Running automake --gnu ... configure.ac:41: error: required file './compile' not found configure.ac:39: error: required file './config.guess' not found configure.ac:39: error: required file './config.sub' not found configure.ac:23: error: required file './install-sh' not found configure.ac:23: error: required file './missing' not found examples/Makefile.am: error: required file './depcomp' not found Running autoconf ... Running ./configure --enable-maintainer-mode --enable-debug --disable-silent-rules ... configure: error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../.." I don't understand why the compile symbolic link and the other files (config.guess, etc.) are not created. I would tend to suspect a conflict the m4 files shipped with the autotools I installed and this version of OS X. I would really appreciate any kind of help on that matter. Thanks! Cam |