Skip to content

Instantly share code, notes, and snippets.

@mjhanninen
Created June 24, 2012 06:26
Show Gist options
  • Save mjhanninen/2981962 to your computer and use it in GitHub Desktop.
Save mjhanninen/2981962 to your computer and use it in GitHub Desktop.
Building Terminal Emacs on OS X

Building Terminal Emacs on OS X

Building a terminal version of Emacs on OS X is easy. However it took me quite a bit of time to land on the correct incantation:

$ ./autogen.sh
$ ./configure --without-x --without-sound --prefix=/usr/local
$ make bootstrap
$ sudo make install

OS X comes with outdated versions of autoconf and automake tools so you may have to update those first.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment