From e63a0c466c10d0b9de6a28e2ddd412226087bd27 Mon Sep 17 00:00:00 2001 From: Alan Third Date: Sat, 22 Aug 2020 16:31:02 +0100 Subject: [PATCH] Fix NS build failure * src/thread.c: xgselect isn't used with NS, even when HAVE_GLIB is defined. --- src/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread.c b/src/thread.c index b4d8a53cf68..7ab1e6de1fc 100644 --- a/src/thread.c +++ b/src/thread.c @@ -28,7 +28,7 @@ along with GNU Emacs. If not, see . */ #include "pdumper.h" #include "keyboard.h" -#ifdef HAVE_GLIB +#if defined HAVE_GLIB && ! defined (HAVE_NS) #include #else #define release_select_lock() do { } while (0) -- 2.39.2