You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
359 B
15 lines
359 B
dnl SPDX-License-Identifier: GPL-2.0-or-later
|
|
dnl Copyright (c) Zilogic Systems Pvt. Ltd., 2018
|
|
|
|
AC_DEFUN([LTP_CHECK_STATX],[
|
|
AC_CHECK_FUNCS(statx,,)
|
|
AC_CHECK_HEADER(linux/fs.h,,,)
|
|
AC_CHECK_TYPES([struct statx],,,[[
|
|
#define _GNU_SOURCE
|
|
#include <sys/stat.h>
|
|
]])
|
|
AC_CHECK_TYPES([struct statx_timestamp],,,[[
|
|
#define _GNU_SOURCE
|
|
#include <sys/stat.h>]])
|
|
])
|