From 84b9b2c69ce959c64908c8e84a85337eefbc09c9 Mon Sep 17 00:00:00 2001 From: Andy Green Date: Tue, 10 Mar 2020 12:34:34 +0000 Subject: [PATCH] glib: accidentally fixed unsupported signal watcher for glib We worked fine while an earlier typo meant this was never getting past the preprocessor... when it did, it exposes that the signal handler type was never implemented. Just remove for glib. --- lib/core/private-lib-core.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/core/private-lib-core.h b/lib/core/private-lib-core.h index f1343836d..c508e91f0 100644 --- a/lib/core/private-lib-core.h +++ b/lib/core/private-lib-core.h @@ -228,9 +228,6 @@ struct lws_signal_watcher { #endif #ifdef LWS_WITH_LIBEVENT struct lws_signal_watcher_libevent event; -#endif -#ifdef LWS_WITH_GLIB - struct lws_signal_watcher_glib glib; #endif struct lws_context *context; };