Compiling git master on Mavericks (OSX 10.9)

Hey there -

So I’m trying to get git master to compile on Mac OSX 10.9

What I’ve done so far:

update XCode to 5.0.1
update XCode command line tools: xcode-select --install

./configure --prefix=/usr/local/bro (works fine)
make install - fails with this:

Building C object aux/broccoli/bindings/broccoli-ruby/CMakeFiles/broccoli_ext.dir/ext/broccoli_ext/broccoli_internRUBY_wrap.c.o

/tmp/bro/build/aux/broccoli/bindings/broccoli-ruby/ext/broccoli_ext/broccoli_internRUBY_wrap.c:1851:10: fatal error: ‘rubyio.h’ file not found

#include “rubyio.h”

Any suggestions?

A workaround for if you don’t need to use the ruby bindings for broccoli (you’d know if you did):

    ./configure —disable-ruby

I don’t have a fix/workaround at the moment for actually getting the ruby bindings to compile on Mavericks (at least w/ MacPorts’ swig-ruby).

- Jon

That worked like a charm, thanks John!