8

我正在尝试在 lubuntu 16.04 上安装 emacs 25.1,但遇到了一些麻烦。下载并解压 tar 后,我导航到 emacs 25.1 目录,然后.. ./configure

收到消息后配置停止

configure: error: The following required libraries were not found:
    libpng
Maybe some development libraries/packages are missing?
If you don't want to link with them give
     --with-png=no
as options to configure

当我尝试sudo apt install libpng-dev

我收到消息

Note, selecting 'libpng12-dev' instead of 'libpng-dev' libpng12-dev is already the newest version (1.2.54-1ubuntu1). 0 upgraded, 0 newly installed, 0 to remove and 9 not upgraded. 我尝试使用以下字符串重新安装 libpng12-dev,但这根本没有帮助。

sudo apt-get install --reinstall libpng12-0=1.2.54-1ubuntu1

我被困在这里,我已经用谷歌搜索了一段时间,找不到任何实际有效的解决方案。

4

2 回答 2

7

我也有同样的问题。检查config.log文件后发现是因为我已经安装了Anaconda3 python

当 gcc 编译 emacs 时,它使用libpng...Anconda3 目录中找到的一些。所以我删除了相关的Anaconda3 目录PATH结果一切正常。

错误的版本:

configure:15301: result: -lz
configure:15407: checking for png
configure:15437: gcc -o conftest  -g3 -O2 -I/etc/anaconda3/include/libpng16       conftest.c -lpng16 -lz -lm -lX11   >&5 
/usr/bin/ld: cannot find -lpng16

正确的版本:

configure:15301: result: -lz
configure:15407: checking for png
configure:15437: gcc -o conftest  -g3 -O2 -I/usr/include/libpng12       conftest.c -lpng12 -lz -lm -lX11   >&5 
configure:15437: $? = 0
configure:15452: result: yes

希望这会有所帮助!

于 2017-01-29T13:21:05.310 回答
1

解决方案是删除默认版本的 libpng-dev (1.2) 并显式安装 1.6 版本:sudo apt-get remove libpng-dev && sudo apt-get install libpng16-dev

自述文件中似乎没有记录依赖项的显式版本。

于 2016-10-30T08:15:39.963 回答