The following changes since commit 74f4b020b3c8053ff319c3da900a5cf07e51c8eb: Consider the maximum block size difference the minimum for loop exit (2013-03-22 22:56:55 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master Jens Axboe (1): configure: check for v2 of libnuma configure | 20 +++++++++++++++++++- 1 files changed, 19 insertions(+), 1 deletions(-) --- Diff of recent changes: diff --git a/configure b/configure index b8afe39..76da4ba 100755 --- a/configure +++ b/configure @@ -810,6 +810,24 @@ fi echo "libnuma $libnuma" ########################################## +# libnuma 2.x version API +if test "$libnuma" = "yes" ; then +libnuma_v2="no" +cat > $TMPC << EOF +#include <numa.h> +int main(int argc, char **argv) +{ + struct bitmask *mask = numa_parse_nodestring(NULL); + return 0; +} +EOF +if compile_prog "" "" "libnuma api"; then + libnuma_v2="yes" +fi +echo "libnuma v2 $libnuma_v2" +fi + +########################################## # strsep() probe strsep="no" cat > $TMPC << EOF @@ -1046,7 +1064,7 @@ fi if test "$fusion_aw" = "yes" ; then output_sym "CONFIG_FUSION_AW" fi -if test "$libnuma" = "yes" ; then +if test "$libnuma_v2" = "yes" ; then output_sym "CONFIG_LIBNUMA" fi if test "$solaris_aio" = "yes" ; then -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html