Eryu Guan <eguan@xxxxxxxxxx> wrote: > Perhaps we should add a new autoconf rule in configure.ac and define > HAVE_STATX if there's statx support, like what src/renameat2.c does? src/renameat2.c has in it: #if !defined(SYS_renameat2) && defined(__i386__) #define SYS_renameat2 353 #endif #if !defined(SYS_renameat2) && defined(__i386__) #define SYS_renameat2 353 #endif This looks like a copy & paste error. David