-
-
Save strobe/c50974f6904697ff96d80cab43999236 to your computer and use it in GitHub Desktop.
Compile emacs 25.2 on CentOS 7.x
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum install gcc make ncurses-devel giflib-devel libjpeg-devel libtiff-devel | |
wget wget http://ftp.gnu.org/gnu/emacs/emacs-25.2.tar.xz | |
tar xJf emacs-25.2.tar.xz | |
cd emacs-25.2 | |
./configure --without-x --without-selinux | |
make && sudo make install |
Thanks!
Shouldn't it be a single wget
instead of wget wget
?
Kept getting this xdisp.o Error 4 error, until added --without-x --without-selinux for ./configure. saved my day. tks. Wondering what causes the error.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you rock.