Changes between Initial Version and Version 1 of Ticket #40854, comment 4


Ignore:
Timestamp:
Oct 26, 2013, 2:38:37 AM (11 years ago)
Author:
hardwhack
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #40854, comment 4

    initial v1  
    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?
     1Upgraded 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
     3Title 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
     5Perhaps run "xcode-select --install" to install all command line tools.
     6
     7What happens if you uninstall and install?
     8
     9Is string.h in your include path? What happens if you try to gcc a minimal program like:
     10{{{
     11#include "string.h"
     12int main(){}
     13}}}
     14If it does not compile cleanly, your build environment might be incomplete.