| 30 | == Python == |
| 31 | |
| 32 | OS X ships with Python 2.3, however if you have installed a later version of python it is fairly likely that mussa will attempt to build against the later version. (Which can be a problem if you're making a version to redistribute. I used the following settings with ccmake to force using the default system version of python. |
| 33 | |
| 34 | {{{ |
| 35 | PYTHON_DEBUG_LIBRARY -F/System/Library/Frameworks -framework Python |
| 36 | PYTHON_EXECUTABLE /usr/bin/python2.3 |
| 37 | PYTHON_INCLUDE_PATH /usr/include/python2.3 |
| 38 | PYTHON_LIBRARY -F/System/Library/Frameworks -framework Python |
| 39 | }}} |
| 40 | |
| 41 | |