From 214e97e115ffc9f9cf56a3576be4bbcab95b07f7 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Wed, 28 Aug 2024 08:00:00 +0000 Subject: build: consistently include config.h unconditionally Given that in most places config.h is included unconditionally, there is no point in keeping remaining HAVE_CONFIG_H checks. Public header files do not use config.h and therefore are not affected by this change anyway. --- conf/pam_conv1/pam_conv_l.l | 4 +--- conf/pam_conv1/pam_conv_y.y | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) (limited to 'conf') diff --git a/conf/pam_conv1/pam_conv_l.l b/conf/pam_conv1/pam_conv_l.l index db5ab6b9..06fc3202 100644 --- a/conf/pam_conv1/pam_conv_l.l +++ b/conf/pam_conv1/pam_conv_l.l @@ -9,9 +9,7 @@ * distributed with this file.) */ -#ifdef HAVE_CONFIG_H -# include -#endif +#include #include diff --git a/conf/pam_conv1/pam_conv_y.y b/conf/pam_conv1/pam_conv_y.y index a800cebc..b36351cd 100644 --- a/conf/pam_conv1/pam_conv_y.y +++ b/conf/pam_conv1/pam_conv_y.y @@ -9,9 +9,7 @@ * distributed with this file.) */ -#ifdef HAVE_CONFIG_H -# include -#endif +#include #include #include -- cgit v1.2.3