From cc2be6b65c49f87c7952a5cd0c1ebcb5030b4e73 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Mon, 30 Sep 2024 14:26:53 +0200 Subject: [PATCH] selinux-h: Fix two syntax errors. * m4/selinux-selinux-h.m4 (gl_CHECK_HEADER_SELINUX_SELINUX_H): Terminate each 'case' clause with ';;'. Remove extraneous closing brace. --- ChangeLog | 6 ++++++ m4/selinux-selinux-h.m4 | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d670b9fe59..0679ed28ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-09-30 Bruno Haible + + selinux-h: Fix two syntax errors. + * m4/selinux-selinux-h.m4 (gl_CHECK_HEADER_SELINUX_SELINUX_H): + Terminate each 'case' clause with ';;'. Remove extraneous closing brace. + 2024-09-30 Bruno Haible file-has-acl: Fix compilation error (regression yesterday). diff --git a/m4/selinux-selinux-h.m4 b/m4/selinux-selinux-h.m4 index a141defef0..cabc244baa 100644 --- a/m4/selinux-selinux-h.m4 +++ b/m4/selinux-selinux-h.m4 @@ -1,5 +1,5 @@ # selinux-selinux-h.m4 -# serial 9 -*- Autoconf -*- +# serial 10 -*- Autoconf -*- dnl Copyright (C) 2006-2007, 2009-2024 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -54,6 +54,7 @@ AC_DEFUN([gl_CHECK_HEADER_SELINUX_SELINUX_H], *:no) AC_MSG_WARN([libselinux was found but selinux/selinux.h is missing.]) AC_MSG_WARN([AC_PACKAGE_NAME will be compiled without SELinux support.]) + ;; esac else # Do as if does not exist, even if @@ -62,7 +63,7 @@ AC_DEFUN([gl_CHECK_HEADER_SELINUX_SELINUX_H], fi AC_SUBST([USE_SELINUX_SELINUX_H]) AC_DEFINE_UNQUOTED([USE_SELINUX_SELINUX_H], [$USE_SELINUX_SELINUX_H], - [Define to 1 if should be used, to 0 otherwise.])]) + [Define to 1 if should be used, to 0 otherwise.]) ]) AC_DEFUN([gl_LIBSELINUX], -- 2.39.5