1 | | Upgraded to Mavericks. Was able to install py27-pyobjc @2.5.1_0 using port install. As far as I can tell, 2.5.1 is the latest version and it compiles OK on Mavericks. Is 2.5.2 a developer version? |
| 1 | Upgraded to Mavericks. Was able to install py27-pyobjc @2.5.1_0 using port install. As far as I can tell, 2.5.1 is the latest version and it compiles OK on Mavericks. |
| 2 | |
| 3 | Title is a typo BTW as the error message refers to version 2.5.1. It looks like the build fails with a "'string.h' file not found." |
| 4 | |
| 5 | Perhaps run "xcode-select --install" to install all command line tools. |
| 6 | |
| 7 | What happens if you uninstall and install? |
| 8 | |
| 9 | Is string.h in your include path? What happens if you try to gcc a minimal program like: |
| 10 | {{{ |
| 11 | #include "string.h" |
| 12 | int main(){} |
| 13 | }}} |
| 14 | If it does not compile cleanly, your build environment might be incomplete. |