Skip to content

Instantly share code, notes, and snippets.

@benjaminmullard
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benjaminmullard/2ecfe95e8acf54d8b1d9 to your computer and use it in GitHub Desktop.
Save benjaminmullard/2ecfe95e8acf54d8b1d9 to your computer and use it in GitHub Desktop.
Install xdebug on Mac OSX

Install autoconf

curl --remote-name http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
tar -xzvf autoconf-2.69.tar.gz
cd autoconf-2.69
./configure --prefix=/usr/local/autoconf-2.69
make
make install
cd /usr/local/
ln -s autoconf-2.69 autoconf
echo 'export PATH=/usr/local/autoconf/bin:$PATH' >> ~/.profile
source ~/.profile

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