浏览 2546 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2010-04-20
最近在Ubuntu10.04中安装nginx,命令如下:./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_perl_module --with-openssl=/home/vince/software/openssl-0.9.8b --with-http_ssl_module --with-pcre=/home/vince/software/pcre-8.00 --with-zlib=/home/vince/software/zlib-1.2.3
编译安装时出现如下错误: /usr/bin/ld: cannot find -lperl按照网上的做法: sudo apt-get install libperl-dev 出现如下错误: The following packages have unmet dependencies:
其实这里的意思是,libperl-dev已经安装了,但我没怎么看提示,找了很久都解决不了这个问题,最后在一个论坛上有朋友说这样做: ln -s libperl.so /usr/lib/libperl.so ldconfig 灵机一动,马上到/usr/lib里查看: lrwxrwxrwx 1 root root 17 2010-04-12 04:47 /usr/lib/libperl.so.5.10 -> libperl.so.5.10.1 -rw-r--r-- 1 root root 1358776 2010-01-07 23:24 /usr/lib/libperl.so.5.10.1 libperl已经安装,会不会是找不到libperl.so呢?
马上做链接: ln -s libperl.so.5.10.1 /usr/lib/libperl.so 然后 ldconfig 再重新make nginx,成功了,呵呵 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |