cwsaylor (owner)

Revisions

gist: 74918 Download_button fork
public
Description:
Compile Readline on Mac OS X
Public Clone URL: git://gist.github.com/74918.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Compile readline on Mac OS X
 
cd /usr/local/src
curl -O ftp://ftp.gnu.org/gnu/readline/readline-5.2.tar.gz
tar xzvf readline-5.2.tar.gz
cd readline-5.2
curl -O http://ftp.gnu.org/gnu/readline/readline-5.2-patches/readline52-012
patch -p0 < readline52-012
./configure --prefix=/usr/local
make
sudo make install
 
# Now follow Dan Benjamin's instructions for installing Ruby on Mac
# http://hivelogic.com/articles/2008/02/ruby-rails-leopard