Jakie biblioteki muszę zainstalować, jeśli chcę skompilować Emacsa?


21

Próbuję skompilować emacsna Ubuntu 12.04. To dlatego, że chcę używać Emacsa 24.2.

Jednak pojawia się następujący błąd. Jak mogę to naprawić?

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.

Odpowiedzi:


23

Robiłem to w ten sposób:

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

Aby zbudować dokumenty:

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

Ale teraz korzystam z pakietu

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

15

Jeśli uciekniesz

sudo apt-get build-dep emacs23

instaluje wszystko, co jest potrzebne do skompilowania emacs23pakietu. Całkiem prawdopodobne, że to wystarczy do skompilowania Emacsa 24.2.


5
Lub w Ubuntu 14:sudo apt-get build-dep emacs24
nnyby

2
Jeśli biegasz> = 16.04 i otrzymujesz E: You must put some 'source' URIs in your sources.list, zobacz to pytanie
dinozaur

bardzo pomocny, można go dostosować do instalacji emacsa 26.1 na Ubuntu 18.04 lub Linux Mint 19 „Tara”:sudo apt-get build-dep emacs25
dniu
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.