aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/gfilenotify.c4
-rw-r--r--src/inotify.c4
-rw-r--r--src/kqueue.c3
3 files changed, 0 insertions, 11 deletions
diff --git a/src/gfilenotify.c b/src/gfilenotify.c
index a9f33c99004..ddb19770c3c 100644
--- a/src/gfilenotify.c
+++ b/src/gfilenotify.c
@@ -18,7 +18,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
18 18
19#include <config.h> 19#include <config.h>
20 20
21#ifdef HAVE_GFILENOTIFY
22#include <stdio.h> 21#include <stdio.h>
23#include <gio/gio.h> 22#include <gio/gio.h>
24#include "lisp.h" 23#include "lisp.h"
@@ -333,7 +332,4 @@ syms_of_gfilenotify (void)
333 staticpro (&watch_list); 332 staticpro (&watch_list);
334 333
335 Fprovide (intern_c_string ("gfilenotify"), Qnil); 334 Fprovide (intern_c_string ("gfilenotify"), Qnil);
336
337} 335}
338
339#endif /* HAVE_GFILENOTIFY */
diff --git a/src/inotify.c b/src/inotify.c
index ecbe31c1682..9a7dbb8f413 100644
--- a/src/inotify.c
+++ b/src/inotify.c
@@ -19,8 +19,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
19 19
20#include <config.h> 20#include <config.h>
21 21
22#ifdef HAVE_INOTIFY
23
24#include "lisp.h" 22#include "lisp.h"
25#include "coding.h" 23#include "coding.h"
26#include "process.h" 24#include "process.h"
@@ -550,5 +548,3 @@ syms_of_inotify (void)
550 548
551 Fprovide (intern_c_string ("inotify"), Qnil); 549 Fprovide (intern_c_string ("inotify"), Qnil);
552} 550}
553
554#endif /* HAVE_INOTIFY */
diff --git a/src/kqueue.c b/src/kqueue.c
index 48121bd663a..42391f84677 100644
--- a/src/kqueue.c
+++ b/src/kqueue.c
@@ -19,7 +19,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
19 19
20#include <config.h> 20#include <config.h>
21 21
22#ifdef HAVE_KQUEUE
23#include <stdio.h> 22#include <stdio.h>
24#include <sys/types.h> 23#include <sys/types.h>
25#include <sys/event.h> 24#include <sys/event.h>
@@ -533,8 +532,6 @@ syms_of_kqueue (void)
533 Fprovide (intern_c_string ("kqueue"), Qnil); 532 Fprovide (intern_c_string ("kqueue"), Qnil);
534} 533}
535 534
536#endif /* HAVE_KQUEUE */
537
538/* PROBLEMS 535/* PROBLEMS
539 * https://bugs.launchpad.net/ubuntu/+source/libkqueue/+bug/1514837 536 * https://bugs.launchpad.net/ubuntu/+source/libkqueue/+bug/1514837
540 prevents tests on Ubuntu. */ 537 prevents tests on Ubuntu. */