Linphone configuration results in multiple undefined Autotools macros

懵懂的女人 提交于 2019-12-06 05:26:32

This problem occurs because homebrew installs to /usr/local, and Linphone is coded to assume macports' standard install prefix of /opt/local.

You can fix this specific problem by editing submodules/linphone/autogen.sh and changing the paths that start with /opt/local to /usr/local:

if test -d /usr/local/share/aclocal ; then
    ACLOCAL_ARGS="-I /usr/local/share/aclocal"
fi
jaime

I am getting the same error on Mavericks OSX10.9 when installing using homebrew. The recommendation I've found is make sure you have pkg-config installed. Unfortunately, that fix hasn't worked for me but it might for you. See: possibly undefined macro: AC_MSG_ERROR

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!