Last active
July 19, 2017 02:00
-
-
Save ba0f3/ae2cdc2e62e5c24151bd to your computer and use it in GitHub Desktop.
Compile emacs 25.1 on CentOS 6.x
This file contains hidden or 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 http://ftp.twaren.net/Unix/GNU/gnu/emacs/emacs-25.1.tar.xz | |
tar xJf emacs-* | |
cd emacs-* | |
./configure --without-x --without-selinux | |
make && make install |
Much appreciated!
nice work thanks
this also works on CentOS 7
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!