mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-20 19:48:54 +00:00
toolchain/autoconf-lean: add check for ssize_t
This was provided by the old static config.site files and is required by some software, i.e. freeswitch. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net> Signed-off-by: maurerr <mariusd84@gmail.com>
This commit is contained in:
parent
6fcd9f3a74
commit
5653eb469d
@ -29,7 +29,7 @@
|
||||
|
||||
# Checks for typedefs, structures, and compiler characteristics.
|
||||
AC_TYPE_GETGROUPS
|
||||
@@ -217,6 +222,16 @@ AC_FUNC_STRTOLD
|
||||
@@ -217,6 +222,17 @@ AC_FUNC_STRTOLD
|
||||
AC_FUNC_UTIME_NULL
|
||||
AC_FUNC_VPRINTF
|
||||
|
||||
@ -42,6 +42,7 @@
|
||||
+AC_CHECK_SIZEOF(unsigned long long)
|
||||
+AC_CHECK_SIZEOF(off_t)
|
||||
+AC_CHECK_SIZEOF(size_t)
|
||||
+AC_CHECK_SIZEOF(ssize_t)
|
||||
+
|
||||
# Functions list scraped from musl 0.9.4 x86_64
|
||||
AC_CHECK_FUNCS([ \
|
||||
|
Loading…
Reference in New Issue
Block a user