0

不确定我是否在正确的 Stack Exchange 论坛上发帖。如果需要,请将我重定向到正确的。

设置 Ratchet 时,我需要安装 ZeroMQ 并且卡在 libzmq 安装中:

我已按照说明https://github.com/zeromq/libzmq/blob/master/INSTALL 我在 mac os X 10.9

执行以下命令时:

./autogen.sh

这是我得到的:

autoreconf:进入目录“。”

autoreconf:configure.ac:不使用 Gettext

autoreconf:运行:aclocal -I config --force -I config

main::scan_file() 调用太早,无法在 /opt/lo/bin/aclocal 第 617 行检查原型。

autoreconf:configure.ac:跟踪

autoreconf:configure.ac:子目录

外国/openpgm/build-staging/openpgm/pgm/ 不存在

autoreconf:configure.ac:不使用 Libtool

autoreconf: running: /opt/lo/bin/autoconf --include=config --force configure.ac:57: error: possible undefined macro: AC_LIBTOOL_WIN32_DLL 如果此令牌和其他令牌是合法的,请使用 m4_pattern_allow。请参阅 Autoconf 文档。

configure.ac:58:错误:可能未定义的宏:AC_PROG_LIBTOOL

配置:5242:错误:可能未定义宏:AC_DISABLE_STATIC

配置:5246:错误:可能未定义的宏:AC_ENABLE_STATIC

autoreconf:/opt/lo/bin/autoconf 失败,退出状态:1

autogen.sh:错误:autoreconf 以状态 0 退出

我不能让它工作。

请帮忙

非常感谢

4

1 回答 1

1

安装不同的软件包时发生在我身上。修复方法是安装libtool

$ sudo apt-get install libtool

然后运行:

$ ./auto_gen.sh

然后您可以正常进行:

$ ./configure && make
$ sudo make install
于 2014-07-19T19:07:54.793 回答