Skip to content

Instantly share code, notes, and snippets.

View viswanath608's full-sized avatar
🎯
Focusing

Viswanath Keerthi viswanath608

🎯
Focusing
View GitHub Profile
@viswanath608
viswanath608 / gist:3787344
Created September 26, 2012 11:02 — forked from brennanneoh/gist:1403250
setting up libssh2 + php ssh2 for xampp 1.7.3 (osx)
$ brew install -i libssh2
/* architecture tags are import. xampp 1.7.3 (osx) is x86. */
$ ./configure --prefix=/usr/local --disable-debug --disable-dependency-tracking --with-openssl --with-libz CFLAGS="-O -arch i386" CPPFLAGS="-O -arch i386" LDFLAGS="-arch i386"
$ make install
$ exit
/* assuming you have wget installed on osx */