Browse Source

Merge pull request #416 from melle/app-extensions

Allow to build and run GDWebServer in app extensions.
Pierre-Olivier Latour 6 years ago
parent
commit
8d0a3599ee
1 changed files with 5 additions and 5 deletions
  1. 5 5
      GCDWebServer/Core/GCDWebServer.m

+ 5 - 5
GCDWebServer/Core/GCDWebServer.m

@@ -198,7 +198,7 @@ static void _ExecuteMainThreadRunLoopSources() {
 #endif
 }
 
-#if TARGET_OS_IPHONE
+#if TARGET_OS_IPHONE && !defined TARGET_OS_IPHONE_EXTENSION
 
 // Always called on main thread
 - (void)_startBackgroundTask {
@@ -223,7 +223,7 @@ static void _ExecuteMainThreadRunLoopSources() {
   _connected = YES;
   GWS_LOG_DEBUG(@"Did connect");
 
-#if TARGET_OS_IPHONE
+#if TARGET_OS_IPHONE && !defined TARGET_OS_IPHONE_EXTENSION
   if ([[UIApplication sharedApplication] applicationState] != UIApplicationStateBackground) {
     [self _startBackgroundTask];
   }
@@ -253,7 +253,7 @@ static void _ExecuteMainThreadRunLoopSources() {
   });
 }
 
-#if TARGET_OS_IPHONE
+#if TARGET_OS_IPHONE && !defined TARGET_OS_IPHONE_EXTENSION
 
 // Always called on main thread
 - (void)_endBackgroundTask {
@@ -277,7 +277,7 @@ static void _ExecuteMainThreadRunLoopSources() {
   _connected = NO;
   GWS_LOG_DEBUG(@"Did disconnect");
 
-#if TARGET_OS_IPHONE
+#if TARGET_OS_IPHONE && !defined TARGET_OS_IPHONE_EXTENSION
   [self _endBackgroundTask];
 #endif
 
@@ -726,7 +726,7 @@ static inline NSString* _EncodeBase64(NSString* string) {
 - (BOOL)startWithOptions:(NSDictionary<NSString*, id>*)options error:(NSError**)error {
   if (_options == nil) {
     _options = options ? [options copy] : @{};
-#if TARGET_OS_IPHONE
+#if TARGET_OS_IPHONE && !defined TARGET_OS_IPHONE_EXTENSION
     _suspendInBackground = [(NSNumber*)_GetOption(_options, GCDWebServerOption_AutomaticallySuspendInBackground, @YES) boolValue];
     if (((_suspendInBackground == NO) || ([[UIApplication sharedApplication] applicationState] != UIApplicationStateBackground)) && ![self _start:error])
 #else