Quali librerie devo installare se voglio compilare Emacs?


21

Sto cercando di compilare emacssu Ubuntu 12.04. Questo perché voglio usare Emacs 24.2.

Tuttavia, visualizzo il seguente errore. Come posso ripararlo?

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.

Risposte:


23

Lo facevo in questo modo:

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

Per creare documenti:

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

Ma ora uso solo il pacchetto

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

15

Se corri

sudo apt-get build-dep emacs23

che installa tutto il necessario per compilare il emacs23pacchetto. Molto probabilmente è abbastanza per compilare anche Emacs 24.2.


5
Oppure, in Ubuntu 14:sudo apt-get build-dep emacs24
nnyby

2
Se corri> = 16.04 e ottieni E: You must put some 'source' URIs in your sources.list, vedi questa domanda
dinosauro,

molto utile, può essere adattato per l'installazione di emacs 26.1 su Ubuntu 18.04 o Linux Mint 19 "Tara":sudo apt-get build-dep emacs25
sebisnow
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.