diff mbox series

[nft] configure: Remove AC_HEADER_STDBOOL, AC_C_ and AC_TYPE_ macros

Message ID 20180119030017.12432-1-rvarsha016@gmail.com
State Accepted
Delegated to: Pablo Neira
Headers show
Series [nft] configure: Remove AC_HEADER_STDBOOL, AC_C_ and AC_TYPE_ macros | expand

Commit Message

Varsha Rao Jan. 19, 2018, 3 a.m. UTC
The following macros check if particular C types in specific header file
exists, these header files defines them and are already included in the
source code. So, remove them.

AC_HEADER_STDBOOL - stdbool.h
AC_TYPE_INT and AC_TYPE_UINT - stdint.h or inttypes.h
AC_TYPE_OFF_T and AC_TYPE_UID_T - sys/types.h
AC_TYPE_SIZE_T - stddef.h, string.h, stdlib.h or stdio.h

Remove AC_C_CONST and AC_C_INLINE as gcc supports inline and const
keywords.

Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
---
 configure.ac | 16 ----------------
 1 file changed, 16 deletions(-)

Comments

Pablo Neira Ayuso Jan. 19, 2018, 12:05 p.m. UTC | #1
On Fri, Jan 19, 2018 at 08:30:17AM +0530, Varsha Rao wrote:
> The following macros check if particular C types in specific header file
> exists, these header files defines them and are already included in the
> source code. So, remove them.
> 
> AC_HEADER_STDBOOL - stdbool.h
> AC_TYPE_INT and AC_TYPE_UINT - stdint.h or inttypes.h
> AC_TYPE_OFF_T and AC_TYPE_UID_T - sys/types.h
> AC_TYPE_SIZE_T - stddef.h, string.h, stdlib.h or stdio.h
> 
> Remove AC_C_CONST and AC_C_INLINE as gcc supports inline and const
> keywords.

Applied, thanks Varsha.
--
To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/configure.ac b/configure.ac
index 6ed3edc..13b5574 100644
--- a/configure.ac
+++ b/configure.ac
@@ -120,22 +120,6 @@  AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h limits.h malloc.h \
 		  stddef.h stdint.h stdlib.h string.h unistd.h], ,
 		 AC_MSG_ERROR([Header file not found]))
 
-# Checks for typedefs, structures, and compiler characteristics.
-AC_HEADER_STDBOOL
-AC_C_CONST
-AC_C_INLINE
-AC_TYPE_OFF_T
-AC_TYPE_SIZE_T
-AC_TYPE_UID_T
-AC_TYPE_INT8_T
-AC_TYPE_INT16_T
-AC_TYPE_INT32_T
-AC_TYPE_INT64_T
-AC_TYPE_UINT8_T
-AC_TYPE_UINT16_T
-AC_TYPE_UINT32_T
-AC_TYPE_UINT64_T
-
 # Checks for library functions.
 AC_CHECK_FUNCS([memmove memset strchr strdup strerror strtoull])