私は古い Debian (Lenny) を持っており、そこでRabbitMQに接続するアプリケーションを開発しています。https://github.com/alanxz/rabbitmq-c/releases/tag/v0.8.0から公式の C++ クライアント rabbitmq-c-0.8.0 をダウンロードしましたが、残念ながら古い Debian でコンパイルできません。
wget https://github.com/alanxz/rabbitmq-c/archive/v0.8.0.tar.gz
tar zxvf v0.8.0.tar.gz
autoreconf -i
結果:
autoreconf -i
/usr/share/aclocal/libmcrypt.m4:17: warning: underquoted definition of AM_PATH_LIBMCRYPT
/usr/share/aclocal/libmcrypt.m4:17: run info '(automake)Extending aclocal'
/usr/share/aclocal/libmcrypt.m4:17: or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
Makefile.am:6: Libtool library used but `LIBTOOL' is undefined
Makefile.am:6: The usual way to define `LIBTOOL' is to add `AC_PROG_LIBTOOL'
Makefile.am:6: to `configure.ac' and run `aclocal' and `autoconf' again.
Makefile.am:6: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure
Makefile.am:6: its definition is in aclocal's search path.
autoreconf2.50: automake failed with exit status: 1
私が持っているautomakeのバージョン(そしてアップグレードできません):1:1.10.1-3
私が持っている libtool のバージョン (アップグレードもできません): 1.5.26-4+lenny1
私が使用している古い OS で RabbitMQ クライアントを構築する方法を知っている人はいますか?
どうもありがとう!!!