尝试遵循以下说明:(http://dev.mysql.com/doc/refman/5.1/en/ha-memcached-interfaces-mysqludf.html)
shell> tar zxf memcached_functions_mysql-1.1.tar.gz
shell> cd memcached_functions_mysql-1.1
shell> # If memcached library is not found, set LDFLAGS=-Llibrary_directory before next command.
shell> ./configure --with-mysql=/usr/local/mysql/bin/mysql_config当我运行时:
sudo ./configure --with-mysql=/usr/lib64/mysql/mysql_config我在输出的末尾得到这样的结果:
checking for libmemcached >= 0.17... configure: error: libmemcached not found因此,我尝试按照上面的说明设置LDFLAGS,但不知道"library_directory“路径。
我怎么才能找到它?
更新1:根据下面的回复。已安装libmemcached:
sudo yum install libmemcached
Loaded plugins: downloadonly, replace, rhnplugin, security
epel | 3.7 kB 00:00
ius | 2.2 kB 00:00
rackspace-rhel-x86_64-server-5.6.z-common | 871 B 00:00
rhel-x86_64-server-5.6.z | 1.3 kB 00:00
Excluding Packages in global exclude list
Finished
Setting up Install Process
Package libmemcached-0.31-1.1.el5.x86_64 already installed and latest version
Nothing to do谢谢
发布于 2012-08-10 04:03:40
您缺少libmemcached-devel,它可能也需要头文件。
https://stackoverflow.com/questions/11890826
复制相似问题