]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix GNUstep build failure
authorAlan Third <alan@idiocy.org>
Mon, 27 Sep 2021 13:23:02 +0000 (14:23 +0100)
committerAlan Third <alan@idiocy.org>
Mon, 27 Sep 2021 13:24:25 +0000 (14:24 +0100)
* src/nsfns.m (Fns_hide_emacs): NSRunningApplication is only available
in GNUstep 0.27 and above.

src/nsfns.m

index 07bcab1816beb640579c5ba03a71cd6f2a389f81..906c5c934f5dc529f2f75ea34f2268b80944cbcb 100644 (file)
@@ -1966,12 +1966,14 @@ is layered in front of the windows of other applications.  */)
       [NSApp unhide: NSApp];
       [NSApp activateIgnoringOtherApps: YES];
     }
+#if GNUSTEP_GUI_MAJOR_VERSION > 0 || GNUSTEP_GUI_MINOR_VERSION >= 27
   else if (EQ (on, intern ("activate-front")))
     {
       [NSApp unhide: NSApp];
       [[NSRunningApplication currentApplication]
         activateWithOptions: NSApplicationActivateIgnoringOtherApps];
     }
+#endif
   else if (NILP (on))
     [NSApp unhide: NSApp];
   else