web-dev-qa-db-ja.com

emacsをコンパイルする場合にインストールする必要があるライブラリ

Ubuntu 12.04でemacsをコンパイルしようとしています。これは、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.
19
michael

私はこれを次のように使用していました。

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

git clone --depth=1 git://git.savannah.gnu.org/emacs.git
./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
20
Adobe

走ったら

Sudo apt-get build-dep emacs23

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

15
Florian Diesch