RhoStudio Doesn't Build In XCode - Curl RhoStudio Doesn't Build In XCode - Curl curl curl

RhoStudio Doesn't Build In XCode - Curl


The strlcat method changed definition in iOS 7 and Mavericks. It is already defined in the system headers and this definition conflicts with the one in the cURL source.

By looking at the system header, I think you could solve this in a number of ways

  • Change target SDK to 6.1, or something earlier than 7.0. This is a quick fix, but might not be what you want.
  • Remove the definition in the cURL source (there seems to be no way to #define away it so you need to edit the source).
  • -D_FORTIFY_SOURCE =0 should disable all Apple's definitions (did not try this though).