OSX Mavericks Compile Issue

Hmm, makepanda is written to link against the framework and everything. You’d have to hack makepanda to use your other build, by finding the line that starts with

SmartPkgEnable("PYTHON"

and commenting it out, and instead creating these lines:

PkgEnable("PYTHON")
IncDirectory("PYTHON", "/path/to/python/include")
LibName("PYTHON", "-lpython2.7")
LibDirectory("PYTHON", "/path/to/your/python/lib")

Then remove “built” and create a clean build. Again, run makepanda with the homebrew version of Python.