diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-05-17 09:53:20 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-05-17 09:53:20 -0600 |
commit | 03e142c9cc9d6ab822a93e8e730afd45fa544fa6 (patch) | |
tree | 406972bc134bd9c141cdcc8d95c95694ea3e4969 /configure | |
parent | b2d28aea257d0eee40bcdc5c0613712c9e4e8184 (diff) | |
parent | 45969ce39dc764e12541681ed3ddbafcf7f0de85 (diff) | |
download | liburing-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-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; |