From: Adhemerval Zanella Date: Wed, 10 Aug 2022 17:24:46 +0000 (-0300) Subject: linux: Use compile_c_snippet to check linux/mount.h availability X-Git-Tag: glibc-2.37~427 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e1226cdc6b209539a92d32d5b620ba53fd35abf3;p=thirdparty%2Fglibc.git linux: Use compile_c_snippet to check linux/mount.h availability Checked on x86_64-linux-gnu. Reviewed-by: Florian Weimer --- diff --git a/sysdeps/unix/sysv/linux/tst-mount-consts.py b/sysdeps/unix/sysv/linux/tst-mount-consts.py index 4fb356310bd..c6307cb5c23 100755 --- a/sysdeps/unix/sysv/linux/tst-mount-consts.py +++ b/sysdeps/unix/sysv/linux/tst-mount-consts.py @@ -33,6 +33,11 @@ def main(): help='C compiler (including options) to use') args = parser.parse_args() + if glibcextract.compile_c_snippet( + '#include ', + args.cc).returncode != 0: + sys.exit (77) + linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc) # Constants in glibc were updated to match Linux v5.19. When glibc # constants are updated this value should be updated to match the