Emacs'ı derlemek istersem hangi kütüphaneleri kurmam gerekiyor?


21

emacsUbuntu 12.04'te derlemeye çalışıyorum . Bunun nedeni Emacs 24.2'yi kullanmak istiyorum.

Ancak, aşağıdaki hatayı alıyorum. Nasıl düzeltebilirim?

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.

Yanıtlar:


23

Bu şekilde yapardım:

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

Dokümanlar oluşturmak için:

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

Ama şimdi sadece paketi kullanıyorum

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

15

Eğer koşarsan

sudo apt-get build-dep emacs23

Bu, emacs23paketi derlemek için gereken her şeyi yükler . Çok büyük olasılıkla Emacs 24.2'yi de derlemeniz yeterli.


5
Veya, Ubuntu 14’te:sudo apt-get build-dep emacs24
nnyby

2
Eğer> = 16.04 koşu ve almak varsa E: You must put some 'source' URIs in your sources.list, bakınız bu soruyu
dinozor

çok yararlı, Ubuntu 18.04 veya Linux Mint 19 "Tara" ya sudo apt-get build-dep emacs25
Emac
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.