AS_IF и AC_MSG_ERROR: ошибка: возможно, неопределенный макрос
Я сталкиваюсь с такими ошибками при попытке собрать libnice-0.1.10. Для решения я следую, возможно, неопределенный макрос: AC_MSG_ERROR, но все еще не получаю.
какая-то версия программы
uname: 3.5.0-23-generic
m4: 1.4.16
automake: 1.14.1
autoconf: 2.69
libtoolize: 2.4.2
Я также добавляю ACLOCAL_FLAGS="-I /.../share/aclocal" в bashrc.
Вот что сообщается из автогена.
$ ./autogen.sh
configure.ac:331: warning: PKG_PROG_PKG_CONFIG is m4_require'd but not m4_defun'd
m4/gtk-doc.m4:7: GTK_DOC_CHECK is expanded from...
configure.ac:331: the top level
configure.ac:331: warning: PKG_PROG_PKG_CONFIG is m4_require'd but not m4_defun'd
m4/gtk-doc.m4:7: GTK_DOC_CHECK is expanded from...
configure.ac:331: the top level
configure.ac:331: warning: PKG_PROG_PKG_CONFIG is m4_require'd but not m4_defun'd
m4/gtk-doc.m4:7: GTK_DOC_CHECK is expanded from...
configure.ac:331: the top level
libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
libtoolize: copying file `m4/libtool.m4'
libtoolize: copying file `m4/ltoptions.m4'
libtoolize: copying file `m4/ltsugar.m4'
libtoolize: copying file `m4/ltversion.m4'
libtoolize: copying file `m4/lt~obsolete.m4'
configure.ac:331: warning: PKG_PROG_PKG_CONFIG is m4_require'd but not m4_defun'd
m4/gtk-doc.m4:7: GTK_DOC_CHECK is expanded from...
configure.ac:331: the top level
configure.ac:331: warning: PKG_PROG_PKG_CONFIG is m4_require'd but not m4_defun'd
m4/gtk-doc.m4:7: GTK_DOC_CHECK is expanded from...
configure.ac:331: the top level
configure.ac:331: warning: PKG_PROG_PKG_CONFIG is m4_require'd but not m4_defun'd
m4/gtk-doc.m4:7: GTK_DOC_CHECK is expanded from...
configure.ac:331: the top level
configure.ac:105: error: possibly undefined macro: AS_IF
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.ac:218: error: possibly undefined macro: AC_MSG_ERROR
autoreconf: /opt/oblong/deps-64-10/bin/autoconf failed with exit status: 1
Большое спасибо за помощь!
2 ответа
Решение
Это просто означает, что вам не хватает pkg-config (или, возможно, у вас старая версия). Просто скачайте и установите.
Возможно, вам не хватает коллекции макросов autoconf-archive (AC_MSG_ERROR
это один из макросов, включенных в этот пакет)
Бегатьautoreconf -vi
тогда беги./configure
и фактическая ошибка будет показана на экране.