diff options
| author | Philip Prindeville | 2024-07-28 01:19:46 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2024-07-28 17:39:34 +0000 |
| commit | b8b9c79d277634e77c850fc76ed805c282e46c4b (patch) | |
| tree | 7be4524941c411189c3e13cffd67aa7e3158f56c | |
| parent | 0bd129a5d3b298340e1f6351942a8ccc2ba6eaea (diff) | |
| download | openwrt-b8b9c79d277634e77c850fc76ed805c282e46c4b.tar.gz | |
build: autoconf: Activate options for standard types
These are POSIX standard types
And therefore should be present in any POSIX compliant runtime.
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Link: https://github.com/openwrt/openwrt/pull/15952
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | include/site/linux | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/site/linux b/include/site/linux index 63fc3aa6b1..1dadd60bf3 100644 --- a/include/site/linux +++ b/include/site/linux @@ -66,9 +66,12 @@ ac_cv_sctp=no ac_cv_sys_restartable_syscalls=yes ac_cv_time_r_type=POSIX ac_cv_type_suseconds_t=yes +ac_cv_size_t=yes +ac_cv_ssize_t=yes ac_cv_uchar=no ac_cv_uint=yes ac_cv_uint64_t=yes +ac_cv_uintptr_t=yes ac_cv_ulong=yes ac_cv_ushort=yes ac_cv_va_copy=C99 |