]> git.ipfire.org Git - thirdparty/nftables.git/commit
configure: Remove AC_HEADER_STDBOOL, AC_C_ and AC_TYPE_ macros
authorVarsha Rao <rvarsha016@gmail.com>
Fri, 19 Jan 2018 03:00:17 +0000 (08:30 +0530)
committerPablo Neira Ayuso <pablo@netfilter.org>
Fri, 19 Jan 2018 12:06:53 +0000 (13:06 +0100)
commit4c19685e0f29207fd70747ee9bf7996b118ae598
treee3b2d79b1e7646a1d3fb8f8a87b8f87c2f0b1231
parent43de6bba7cc8ac0b0aa4d6065e4e544270e58444
configure: Remove AC_HEADER_STDBOOL, AC_C_ and AC_TYPE_ macros

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>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
configure.ac