ฉันต้องติดตั้งไลบรารีใดถ้าฉันต้องการคอมไพล์ Emacs


21

ฉันพยายามรวบรวมemacsบน Ubuntu 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 แล้วขอE: You must put some 'source' URIs in your sources.listดูคำถามนี้
ไดโนเสาร์

มีประโยชน์มากสามารถดัดแปลงสำหรับการติดตั้ง emacs 26.1 บน Ubuntu 18.04 หรือ Linux Mint 19 "Tara":sudo apt-get build-dep emacs25
sebisnow
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.