Emacsをコンパイルする場合、どのライブラリをインストールする必要がありますか?


21

emacsUbuntu 12.04でコンパイルしようとしています。これは、Emacs 24.2を使用したいからです。

ただし、次のエラーが表示されます。どうすれば修正できますか?

checking for long file names... yes
checking for X... no
checking for X... true
configure: error: You seem to be running X, but no X development libraries
were found.  You should install the relevant development files for X
and for the toolkit you want, such as Gtk+, Lesstif or Motif.  Also make
sure you have development files for image handling, i.e.
tiff, gif, jpeg, png and xpm.
If you are sure you want Emacs compiled without X window support, pass
  --without-x
to configure.

回答:


23

私はこれを次のように行っていました:

sudo apt-get install build-essential texinfo libx11-dev libxpm-dev libjpeg-dev libpng-dev libgif-dev libtiff-dev libgtk-3-dev libncurses-dev libgnutls28-dev
# for gtk2 build replace libgtk-3-dev with libgtk2.0-dev

git clone --depth=1 git://git.savannah.gnu.org/emacs.git
cd emacs
./autogen.sh # not needed when installing from tarball
./configure
make bootstrap
sudo make install

ドキュメントを作成するには:

make docs
# or build just the format you want:
make info
make dvi
make html
make pdf

しかし、今はパッケージを使用しています

sudo add-apt-repository -y ppa:ubuntu-elisp
sudo apt-get update
sudo apt-get install emacs-snapshot

15

走ったら

sudo apt-get build-dep emacs23

emacs23パッケージをコンパイルするために必要なすべてをインストールします。Emacs 24.2をコンパイルするのに十分だと思われます。


5
または、Ubuntu 14の場合:sudo apt-get build-dep emacs24
nnyby

2
> = 16.04を実行してgetを実行している場合E: You must put some 'source' URIs in your sources.listこの質問を
恐竜

非常に参考に、Ubuntuの18.04またはLinuxのミント19「タラ」上のEmacs 26.1のインストールのために適合させることができる:sudo apt-get build-dep emacs25
sebisnow
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.