From: Andrew McGeachie Date: Wed, 28 Apr 2010 17:43:45 +0000 (+0000) Subject: THRIFT-762. Include CoreServices.h if we are not compiling on the iPhone. X-Git-Tag: 0.3.0~27 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=b80024d686a3e2b7f62c68d45bd606e01f0a9ef4;p=common%2Fthrift.git THRIFT-762. Include CoreServices.h if we are not compiling on the iPhone. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@939024 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/lib/cocoa/src/transport/TSocketClient.m b/lib/cocoa/src/transport/TSocketClient.m index b4183fb8..74d4af9d 100644 --- a/lib/cocoa/src/transport/TSocketClient.m +++ b/lib/cocoa/src/transport/TSocketClient.m @@ -17,7 +17,12 @@ * under the License. */ #import "TSocketClient.h" -#import + +#if !TARGET_OS_IPHONE +#import +#else +#import +#endif @implementation TSocketClient