0

jzmq をビルドしようとすると、次のエラーが発生し ます https://github.com/nathanmarz/jzmq

ここで何が欠けているのか分かりますか?

./autogen.sh 
autoreconf: Entering directory `.'
autoreconf: configure.in: not using Gettext
autoreconf: running: aclocal -I config --force -I config
aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in'
configure.in:13: error: 'AM_CONFIG_HEADER': this macro is obsolete.
    You should use the 'AC_CONFIG_HEADERS' macro instead.
/usr/local/Cellar/automake/1.13.1/share/aclocal-1.13/obsolete-err.m4:14: AM_CONFIG_HEADER is expanded from...
configure.in:13: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
aclocal: error: echo failed with exit status: 1
autoreconf: aclocal failed with exit status: 1
autogen.sh: error: autoreconf exited with status 0
4

1 に答える 1

1

Rename this file:

mv configure.in configure.ac

Now edit that file and change this line: old:

AM_CONFIG_HEADER(src/config.hpp)

new:

AC_CONFIG_HEADER(src/config.hpp)
于 2013-05-06T18:18:55.353 に答える