summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2022-05-17 09:53:20 -0600
committerJens Axboe <axboe@kernel.dk>2022-05-17 09:53:20 -0600
commit03e142c9cc9d6ab822a93e8e730afd45fa544fa6 (patch)
tree406972bc134bd9c141cdcc8d95c95694ea3e4969 /configure
parentb2d28aea257d0eee40bcdc5c0613712c9e4e8184 (diff)
parent45969ce39dc764e12541681ed3ddbafcf7f0de85 (diff)
downloadliburing-03e142c9cc9d6ab822a93e8e730afd45fa544fa6.tar.gz
liburing-03e142c9cc9d6ab822a93e8e730afd45fa544fa6.tar.bz2
Merge branch 'fix/configure-statx' of https://github.com/safl/liburing
* 'fix/configure-statx' of https://github.com/safl/liburing: configure: fix compile-checks for statx
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure b/configure
index f2bf041..2c2441b 100755
--- a/configure
+++ b/configure
@@ -300,7 +300,6 @@ cat > $TMPC << EOF
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
-#include <linux/stat.h>
int main(int argc, char **argv)
{
struct statx x;
@@ -321,7 +320,7 @@ cat > $TMPC << EOF
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
-#include <linux/stat.h>
+#include <sys/stat.h>
int main(int argc, char **argv)
{
struct statx x;