diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-13 11:22:48 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-16 00:03:15 +0100 |
commit | 3ea11466b5a748da3c136728b7088222af1ea24b (patch) | |
tree | 877060f24b018f200f334269c9a40203e7fc806c /meta/site/x86_64-linux | |
parent | 22463d22561504b56b522dc243c743d7e3c87c5a (diff) | |
download | poky-3ea11466b5a748da3c136728b7088222af1ea24b.tar.gz |
site/ix86-common: Drop ac_cv_sizeof_ino_t as it can be incorrect with large file support
Depending on whether large file support is enabled, the size of ino_t can
be 4 or 8 on 32 bit x86. Drop the value from the site cache and allow the
system to vary it depending on configuration. Very few other arches actually set
this so its likely obsolete and doesn't need to be hardcoded anymore.
Also drop the 64 bit and x32 variants since autodetection of this value appears
to work fine and this avoids any confusion or sizing errors depending on large
file support.
(From OE-Core rev: 31ae16003cac6c8cf587c98d0c58e9f21690cb40)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/site/x86_64-linux')
-rw-r--r-- | meta/site/x86_64-linux | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/site/x86_64-linux b/meta/site/x86_64-linux index ebdcf69f78..778e2c53ee 100644 --- a/meta/site/x86_64-linux +++ b/meta/site/x86_64-linux | |||
@@ -24,7 +24,6 @@ ac_cv_sizeof_short_int=${ac_cv_sizeof_short_int=2} | |||
24 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=8} | 24 | ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=8} |
25 | ac_cv_sizeof_uid_t=${ac_cv_sizeof_uid_t=4} | 25 | ac_cv_sizeof_uid_t=${ac_cv_sizeof_uid_t=4} |
26 | ac_cv_sizeof_gid_t=${ac_cv_sizeof_gid_t=4} | 26 | ac_cv_sizeof_gid_t=${ac_cv_sizeof_gid_t=4} |
27 | ac_cv_sizeof_ino_t=${ac_cv_sizeof_ino_t=8} | ||
28 | ac_cv_sizeof_dev_t=${ac_cv_sizeof_dev_t=8} | 27 | ac_cv_sizeof_dev_t=${ac_cv_sizeof_dev_t=8} |
29 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=8} | 28 | ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=8} |
30 | ac_cv_strerror_r_SUSv3=${ac_cv_strerror_r_SUSv3=no} | 29 | ac_cv_strerror_r_SUSv3=${ac_cv_strerror_r_SUSv3=no} |