解决编译PHP configure时出现错误文件:error: libXpm.(a|so) not found

解决编译PHP configure时出现错误文件:error: libXpm.(a|so) not found

我在编译 PHP 时遇到错误,下面列出了详细信息。

Error configure error libxpm.(a so) not found

我已经用 dpkg -L libxpm-dev 检查过。它显示所需文件位于文件夹 /usr/lib/x86_64-linux-gnu/(libXpm.a) 中。

我已尝试--with-xpm-dir=/usr/lib/x86_64-linux-gnu,但错误仍然存​​在。

答案1

我通过做这件事来解决这个问题

sudo ln -s /usr/lib/x86_64-linux-gnu/libXpm.a /usr/lib/libXpm.a

您还可以通过添加来设置 lib 目录

'--with-libdir=/usr/lib/x86_64-linux-gnu'

到配置行,但遗漏了 /usr/lib 中的一些内容。

答案2

您好,我通过此链接解决了几个问题,希望它能对您有所帮助。

http://zgadzaj.com/how-to-install-php-53-and-52-together-on-ubuntu-1204

相关内容