This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Home
Welcome to the http-machine wiki!
OS X: Install a more recent libcurl in usr/local that matches Apple’s installed version:
curl -O http://curl.haxx.se/download/curl-7.19.4.tar.gz
tar xzf curl-7.19.4.tar.gz
cd curl-7.19.4
./configure --with-ssl --with-gssapi
make
sudo make install
If you have ruby 1.8.5, the RSTRING_PTR macro isn’t defined. I added this to ext/typhoeus/native.h:
/* added just before final #endif */
#define RSTRING_PTR(s) (RSTRING(s)->ptr)
#define RSTRING_LEN(s) (RSTRING(s)->len)







