diff --git a/configure.ac b/configure.ac
index be623c96548..cb4a9ab2876 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4181,7 +4181,7 @@ AC_SUBST([LIBS_MAIL])
HAVE_SECCOMP=no
AC_CHECK_HEADERS(
- [linux/seccomp.h],
+ [linux/seccomp.h linux/filter.h],
[AC_CHECK_DECLS(
[SECCOMP_SET_MODE_FILTER, SECCOMP_FILTER_FLAG_TSYNC],
[HAVE_SECCOMP=yes], [],
diff --git a/src/emacs.c b/src/emacs.c
index bd01d7bb461..694d975ec3d 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -61,8 +61,8 @@ along with GNU Emacs. If not, see . */
# include
#endif
-#if defined HAVE_LINUX_SECCOMP_H \
- && HAVE_DECL_SECCOMP_SET_MODE_FILTER \
+#if defined HAVE_LINUX_SECCOMP_H && defined HAVE_LINUX_FILTER_H \
+ && HAVE_DECL_SECCOMP_SET_MODE_FILTER \
&& HAVE_DECL_SECCOMP_FILTER_FLAG_TSYNC
# define SECCOMP_USABLE 1
#else