cannot find -lperl解决办法

最近在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: Depends: perl (= 5.10.0-19ubuntu1.1) but 5.10.1-8ubuntu1 is to be installed
               Depends: libperl5.10 (= 5.10.0-19ubuntu1.1) but 5.10.1-8ubuntu1 is to be installed
E: Broken packages

 

其实这里的意思是,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,成功了,呵呵

你可能感兴趣的:(cannot find -lperl解决办法)