aboutsummaryrefslogtreecommitdiffstats
path: root/src/thread.c
diff options
context:
space:
mode:
authorAlan Third2020-08-22 16:31:02 +0100
committerAlan Third2020-08-22 16:31:02 +0100
commite63a0c466c10d0b9de6a28e2ddd412226087bd27 (patch)
treea818984ab7a5a3de56ab2d743f8e1bf8c79e4789 /src/thread.c
parent96e5d8ce0d92eacbd7e237e50f0b572bb56e6d66 (diff)
downloademacs-e63a0c466c10d0b9de6a28e2ddd412226087bd27.tar.gz
emacs-e63a0c466c10d0b9de6a28e2ddd412226087bd27.zip
Fix NS build failure
* src/thread.c: xgselect isn't used with NS, even when HAVE_GLIB is defined.
Diffstat (limited to 'src/thread.c')
-rw-r--r--src/thread.c2
1 files changed, 1 insertions, 1 deletions
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 <https://www.gnu.org/licenses/>. */
28#include "pdumper.h" 28#include "pdumper.h"
29#include "keyboard.h" 29#include "keyboard.h"
30 30
31#ifdef HAVE_GLIB 31#if defined HAVE_GLIB && ! defined (HAVE_NS)
32#include <xgselect.h> 32#include <xgselect.h>
33#else 33#else
34#define release_select_lock() do { } while (0) 34#define release_select_lock() do { } while (0)