私は EC2 に AMI をまとめようとしていますが、現在 0mq の構築で行き詰まっています。
最初は、./configure の実行中にこのエラーが発生しました
checking for uuid_generate in -luuid... no
configure: error: cannot link with -luuid, install uuid-dev.
e2fsprogs-devel と linux-utils を yum 経由でインストールしました。これには必要なライブラリが含まれていると思いますが、それでも上記のエラーが発生します。その後、yum を使用して uuid-devel をインストールしましたが、それ以上はできませんでした。
次に、以下のようにリンクを作成しました。
sudo ln -s /lib64/libuuid.so.1.3.0 /lib64/libuuid.so
./configure は問題なく完了しますが、make を実行するとエラーが発生します。
[...]
CXX libzmq_la-signaler.lo
CXX libzmq_la-socket_base.lo
In file included from socket_base.cpp:50:
uuid.hpp:31:23: error: uuid/uuid.h: No such file or directory
In file included from socket_base.cpp:50:
uuid.hpp:92: error: 'uuid_t' in namespace '::' does not name a type
make[2]: *** [libzmq_la-socket_base.lo] Error 1
make[2]: Leaving directory `/home/this/infrastructure/zeromq2-2/src'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/home/this/infrastructure/zeromq2-2/src'
make: *** [all-recursive] Error 1
以下は /usr/include/uuid.h の冒頭です。
#ifndef __UUID_H__
#define __UUID_H__
/* workaround conflicts with system headers */
#define uuid_t __vendor_uuid_t
#define uuid_create __vendor_uuid_create
#define uuid_compare __vendor_uuid_compare
#include <sys/types.h>
#include <unistd.h>
#undef uuid_t
#undef uuid_create
#undef uuid_compare
私はこの時点でかなり困惑しています。