Ein Upgrade auf den neuesten Emacs ist NICHT immer eine gute Idee.
Zum Beispiel hat Emacs 24.4 einen Fehler, der einen Fehler verursacht, M-x
wenn der Böse-Modus verwendet wird ( https://bitbucket.org/lyro/evil/issues/437/mx-is-undefined-in-emacs-244 ).
Nach meiner Erfahrung ist es besser, 6 Monate zu warten, bis Plugins von Drittanbietern eine Pufferzeit haben, um das Kompatibilitätsproblem zu beheben.
Aber wenn Sie sich nicht für das obige Problem interessieren. Hier ist der einfachste Weg, um aus dem Quellcode zu installieren.
Installieren Sie Emacs in Ihrem HOME-Verzeichnis:
mkdir -p ~/myemacs24.5; ./configure --prefix=~/myemacs/24.5 --without-gtk --without-gtk3 --without-aqua --without-x --without-xpm --without-png --without-gif --without-alsa --without-tiff --without-jpeg --without-aqua --without-rsvg --without-xft --without-xaw3d --without-xim --without-xpm --without-dbus --without-makeinfo --with-x-toolkit=no --without-sound --without-sync-input --without-pop;make;make install
Installieren Sie Emacs in das Standardverzeichnis:
./configure --without-gtk --without-gtk3 --without-aqua --without-x --without-xpm --without-png --without-gif --without-alsa --without-tiff --without-jpeg --without-aqua --without-rsvg --without-xft --without-xaw3d --without-xim --without-xpm --without-dbus --without-makeinfo --with-x-toolkit=no --without-sound --without-sync-input --without-pop;make;sudo make install
Ich bin mir zu 100% sicher, dass mein Weg immer funktioniert, da ich diesen Weg unter Ubuntu / Mint / Debian / Centos / Gentoo / ArchLinux seit 4 Jahren ohne Probleme benutze.