engines: pvsync2 libaio io_uring: add support for RWF_NOWAIT
[fio.git] / configure
1 #!/bin/sh
2 #
3 # Fio configure script. Heavily influenced by the manual qemu configure
4 # script. Sad this is easier than autoconf and enemies.
5 #
6
7 # set temporary file name
8 if test ! -z "$TMPDIR" ; then
9     TMPDIR1="${TMPDIR}"
10 elif test ! -z "$TEMPDIR" ; then
11     TMPDIR1="${TEMPDIR}"
12 else
13     TMPDIR1="/tmp"
14 fi
15
16 TMPC="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.c"
17 TMPC2="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}-2.c"
18 TMPO="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.o"
19 TMPE="${TMPDIR1}/fio-conf-${RANDOM}-$$-${RANDOM}.exe"
20
21 # NB: do not call "exit" in the trap handler; this is buggy with some shells;
22 # see <1285349658-3122-1-git-send-email-loic.minier@linaro.org>
23 trap "rm -f $TMPC $TMPC2 $TMPO $TMPE" EXIT INT QUIT TERM
24
25 rm -rf config.log
26
27 config_host_mak="config-host.mak"
28 config_host_h="config-host.h"
29
30 rm -rf $config_host_mak
31 rm -rf $config_host_h
32
33 fatal() {
34   echo $@
35   echo "Configure failed, check config.log and/or the above output"
36   rm -rf $config_host_mak
37   rm -rf $config_host_h
38   exit 1
39 }
40
41 # Print result for each configuration test
42 print_config() {
43   printf "%-30s%s\n" "$1" "$2"
44 }
45
46 # Default CFLAGS
47 CFLAGS="-D_GNU_SOURCE -include config-host.h $CFLAGS"
48 BUILD_CFLAGS=""
49
50 # Print a helpful header at the top of config.log
51 echo "# FIO configure log $(date)" >> config.log
52 printf "# Configured with:" >> config.log
53 printf " '%s'" "$0" "$@" >> config.log
54 echo >> config.log
55 echo "#" >> config.log
56
57 # Print configure header at the top of $config_host_h
58 echo "/*" > $config_host_h
59 echo " * Automatically generated by configure - do not modify" >> $config_host_h
60 printf " * Configured with:" >> $config_host_h
61 printf " * '%s'" "$0" "$@" >> $config_host_h
62 echo "" >> $config_host_h
63 echo " */" >> $config_host_h
64
65 do_cc() {
66     # Run the compiler, capturing its output to the log.
67     echo $cc "$@" >> config.log
68     $cc "$@" >> config.log 2>&1 || return $?
69     # Test passed. If this is an --enable-werror build, rerun
70     # the test with -Werror and bail out if it fails. This
71     # makes warning-generating-errors in configure test code
72     # obvious to developers.
73     if test "$werror" != "yes"; then
74         return 0
75     fi
76     # Don't bother rerunning the compile if we were already using -Werror
77     case "$*" in
78         *-Werror*)
79            return 0
80         ;;
81     esac
82     echo $cc -Werror "$@" >> config.log
83     $cc -Werror "$@" >> config.log 2>&1 && return $?
84     echo "ERROR: configure test passed without -Werror but failed with -Werror."
85     echo "This is probably a bug in the configure script. The failing command"
86     echo "will be at the bottom of config.log."
87     fatal "You can run configure with --disable-werror to bypass this check."
88 }
89
90 compile_object() {
91   do_cc $CFLAGS -Werror-implicit-function-declaration -c -o $TMPO $TMPC
92 }
93
94 compile_prog() {
95   local_cflags="$1"
96   local_ldflags="$2 $LIBS"
97   echo "Compiling test case $3" >> config.log
98   do_cc $CFLAGS -Werror-implicit-function-declaration $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
99 }
100
101 feature_not_found() {
102   feature=$1
103   packages=$2
104
105   echo "ERROR"
106   echo "ERROR: User requested feature $feature"
107   if test ! -z "$packages" ; then
108     echo "ERROR: That feature needs $packages installed"
109   fi
110   echo "ERROR: configure was not able to find it"
111   fatal "ERROR"
112 }
113
114 has() {
115   type "$1" >/dev/null 2>&1
116 }
117
118 check_define() {
119   cat > $TMPC <<EOF
120 #if !defined($1)
121 #error $1 not defined
122 #endif
123 int main(void)
124 {
125   return 0;
126 }
127 EOF
128   compile_object
129 }
130
131 output_sym() {
132   echo "$1=y" >> $config_host_mak
133   echo "#define $1" >> $config_host_h
134 }
135
136 targetos=""
137 cpu=""
138
139 # default options
140 show_help="no"
141 exit_val=0
142 gfio_check="no"
143 libhdfs="no"
144 pmemblk="no"
145 devdax="no"
146 pmem="no"
147 disable_lex=""
148 disable_pmem="no"
149 disable_native="no"
150 march_set="no"
151 libiscsi="no"
152 libnbd="no"
153 libaio_uring="no"
154 prefix=/usr/local
155
156 # parse options
157 for opt do
158   optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
159   case "$opt" in
160   --prefix=*) prefix="$optarg"
161   ;;
162   --cpu=*) cpu="$optarg"
163   ;;
164   #  esx is cross compiled and cannot be detect through simple uname calls
165   --esx)
166   esx="yes"
167   ;;
168   --cc=*) CC="$optarg"
169   ;;
170   --extra-cflags=*) CFLAGS="$CFLAGS $optarg"
171   ;;
172   --build-32bit-win) build_32bit_win="yes"
173   ;;
174   --target-win-ver=*) target_win_ver="$optarg"
175   ;;
176   --build-static) build_static="yes"
177   ;;
178   --enable-gfio) gfio_check="yes"
179   ;;
180   --disable-numa) disable_numa="yes"
181   ;;
182   --disable-rdma) disable_rdma="yes"
183   ;;
184   --disable-rados) disable_rados="yes"
185   ;;
186   --disable-rbd) disable_rbd="yes"
187   ;;
188   --disable-http) disable_http="yes"
189   ;;
190   --disable-gfapi) disable_gfapi="yes"
191   ;;
192   --enable-libhdfs) libhdfs="yes"
193   ;;
194   --disable-lex) disable_lex="yes"
195   ;;
196   --enable-lex) disable_lex="no"
197   ;;
198   --disable-shm) no_shm="yes"
199   ;;
200   --disable-optimizations) disable_opt="yes"
201   ;;
202   --disable-pmem) disable_pmem="yes"
203   ;;
204   --enable-cuda) enable_cuda="yes"
205   ;;
206   --disable-native) disable_native="yes"
207   ;;
208   --with-ime=*) ime_path="$optarg"
209   ;;
210   --enable-libiscsi) libiscsi="yes"
211   ;;
212   --enable-libnbd) libnbd="yes"
213   ;;
214   --disable-tcmalloc) disable_tcmalloc="yes"
215   ;;
216   --enable-libaio-uring) libaio_uring="yes"
217   ;;
218   --help)
219     show_help="yes"
220     ;;
221   *)
222   echo "Bad option $opt"
223   show_help="yes"
224   exit_val=1
225   esac
226 done
227
228 if test "$show_help" = "yes" ; then
229   echo "--prefix=               Use this directory as installation prefix"
230   echo "--cpu=                  Specify target CPU if auto-detect fails"
231   echo "--cc=                   Specify compiler to use"
232   echo "--extra-cflags=         Specify extra CFLAGS to pass to compiler"
233   echo "--build-32bit-win       Enable 32-bit build on Windows"
234   echo "--target-win-ver=       Minimum version of Windows to target (XP or 7)"
235   echo "--build-static          Build a static fio"
236   echo "--esx                   Configure build options for esx"
237   echo "--enable-gfio           Enable building of gtk gfio"
238   echo "--disable-numa          Disable libnuma even if found"
239   echo "--disable-rdma          Disable RDMA support even if found"
240   echo "--disable-rados         Disable Rados support even if found"
241   echo "--disable-rbd           Disable Rados Block Device even if found"
242   echo "--disable-http          Disable HTTP support even if found"
243   echo "--disable-gfapi         Disable gfapi"
244   echo "--enable-libhdfs        Enable hdfs support"
245   echo "--disable-lex           Disable use of lex/yacc for math"
246   echo "--disable-pmem          Disable pmem based engines even if found"
247   echo "--enable-lex            Enable use of lex/yacc for math"
248   echo "--disable-shm           Disable SHM support"
249   echo "--disable-optimizations Don't enable compiler optimizations"
250   echo "--enable-cuda           Enable GPUDirect RDMA support"
251   echo "--disable-native        Don't build for native host"
252   echo "--with-ime=             Install path for DDN's Infinite Memory Engine"
253   echo "--enable-libiscsi       Enable iscsi support"
254   echo "--enable-libnbd         Enable libnbd (NBD engine) support"
255   echo "--disable-tcmalloc      Disable tcmalloc support"
256   echo "--enable-libaio-uring   Enable libaio emulated over io_uring"
257   exit $exit_val
258 fi
259
260 cross_prefix=${cross_prefix-${CROSS_COMPILE}}
261 # Preferred compiler (can be overriden later after we know the platform):
262 #  ${CC} (if set)
263 #  ${cross_prefix}gcc (if cross-prefix specified)
264 #  gcc if available
265 #  clang if available
266 if test -z "${CC}${cross_prefix}"; then
267   if has gcc; then
268     cc=gcc
269   elif has clang; then
270     cc=clang
271   fi
272 else
273   cc="${CC-${cross_prefix}gcc}"
274 fi
275
276 if check_define __ANDROID__ ; then
277   targetos="Android"
278 elif check_define __linux__ ; then
279   targetos="Linux"
280 elif check_define __OpenBSD__ ; then
281   targetos='OpenBSD'
282 elif check_define __NetBSD__ ; then
283   targetos='NetBSD'
284 elif check_define __sun__ ; then
285   targetos='SunOS'
286   CFLAGS="$CFLAGS -D_REENTRANT"
287 elif check_define _WIN32 ; then
288   targetos='CYGWIN'
289 else
290   targetos=`uname -s`
291 fi
292
293 echo "# Automatically generated by configure - do not modify" > $config_host_mak
294 printf "# Configured with:" >> $config_host_mak
295 printf " '%s'" "$0" "$@" >> $config_host_mak
296 echo >> $config_host_mak
297 echo "CONFIG_TARGET_OS=$targetos" >> $config_host_mak
298
299 if test "$no_shm" = "yes" ; then
300   output_sym "CONFIG_NO_SHM"
301 fi
302
303 if test "$disable_opt" = "yes" ; then
304   output_sym "CONFIG_FIO_NO_OPT"
305 fi
306
307 # Some host OSes need non-standard checks for which CPU to use.
308 # Note that these checks are broken for cross-compilation: if you're
309 # cross-compiling to one of these OSes then you'll need to specify
310 # the correct CPU with the --cpu option.
311 case $targetos in
312 AIX|OpenBSD|NetBSD)
313   # Unless explicitly enabled, turn off lex.
314   # OpenBSD will hit syntax error when enabled.
315   if test -z "$disable_lex" ; then
316     disable_lex="yes"
317   else
318     force_no_lex_o="yes"
319   fi
320   ;;
321 FreeBSD)
322   CFLAGS="$CFLAGS -I/usr/local/include"
323   LDFLAGS="$LDFLAGS -L/usr/local/lib"
324   ;;
325 Darwin)
326   # on Leopard most of the system is 32-bit, so we have to ask the kernel if
327   # we can run 64-bit userspace code.
328   # If the user didn't specify a CPU explicitly and the kernel says this is
329   # 64 bit hw, then assume x86_64. Otherwise fall through to the usual
330   # detection code.
331   if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
332     cpu="x86_64"
333   fi
334   # Error at compile time linking of weak/partial symbols if possible...
335 cat > $TMPC <<EOF
336 int main(void)
337 {
338   return 0;
339 }
340 EOF
341   if compile_prog "" "-Wl,-no_weak_imports" "disable weak symbols"; then
342     echo "Disabling weak symbols"
343     LDFLAGS="$LDFLAGS -Wl,-no_weak_imports"
344   fi
345   ;;
346 SunOS)
347   # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
348   if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
349     cpu="x86_64"
350   fi
351   LIBS="-lnsl -lsocket"
352   ;;
353 CYGWIN*)
354   # We still force some options, so keep this message here.
355   echo "Forcing some known good options on Windows"
356   if test -z "${CC}${cross_prefix}"; then
357     if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
358       cc="i686-w64-mingw32-gcc"
359     else
360       cc="x86_64-w64-mingw32-gcc"
361     fi
362   fi
363
364   target_win_ver=$(echo "$target_win_ver" | tr '[:lower:]' '[:upper:]')
365   if test -z "$target_win_ver"; then
366     # Default Windows API target
367     target_win_ver="7"
368   fi
369   if test "$target_win_ver" = "XP"; then
370     output_sym "CONFIG_WINDOWS_XP"
371   elif test "$target_win_ver" = "7"; then
372     output_sym "CONFIG_WINDOWS_7"
373     CFLAGS="$CFLAGS -D_WIN32_WINNT=0x0601"
374   else
375     fatal "Unknown target Windows version"
376   fi
377
378   # We need this to be output_sym'd here because this is Windows specific.
379   # The regular configure path never sets this config.
380   output_sym "CONFIG_WINDOWSAIO"
381   # We now take the regular configuration path without having exit 0 here.
382   # Flags below are still necessary mostly for MinGW.
383   build_static="yes"
384   rusage_thread="yes"
385   fdatasync="yes"
386   clock_gettime="yes" # clock_monotonic probe has dependency on this
387   clock_monotonic="yes"
388   sched_idle="yes"
389   ;;
390 esac
391
392 # Now we know the target platform we can have another guess at the preferred
393 # compiler when it wasn't explictly set
394 if test -z "${CC}${cross_prefix}"; then
395   if test "$targetos" = "FreeBSD" || test "$targetos" = "Darwin"; then
396     if has clang; then
397       cc=clang
398     fi
399   fi
400 fi
401 if test -z "$cc"; then
402     echo "configure: failed to find compiler"
403     exit 1
404 fi
405
406 if test ! -z "$cpu" ; then
407   # command line argument
408   :
409 elif check_define __i386__ ; then
410   cpu="i386"
411 elif check_define __x86_64__ ; then
412   cpu="x86_64"
413 elif check_define __sparc__ ; then
414   if check_define __arch64__ ; then
415     cpu="sparc64"
416   else
417     cpu="sparc"
418   fi
419 elif check_define _ARCH_PPC ; then
420   if check_define _ARCH_PPC64 ; then
421     cpu="ppc64"
422   else
423     cpu="ppc"
424   fi
425 elif check_define __mips__ ; then
426   cpu="mips"
427 elif check_define __ia64__ ; then
428   cpu="ia64"
429 elif check_define __s390__ ; then
430   if check_define __s390x__ ; then
431     cpu="s390x"
432   else
433     cpu="s390"
434   fi
435 elif check_define __arm__ ; then
436   cpu="arm"
437 elif check_define __aarch64__ ; then
438   cpu="aarch64"
439 elif check_define __hppa__ ; then
440   cpu="hppa"
441 else
442   cpu=`uname -m`
443 fi
444
445 # Normalise host CPU name and set ARCH.
446 case "$cpu" in
447   ia64|ppc|ppc64|s390|s390x|sparc64)
448     cpu="$cpu"
449   ;;
450   i386|i486|i586|i686|i86pc|BePC)
451     cpu="x86"
452   ;;
453   x86_64|amd64)
454     cpu="x86_64"
455   ;;
456   armv*b|armv*l|arm)
457     cpu="arm"
458   ;;
459   aarch64)
460     cpu="arm64"
461   ;;
462   hppa|parisc|parisc64)
463     cpu="hppa"
464   ;;
465   mips*)
466     cpu="mips"
467   ;;
468   sparc|sun4[cdmuv])
469     cpu="sparc"
470   ;;
471   *)
472   echo "Unknown CPU"
473   ;;
474 esac
475
476 ##########################################
477 # check cross compile
478
479 if test "$cross_compile" != "yes" ; then
480   cross_compile="no"
481 fi
482 cat > $TMPC <<EOF
483 int main(void)
484 {
485   return 0;
486 }
487 EOF
488 if compile_prog "" "" "cross"; then
489   $TMPE 2>/dev/null || cross_compile="yes"
490 else
491   fatal "compile test failed"
492 fi
493
494 ##########################################
495 # check endianness
496 if test "$bigendian" != "yes" ; then
497   bigendian="no"
498 fi
499 if test "$cross_compile" = "no" ; then
500   cat > $TMPC <<EOF
501 #include <inttypes.h>
502 int main(void)
503 {
504   volatile uint32_t i=0x01234567;
505   return (*((uint8_t*)(&i))) == 0x67;
506 }
507 EOF
508   if compile_prog "" "" "endian"; then
509     $TMPE && bigendian="yes"
510   fi
511 else
512   # If we're cross compiling, try our best to work it out and rely on the
513   # run-time check to fail if we get it wrong.
514   cat > $TMPC <<EOF
515 #include <endian.h>
516 int main(void)
517 {
518 #if __BYTE_ORDER != __BIG_ENDIAN
519 # error "Unknown endianness"
520 #endif
521 }
522 EOF
523   compile_prog "" "" "endian" && bigendian="yes"
524   check_define "__ARMEB__" && bigendian="yes"
525   check_define "__MIPSEB__" && bigendian="yes"
526 fi
527
528
529 print_config "Operating system" "$targetos"
530 print_config "CPU" "$cpu"
531 print_config "Big endian" "$bigendian"
532 if test ! -z "$target_win_ver"; then
533   print_config "Target Windows version" "$target_win_ver"
534 fi
535 print_config "Compiler" "$cc"
536 print_config "Cross compile" "$cross_compile"
537 echo
538
539 ##########################################
540 # See if we need to build a static build
541 if test "$build_static" = "yes" ; then
542   CFLAGS="$CFLAGS -ffunction-sections -fdata-sections"
543   LDFLAGS="$LDFLAGS -static -Wl,--gc-sections"
544 else
545   build_static="no"
546 fi
547 print_config "Static build" "$build_static"
548
549 ##########################################
550 # check for wordsize
551 wordsize="0"
552 cat > $TMPC <<EOF
553 #include <limits.h>
554 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
555 int main(void)
556 {
557   BUILD_BUG_ON(sizeof(long)*CHAR_BIT != WORDSIZE);
558   return 0;
559 }
560 EOF
561 if compile_prog "-DWORDSIZE=32" "" "wordsize"; then
562   wordsize="32"
563 elif compile_prog "-DWORDSIZE=64" "" "wordsize"; then
564   wordsize="64"
565 else
566   fatal "Unknown wordsize"
567 fi
568 print_config "Wordsize" "$wordsize"
569
570 ##########################################
571 # zlib probe
572 if test "$zlib" != "yes" ; then
573   zlib="no"
574 fi
575 cat > $TMPC <<EOF
576 #include <zlib.h>
577 int main(void)
578 {
579   z_stream stream;
580   if (inflateInit(&stream) != Z_OK)
581     return 1;
582   return 0;
583 }
584 EOF
585 if compile_prog "" "-lz" "zlib" ; then
586   zlib=yes
587   LIBS="-lz $LIBS"
588 fi
589 print_config "zlib" "$zlib"
590
591 ##########################################
592 # linux-aio probe
593 if test "$libaio" != "yes" ; then
594   libaio="no"
595 fi
596 if test "$esx" != "yes" ; then
597   cat > $TMPC <<EOF
598 #include <libaio.h>
599 #include <stddef.h>
600 int main(void)
601 {
602   io_setup(0, NULL);
603   return 0;
604 }
605 EOF
606   if test "$libaio_uring" = "yes" && compile_prog "" "-luring" "libaio io_uring" ; then
607     libaio=yes
608     LIBS="-luring $LIBS"
609   elif compile_prog "" "-laio" "libaio" ; then
610     libaio=yes
611     libaio_uring=no
612     LIBS="-laio $LIBS"
613   else
614     if test "$libaio" = "yes" ; then
615       feature_not_found "linux AIO" "libaio-dev or libaio-devel"
616     fi
617     libaio=no
618     libaio_uring=no
619   fi
620
621   cat > $TMPC <<EOF
622 #include <libaio.h>
623 #include <stddef.h>
624 int main(void)
625 {
626   io_prep_preadv2(NULL, 0, NULL, 0, 0, 0);
627   io_prep_pwritev2(NULL, 0, NULL, 0, 0, 0);
628   return 0;
629 }
630 EOF
631   if compile_prog "" "" "libaio rw flags" ; then
632     libaio_rw_flags=yes
633   else
634     libaio_rw_flags=no
635   fi
636 fi
637 print_config "Linux AIO support" "$libaio"
638 print_config "Linux AIO support rw flags" "$libaio_rw_flags"
639 print_config "Linux AIO over io_uring" "$libaio_uring"
640
641 ##########################################
642 # posix aio probe
643 if test "$posix_aio" != "yes" ; then
644   posix_aio="no"
645 fi
646 if test "$posix_aio_lrt" != "yes" ; then
647   posix_aio_lrt="no"
648 fi
649 cat > $TMPC <<EOF
650 #include <aio.h>
651 int main(void)
652 {
653   struct aiocb cb;
654   aio_read(&cb);
655   return 0;
656 }
657 EOF
658 if compile_prog "" "" "posixaio" ; then
659   posix_aio="yes"
660 elif compile_prog "" "-lrt" "posixaio -lrt"; then
661   posix_aio="yes"
662   posix_aio_lrt="yes"
663   LIBS="-lrt $LIBS"
664 fi
665 print_config "POSIX AIO support" "$posix_aio"
666 print_config "POSIX AIO support needs -lrt" "$posix_aio_lrt"
667
668 ##########################################
669 # posix aio fsync probe
670 if test "$posix_aio_fsync" != "yes" ; then
671   posix_aio_fsync="no"
672 fi
673 if test "$posix_aio" = "yes" ; then
674   cat > $TMPC <<EOF
675 #include <fcntl.h>
676 #include <aio.h>
677 int main(void)
678 {
679   struct aiocb cb;
680   return aio_fsync(O_SYNC, &cb);
681   return 0;
682 }
683 EOF
684   if compile_prog "" "$LIBS" "posix_aio_fsync" ; then
685     posix_aio_fsync=yes
686   fi
687 fi
688 print_config "POSIX AIO fsync" "$posix_aio_fsync"
689
690 ##########################################
691 # POSIX pshared attribute probe
692 if test "$posix_pshared" != "yes" ; then
693   posix_pshared="no"
694 fi
695 cat > $TMPC <<EOF
696 #include <unistd.h>
697 int main(void)
698 {
699 #if defined(_POSIX_THREAD_PROCESS_SHARED) && ((_POSIX_THREAD_PROCESS_SHARED + 0) > 0)
700 # if defined(__CYGWIN__)
701 #  error "_POSIX_THREAD_PROCESS_SHARED is buggy on Cygwin"
702 # elif defined(__APPLE__)
703 #  include <AvailabilityMacros.h>
704 #  include <TargetConditionals.h>
705 #  if TARGET_OS_MAC && MAC_OS_X_VERSION_MIN_REQUIRED < 1070
706 #   error "_POSIX_THREAD_PROCESS_SHARED is buggy/unsupported prior to OSX 10.7"
707 #  endif
708 # endif
709 #else
710 # error "_POSIX_THREAD_PROCESS_SHARED is unsupported"
711 #endif
712   return 0;
713 }
714 EOF
715 if compile_prog "" "$LIBS" "posix_pshared" ; then
716   posix_pshared=yes
717 fi
718 print_config "POSIX pshared support" "$posix_pshared"
719
720 ##########################################
721 # POSIX pthread_condattr_setclock() probe
722 if test "$pthread_condattr_setclock" != "yes" ; then
723   pthread_condattr_setclock="no"
724 fi
725 cat > $TMPC <<EOF
726 #include <pthread.h>
727 int main(void)
728 {
729   pthread_condattr_t condattr;
730   pthread_condattr_setclock(&condattr, CLOCK_MONOTONIC);
731   return 0;
732 }
733 EOF
734 if compile_prog "" "$LIBS" "pthread_condattr_setclock" ; then
735   pthread_condattr_setclock=yes
736 elif compile_prog "" "$LIBS -lpthread" "pthread_condattr_setclock" ; then
737   pthread_condattr_setclock=yes
738   LIBS="$LIBS -lpthread"
739 fi
740 print_config "pthread_condattr_setclock()" "$pthread_condattr_setclock"
741
742 ##########################################
743 # pthread_sigmask() probe
744 if test "$pthread_sigmask" != "yes" ; then
745   pthread_sigmask="no"
746 fi
747 cat > $TMPC <<EOF
748 #include <stddef.h> /* NULL */
749 #include <signal.h> /* pthread_sigmask() */
750 int main(void)
751 {
752   return pthread_sigmask(0, NULL, NULL);
753 }
754 EOF
755 if compile_prog "" "$LIBS" "pthread_sigmask" ; then
756   pthread_sigmask=yes
757 elif compile_prog "" "$LIBS -lpthread" "pthread_sigmask" ; then
758   pthread_sigmask=yes
759   LIBS="$LIBS -lpthread"
760 fi
761 print_config "pthread_sigmask()" "$pthread_sigmask"
762
763 ##########################################
764 # solaris aio probe
765 if test "$solaris_aio" != "yes" ; then
766   solaris_aio="no"
767 fi
768 cat > $TMPC <<EOF
769 #include <sys/types.h>
770 #include <sys/asynch.h>
771 #include <unistd.h>
772 int main(void)
773 {
774   aio_result_t res;
775   return aioread(0, NULL, 0, 0, SEEK_SET, &res);
776   return 0;
777 }
778 EOF
779 if compile_prog "" "-laio" "solarisaio" ; then
780   solaris_aio=yes
781   LIBS="-laio $LIBS"
782 fi
783 print_config "Solaris AIO support" "$solaris_aio"
784
785 ##########################################
786 # __sync_fetch_and_add test
787 if test "$sfaa" != "yes" ; then
788   sfaa="no"
789 fi
790 cat > $TMPC << EOF
791 #include <inttypes.h>
792 static int sfaa(uint64_t *ptr)
793 {
794   return __sync_fetch_and_add(ptr, 0);
795 }
796
797 int main(int argc, char **argv)
798 {
799   uint64_t val = 42;
800   sfaa(&val);
801   return val;
802 }
803 EOF
804 if compile_prog "" "" "__sync_fetch_and_add()" ; then
805     sfaa="yes"
806 fi
807 print_config "__sync_fetch_and_add" "$sfaa"
808
809 ##########################################
810 # __sync_synchronize() test
811 if test "$sync_sync" != "yes" ; then
812   sync_sync="no"
813 fi
814 cat > $TMPC << EOF
815 #include <inttypes.h>
816
817 int main(int argc, char **argv)
818 {
819   __sync_synchronize();
820   return 0;
821 }
822 EOF
823 if compile_prog "" "" "__sync_synchronize()" ; then
824     sync_sync="yes"
825 fi
826 print_config "__sync_synchronize" "$sync_sync"
827
828 ##########################################
829 # __sync_val_compare_and_swap() test
830 if test "$cmp_swap" != "yes" ; then
831   cmp_swap="no"
832 fi
833 cat > $TMPC << EOF
834 #include <inttypes.h>
835
836 int main(int argc, char **argv)
837 {
838   int x = 0;
839   return __sync_val_compare_and_swap(&x, 1, 2);
840 }
841 EOF
842 if compile_prog "" "" "__sync_val_compare_and_swap()" ; then
843     cmp_swap="yes"
844 fi
845 print_config "__sync_val_compare_and_swap" "$cmp_swap"
846
847 ##########################################
848 # libverbs probe
849 if test "$libverbs" != "yes" ; then
850   libverbs="no"
851 fi
852 cat > $TMPC << EOF
853 #include <infiniband/verbs.h>
854 int main(int argc, char **argv)
855 {
856   struct ibv_pd *pd = ibv_alloc_pd(NULL);
857   return pd != NULL;
858 }
859 EOF
860 if test "$disable_rdma" != "yes" && compile_prog "" "-libverbs" "libverbs" ; then
861     libverbs="yes"
862     LIBS="-libverbs $LIBS"
863 fi
864 print_config "libverbs" "$libverbs"
865
866 ##########################################
867 # rdmacm probe
868 if test "$rdmacm" != "yes" ; then
869   rdmacm="no"
870 fi
871 cat > $TMPC << EOF
872 #include <stdio.h>
873 #include <rdma/rdma_cma.h>
874 int main(int argc, char **argv)
875 {
876   rdma_destroy_qp(NULL);
877   return 0;
878 }
879 EOF
880 if test "$disable_rdma" != "yes" && compile_prog "" "-lrdmacm" "rdma"; then
881     rdmacm="yes"
882     LIBS="-lrdmacm $LIBS"
883 fi
884 print_config "rdmacm" "$rdmacm"
885
886 ##########################################
887 # asprintf() and vasprintf() probes
888 if test "$have_asprintf" != "yes" ; then
889   have_asprintf="no"
890 fi
891 cat > $TMPC << EOF
892 #include <stdio.h>
893
894 int main(int argc, char **argv)
895 {
896   return asprintf(NULL, "%s", "str") == 0;
897 }
898 EOF
899 if compile_prog "" "" "have_asprintf"; then
900     have_asprintf="yes"
901 fi
902 print_config "asprintf()" "$have_asprintf"
903
904 if test "$have_vasprintf" != "yes" ; then
905   have_vasprintf="no"
906 fi
907 cat > $TMPC << EOF
908 #include <stdio.h>
909
910 int main(int argc, char **argv)
911 {
912   va_list ap;
913   return vasprintf(NULL, "%s", ap) == 0;
914 }
915 EOF
916 if compile_prog "" "" "have_vasprintf"; then
917     have_vasprintf="yes"
918 fi
919 print_config "vasprintf()" "$have_vasprintf"
920
921 ##########################################
922 # Linux fallocate probe
923 if test "$linux_fallocate" != "yes" ; then
924   linux_fallocate="no"
925 fi
926 cat > $TMPC << EOF
927 #include <stdio.h>
928 #include <fcntl.h>
929 #include <linux/falloc.h>
930 int main(int argc, char **argv)
931 {
932   int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
933   return r;
934 }
935 EOF
936 if compile_prog "" "" "linux_fallocate"; then
937     linux_fallocate="yes"
938 fi
939 print_config "Linux fallocate" "$linux_fallocate"
940
941 ##########################################
942 # POSIX fadvise probe
943 if test "$posix_fadvise" != "yes" ; then
944   posix_fadvise="no"
945 fi
946 cat > $TMPC << EOF
947 #include <stdio.h>
948 #include <fcntl.h>
949 int main(int argc, char **argv)
950 {
951   int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
952   return r;
953 }
954 EOF
955 if compile_prog "" "" "posix_fadvise"; then
956     posix_fadvise="yes"
957 fi
958 print_config "POSIX fadvise" "$posix_fadvise"
959
960 ##########################################
961 # POSIX fallocate probe
962 if test "$posix_fallocate" != "yes" ; then
963   posix_fallocate="no"
964 fi
965 cat > $TMPC << EOF
966 #include <stdio.h>
967 #include <fcntl.h>
968 int main(int argc, char **argv)
969 {
970   int r = posix_fallocate(0, 0, 1024);
971   return r;
972 }
973 EOF
974 if compile_prog "" "" "posix_fallocate"; then
975     posix_fallocate="yes"
976 fi
977 print_config "POSIX fallocate" "$posix_fallocate"
978
979 ##########################################
980 # sched_set/getaffinity 2 or 3 argument test
981 if test "$linux_2arg_affinity" != "yes" ; then
982   linux_2arg_affinity="no"
983 fi
984 if test "$linux_3arg_affinity" != "yes" ; then
985   linux_3arg_affinity="no"
986 fi
987 cat > $TMPC << EOF
988 #include <sched.h>
989 int main(int argc, char **argv)
990 {
991   cpu_set_t mask;
992   return sched_setaffinity(0, sizeof(mask), &mask);
993 }
994 EOF
995 if compile_prog "" "" "sched_setaffinity(,,)"; then
996   linux_3arg_affinity="yes"
997 else
998   cat > $TMPC << EOF
999 #include <sched.h>
1000 int main(int argc, char **argv)
1001 {
1002   cpu_set_t mask;
1003   return sched_setaffinity(0, &mask);
1004 }
1005 EOF
1006   if compile_prog "" "" "sched_setaffinity(,)"; then
1007     linux_2arg_affinity="yes"
1008   fi
1009 fi
1010 print_config "sched_setaffinity(3 arg)" "$linux_3arg_affinity"
1011 print_config "sched_setaffinity(2 arg)" "$linux_2arg_affinity"
1012
1013 ##########################################
1014 # clock_gettime probe
1015 if test "$clock_gettime" != "yes" ; then
1016   clock_gettime="no"
1017 fi
1018 cat > $TMPC << EOF
1019 #include <stdio.h>
1020 #include <time.h>
1021 int main(int argc, char **argv)
1022 {
1023   return clock_gettime(0, NULL);
1024 }
1025 EOF
1026 if compile_prog "" "" "clock_gettime"; then
1027     clock_gettime="yes"
1028 elif compile_prog "" "-lrt" "clock_gettime"; then
1029     clock_gettime="yes"
1030     LIBS="-lrt $LIBS"
1031 fi
1032 print_config "clock_gettime" "$clock_gettime"
1033
1034 ##########################################
1035 # CLOCK_MONOTONIC probe
1036 if test "$clock_monotonic" != "yes" ; then
1037   clock_monotonic="no"
1038 fi
1039 if test "$clock_gettime" = "yes" ; then
1040   cat > $TMPC << EOF
1041 #include <stdio.h>
1042 #include <time.h>
1043 int main(int argc, char **argv)
1044 {
1045   return clock_gettime(CLOCK_MONOTONIC, NULL);
1046 }
1047 EOF
1048   if compile_prog "" "$LIBS" "clock monotonic"; then
1049       clock_monotonic="yes"
1050   fi
1051 fi
1052 print_config "CLOCK_MONOTONIC" "$clock_monotonic"
1053
1054 ##########################################
1055 # CLOCK_MONOTONIC_RAW probe
1056 if test "$clock_monotonic_raw" != "yes" ; then
1057   clock_monotonic_raw="no"
1058 fi
1059 if test "$clock_gettime" = "yes" ; then
1060   cat > $TMPC << EOF
1061 #include <stdio.h>
1062 #include <time.h>
1063 int main(int argc, char **argv)
1064 {
1065   return clock_gettime(CLOCK_MONOTONIC_RAW, NULL);
1066 }
1067 EOF
1068   if compile_prog "" "$LIBS" "clock monotonic"; then
1069       clock_monotonic_raw="yes"
1070   fi
1071 fi
1072 print_config "CLOCK_MONOTONIC_RAW" "$clock_monotonic_raw"
1073
1074 ##########################################
1075 # CLOCK_MONOTONIC_PRECISE probe
1076 if test "$clock_monotonic_precise" != "yes" ; then
1077   clock_monotonic_precise="no"
1078 fi
1079 if test "$clock_gettime" = "yes" ; then
1080   cat > $TMPC << EOF
1081 #include <stdio.h>
1082 #include <time.h>
1083 int main(int argc, char **argv)
1084 {
1085   return clock_gettime(CLOCK_MONOTONIC_PRECISE, NULL);
1086 }
1087 EOF
1088   if compile_prog "" "$LIBS" "clock monotonic precise"; then
1089       clock_monotonic_precise="yes"
1090   fi
1091 fi
1092 print_config "CLOCK_MONOTONIC_PRECISE" "$clock_monotonic_precise"
1093
1094 ##########################################
1095 # clockid_t probe
1096 if test "$clockid_t" != "yes" ; then
1097   clockid_t="no"
1098 fi
1099 cat > $TMPC << EOF
1100 #include <time.h>
1101 #include <string.h>
1102 int main(int argc, char **argv)
1103 {
1104   volatile clockid_t cid;
1105   memset((void*)&cid, 0, sizeof(cid));
1106   return 0;
1107 }
1108 EOF
1109 if compile_prog "" "$LIBS" "clockid_t"; then
1110   clockid_t="yes"
1111 fi
1112 print_config "clockid_t" "$clockid_t"
1113
1114 ##########################################
1115 # gettimeofday() probe
1116 if test "$gettimeofday" != "yes" ; then
1117   gettimeofday="no"
1118 fi
1119 cat > $TMPC << EOF
1120 #include <sys/time.h>
1121 #include <stdio.h>
1122 int main(int argc, char **argv)
1123 {
1124   struct timeval tv;
1125   return gettimeofday(&tv, NULL);
1126 }
1127 EOF
1128 if compile_prog "" "" "gettimeofday"; then
1129     gettimeofday="yes"
1130 fi
1131 print_config "gettimeofday" "$gettimeofday"
1132
1133 ##########################################
1134 # fdatasync() probe
1135 if test "$fdatasync" != "yes" ; then
1136   fdatasync="no"
1137 fi
1138 cat > $TMPC << EOF
1139 #include <stdio.h>
1140 #include <unistd.h>
1141 int main(int argc, char **argv)
1142 {
1143   return fdatasync(0);
1144 }
1145 EOF
1146 if compile_prog "" "" "fdatasync"; then
1147   fdatasync="yes"
1148 fi
1149 print_config "fdatasync" "$fdatasync"
1150
1151 ##########################################
1152 # pipe() probe
1153 if test "$pipe" != "yes" ; then
1154   pipe="no"
1155 fi
1156 cat > $TMPC << EOF
1157 #include <unistd.h>
1158 int main(int argc, char **argv)
1159 {
1160   int fd[2];
1161   return pipe(fd);
1162 }
1163 EOF
1164 if compile_prog "" "" "pipe"; then
1165   pipe="yes"
1166 fi
1167 print_config "pipe()" "$pipe"
1168
1169 ##########################################
1170 # pipe2() probe
1171 if test "$pipe2" != "yes" ; then
1172   pipe2="no"
1173 fi
1174 cat > $TMPC << EOF
1175 #include <unistd.h>
1176 int main(int argc, char **argv)
1177 {
1178   int fd[2];
1179   return pipe2(fd, 0);
1180 }
1181 EOF
1182 if compile_prog "" "" "pipe2"; then
1183   pipe2="yes"
1184 fi
1185 print_config "pipe2()" "$pipe2"
1186
1187 ##########################################
1188 # pread() probe
1189 if test "$pread" != "yes" ; then
1190   pread="no"
1191 fi
1192 cat > $TMPC << EOF
1193 #include <unistd.h>
1194 int main(int argc, char **argv)
1195 {
1196   return pread(0, NULL, 0, 0);
1197 }
1198 EOF
1199 if compile_prog "" "" "pread"; then
1200   pread="yes"
1201 fi
1202 print_config "pread()" "$pread"
1203
1204 ##########################################
1205 # sync_file_range() probe
1206 if test "$sync_file_range" != "yes" ; then
1207   sync_file_range="no"
1208 fi
1209 cat > $TMPC << EOF
1210 #include <stdio.h>
1211 #include <unistd.h>
1212 #include <fcntl.h>
1213 #include <linux/fs.h>
1214 int main(int argc, char **argv)
1215 {
1216   unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
1217                         SYNC_FILE_RANGE_WAIT_AFTER;
1218   return sync_file_range(0, 0, 0, flags);
1219 }
1220 EOF
1221 if compile_prog "" "" "sync_file_range"; then
1222   sync_file_range="yes"
1223 fi
1224 print_config "sync_file_range" "$sync_file_range"
1225
1226 ##########################################
1227 # ext4 move extent probe
1228 if test "$ext4_me" != "yes" ; then
1229   ext4_me="no"
1230 fi
1231 cat > $TMPC << EOF
1232 #include <fcntl.h>
1233 #include <sys/ioctl.h>
1234 int main(int argc, char **argv)
1235 {
1236   struct move_extent me;
1237   return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
1238 }
1239 EOF
1240 if compile_prog "" "" "ext4 move extent" ; then
1241   ext4_me="yes"
1242 elif test $targetos = "Linux" ; then
1243   # On Linux, just default to it on and let it error at runtime if we really
1244   # don't have it. None of my updated systems have it defined, but it does
1245   # work. Takes a while to bubble back.
1246   ext4_me="yes"
1247 fi
1248 print_config "EXT4 move extent" "$ext4_me"
1249
1250 ##########################################
1251 # splice probe
1252 if test "$linux_splice" != "yes" ; then
1253   linux_splice="no"
1254 fi
1255 cat > $TMPC << EOF
1256 #include <stdio.h>
1257 #include <fcntl.h>
1258 int main(int argc, char **argv)
1259 {
1260   return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
1261 }
1262 EOF
1263 if compile_prog "" "" "linux splice"; then
1264   linux_splice="yes"
1265 fi
1266 print_config "Linux splice(2)" "$linux_splice"
1267
1268 ##########################################
1269 # GUASI probe
1270 if test "$guasi" != "yes" ; then
1271   guasi="no"
1272 fi
1273 cat > $TMPC << EOF
1274 #include <guasi.h>
1275 #include <guasi_syscalls.h>
1276 int main(int argc, char **argv)
1277 {
1278   guasi_t ctx = guasi_create(0, 0, 0);
1279   return 0;
1280 }
1281 EOF
1282 if compile_prog "" "" "guasi"; then
1283   guasi="yes"
1284 fi
1285 print_config "GUASI" "$guasi"
1286
1287 ##########################################
1288 # libnuma probe
1289 if test "$libnuma" != "yes" ; then
1290   libnuma="no"
1291 fi
1292 cat > $TMPC << EOF
1293 #include <numa.h>
1294 int main(int argc, char **argv)
1295 {
1296   return numa_available();
1297 }
1298 EOF
1299 if test "$disable_numa" != "yes"  && compile_prog "" "-lnuma" "libnuma"; then
1300   libnuma="yes"
1301   LIBS="-lnuma $LIBS"
1302 fi
1303 print_config "libnuma" "$libnuma"
1304
1305 ##########################################
1306 # libnuma 2.x version API, initialize with "no" only if $libnuma is set to "yes"
1307 if test "$libnuma" = "yes" ; then
1308 libnuma_v2="no"
1309 cat > $TMPC << EOF
1310 #include <numa.h>
1311 int main(int argc, char **argv)
1312 {
1313   struct bitmask *mask = numa_parse_nodestring(NULL);
1314   return mask->size == 0;
1315 }
1316 EOF
1317 if compile_prog "" "" "libnuma api"; then
1318   libnuma_v2="yes"
1319 fi
1320 print_config "libnuma v2" "$libnuma_v2"
1321 fi
1322
1323 ##########################################
1324 # strsep() probe
1325 if test "$strsep" != "yes" ; then
1326   strsep="no"
1327 fi
1328 cat > $TMPC << EOF
1329 #include <string.h>
1330 int main(int argc, char **argv)
1331 {
1332   static char *string = "This is a string";
1333   strsep(&string, "needle");
1334   return 0;
1335 }
1336 EOF
1337 if compile_prog "" "" "strsep"; then
1338   strsep="yes"
1339 fi
1340 print_config "strsep" "$strsep"
1341
1342 ##########################################
1343 # strcasestr() probe
1344 if test "$strcasestr" != "yes" ; then
1345   strcasestr="no"
1346 fi
1347 cat > $TMPC << EOF
1348 #include <string.h>
1349 int main(int argc, char **argv)
1350 {
1351   return strcasestr(argv[0], argv[1]) != NULL;
1352 }
1353 EOF
1354 if compile_prog "" "" "strcasestr"; then
1355   strcasestr="yes"
1356 fi
1357 print_config "strcasestr" "$strcasestr"
1358
1359 ##########################################
1360 # strlcat() probe
1361 if test "$strlcat" != "yes" ; then
1362   strlcat="no"
1363 fi
1364 cat > $TMPC << EOF
1365 #include <string.h>
1366 int main(int argc, char **argv)
1367 {
1368   static char dst[64];
1369   static char *string = "This is a string";
1370   memset(dst, 0, sizeof(dst));
1371   strlcat(dst, string, sizeof(dst));
1372   return 0;
1373 }
1374 EOF
1375 if compile_prog "" "" "strlcat"; then
1376   strlcat="yes"
1377 fi
1378 print_config "strlcat" "$strlcat"
1379
1380 ##########################################
1381 # getopt_long_only() probe
1382 if test "$getopt_long_only" != "yes" ; then
1383   getopt_long_only="no"
1384 fi
1385 cat > $TMPC << EOF
1386 #include <unistd.h>
1387 #include <stdio.h>
1388 #include <getopt.h>
1389 int main(int argc, char **argv)
1390 {
1391   int c = getopt_long_only(argc, argv, "", NULL, NULL);
1392   return c;
1393 }
1394 EOF
1395 if compile_prog "" "" "getopt_long_only"; then
1396   getopt_long_only="yes"
1397 fi
1398 print_config "getopt_long_only()" "$getopt_long_only"
1399
1400 ##########################################
1401 # inet_aton() probe
1402 if test "$inet_aton" != "yes" ; then
1403   inet_aton="no"
1404 fi
1405 cat > $TMPC << EOF
1406 #ifdef _WIN32
1407 #include <winsock2.h>
1408 #else
1409 #include <sys/socket.h>
1410 #include <arpa/inet.h>
1411 #endif
1412 #include <stdio.h>
1413 int main(int argc, char **argv)
1414 {
1415   struct in_addr in;
1416   return inet_aton(NULL, &in);
1417 }
1418 EOF
1419 if compile_prog "" "" "inet_aton"; then
1420   inet_aton="yes"
1421 fi
1422 print_config "inet_aton" "$inet_aton"
1423
1424 ##########################################
1425 # socklen_t probe
1426 if test "$socklen_t" != "yes" ; then
1427   socklen_t="no"
1428 fi
1429 cat > $TMPC << EOF
1430 #ifdef _WIN32
1431 #include <winsock2.h>
1432 #include <ws2tcpip.h>
1433 #else
1434 #include <sys/socket.h>
1435 #endif
1436 int main(int argc, char **argv)
1437 {
1438   socklen_t len = 0;
1439   return len;
1440 }
1441 EOF
1442 if compile_prog "" "" "socklen_t"; then
1443   socklen_t="yes"
1444 fi
1445 print_config "socklen_t" "$socklen_t"
1446
1447 ##########################################
1448 # Whether or not __thread is supported for TLS
1449 if test "$tls_thread" != "yes" ; then
1450   tls_thread="no"
1451 fi
1452 cat > $TMPC << EOF
1453 #include <stdio.h>
1454 static __thread int ret;
1455 int main(int argc, char **argv)
1456 {
1457   return ret;
1458 }
1459 EOF
1460 if compile_prog "" "" "__thread"; then
1461   tls_thread="yes"
1462 fi
1463 print_config "__thread" "$tls_thread"
1464
1465 ##########################################
1466 # Check if we have required gtk/glib support for gfio
1467 if test "$gfio" != "yes" ; then
1468   gfio="no"
1469 fi
1470 if test "$gfio_check" = "yes" ; then
1471   cat > $TMPC << EOF
1472 #include <glib.h>
1473 #include <cairo.h>
1474 #include <gtk/gtk.h>
1475 int main(void)
1476 {
1477   gdk_threads_enter();
1478   gdk_threads_leave();
1479
1480   return GTK_CHECK_VERSION(2, 18, 0) ? 0 : 1; /* 0 on success */
1481 }
1482 EOF
1483 GTK_CFLAGS=$(${cross_prefix}pkg-config --cflags gtk+-2.0 gthread-2.0)
1484 ORG_LDFLAGS=$LDFLAGS
1485 LDFLAGS=$(echo $LDFLAGS | sed s/"-static"//g)
1486 if test "$?" != "0" ; then
1487   echo "configure: gtk and gthread not found"
1488   exit 1
1489 fi
1490 GTK_LIBS=$(${cross_prefix}pkg-config --libs gtk+-2.0 gthread-2.0)
1491 if test "$?" != "0" ; then
1492   echo "configure: gtk and gthread not found"
1493   exit 1
1494 fi
1495 if ! ${cross_prefix}pkg-config --atleast-version 2.18.0 gtk+-2.0; then
1496   echo "GTK found, but need version 2.18 or higher"
1497   gfio="no"
1498 else
1499   if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
1500     gfio="yes"
1501     GFIO_LIBS="$LIBS $GTK_LIBS"
1502     CFLAGS="$CFLAGS $GTK_CFLAGS"
1503   else
1504     echo "Please install gtk and gdk libraries"
1505     gfio="no"
1506   fi
1507 fi
1508 LDFLAGS=$ORG_LDFLAGS
1509 fi
1510
1511 if test "$gfio_check" = "yes" ; then
1512   print_config "gtk 2.18 or higher" "$gfio"
1513 fi
1514
1515 ##########################################
1516 # Check whether we have getrusage(RUSAGE_THREAD)
1517 if test "$rusage_thread" != "yes" ; then
1518   rusage_thread="no"
1519 fi
1520 cat > $TMPC << EOF
1521 #include <sys/time.h>
1522 #include <sys/resource.h>
1523 int main(int argc, char **argv)
1524 {
1525   struct rusage ru;
1526   getrusage(RUSAGE_THREAD, &ru);
1527   return 0;
1528 }
1529 EOF
1530 if compile_prog "" "" "RUSAGE_THREAD"; then
1531   rusage_thread="yes"
1532 fi
1533 print_config "RUSAGE_THREAD" "$rusage_thread"
1534
1535 ##########################################
1536 # Check whether we have SCHED_IDLE
1537 if test "$sched_idle" != "yes" ; then
1538   sched_idle="no"
1539 fi
1540 cat > $TMPC << EOF
1541 #include <sched.h>
1542 int main(int argc, char **argv)
1543 {
1544   struct sched_param p;
1545   return sched_setscheduler(0, SCHED_IDLE, &p);
1546 }
1547 EOF
1548 if compile_prog "" "" "SCHED_IDLE"; then
1549   sched_idle="yes"
1550 fi
1551 print_config "SCHED_IDLE" "$sched_idle"
1552
1553 ##########################################
1554 # Check whether we have TCP_NODELAY
1555 if test "$tcp_nodelay" != "yes" ; then
1556   tcp_nodelay="no"
1557 fi
1558 cat > $TMPC << EOF
1559 #ifdef _WIN32
1560 #include <winsock2.h>
1561 #else
1562 #include <stdio.h>
1563 #include <sys/types.h>
1564 #include <sys/socket.h>
1565 #include <netinet/tcp.h>
1566 #endif
1567 int main(int argc, char **argv)
1568 {
1569   return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
1570 }
1571 EOF
1572 if compile_prog "" "" "TCP_NODELAY"; then
1573   tcp_nodelay="yes"
1574 elif compile_prog "" "-lws2_32" "TCP_NODELAY"; then
1575   tcp_nodelay="yes"
1576   LIBS="$LIBS -lws2_32"
1577 fi
1578 print_config "TCP_NODELAY" "$tcp_nodelay"
1579
1580 ##########################################
1581 # Check whether we have SO_SNDBUF
1582 if test "$window_size" != "yes" ; then
1583   window_size="no"
1584 fi
1585 cat > $TMPC << EOF
1586 #ifdef _WIN32
1587 #include <winsock2.h>
1588 #else
1589 #include <stdio.h>
1590 #include <sys/types.h>
1591 #include <sys/socket.h>
1592 #include <netinet/tcp.h>
1593 #endif
1594 int main(int argc, char **argv)
1595 {
1596   setsockopt(0, SOL_SOCKET, SO_SNDBUF, NULL, 0);
1597   setsockopt(0, SOL_SOCKET, SO_RCVBUF, NULL, 0);
1598 }
1599 EOF
1600 if compile_prog "" "" "SO_SNDBUF"; then
1601   window_size="yes"
1602 elif compile_prog "" "-lws2_32" "SO_SNDBUF"; then
1603   window_size="yes"
1604   LIBS="$LIBS -lws2_32"
1605 fi
1606 print_config "Net engine window_size" "$window_size"
1607
1608 ##########################################
1609 # Check whether we have TCP_MAXSEG
1610 if test "$mss" != "yes" ; then
1611   mss="no"
1612 fi
1613 cat > $TMPC << EOF
1614 #ifdef _WIN32
1615 #include <winsock2.h>
1616 #else
1617 #include <stdio.h>
1618 #include <sys/types.h>
1619 #include <sys/socket.h>
1620 #include <netinet/tcp.h>
1621 #include <arpa/inet.h>
1622 #include <netinet/in.h>
1623 #endif
1624 int main(int argc, char **argv)
1625 {
1626   return setsockopt(0, IPPROTO_TCP, TCP_MAXSEG, NULL, 0);
1627 }
1628 EOF
1629 if compile_prog "" "" "TCP_MAXSEG"; then
1630   mss="yes"
1631 elif compile_prog "" "-lws2_32" "TCP_MAXSEG"; then
1632   mss="yes"
1633   LIBS="$LIBS -lws2_32"
1634 fi
1635 print_config "TCP_MAXSEG" "$mss"
1636
1637 ##########################################
1638 # Check whether we have RLIMIT_MEMLOCK
1639 if test "$rlimit_memlock" != "yes" ; then
1640   rlimit_memlock="no"
1641 fi
1642 cat > $TMPC << EOF
1643 #include <sys/time.h>
1644 #include <sys/resource.h>
1645 int main(int argc, char **argv)
1646 {
1647   struct rlimit rl;
1648   return getrlimit(RLIMIT_MEMLOCK, &rl);
1649 }
1650 EOF
1651 if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1652   rlimit_memlock="yes"
1653 fi
1654 print_config "RLIMIT_MEMLOCK" "$rlimit_memlock"
1655
1656 ##########################################
1657 # Check whether we have pwritev/preadv
1658 if test "$pwritev" != "yes" ; then
1659   pwritev="no"
1660 fi
1661 cat > $TMPC << EOF
1662 #include <stdio.h>
1663 #include <sys/uio.h>
1664 int main(int argc, char **argv)
1665 {
1666   return pwritev(0, NULL, 1, 0) + preadv(0, NULL, 1, 0);
1667 }
1668 EOF
1669 if compile_prog "" "" "pwritev"; then
1670   pwritev="yes"
1671 fi
1672 print_config "pwritev/preadv" "$pwritev"
1673
1674 ##########################################
1675 # Check whether we have pwritev2/preadv2
1676 if test "$pwritev2" != "yes" ; then
1677   pwritev2="no"
1678 fi
1679 cat > $TMPC << EOF
1680 #include <stdio.h>
1681 #include <sys/uio.h>
1682 int main(int argc, char **argv)
1683 {
1684   return pwritev2(0, NULL, 1, 0, 0) + preadv2(0, NULL, 1, 0, 0);
1685 }
1686 EOF
1687 if compile_prog "" "" "pwritev2"; then
1688   pwritev2="yes"
1689 fi
1690 print_config "pwritev2/preadv2" "$pwritev2"
1691
1692 ##########################################
1693 # Check whether we have the required functions for ipv6
1694 if test "$ipv6" != "yes" ; then
1695   ipv6="no"
1696 fi
1697 cat > $TMPC << EOF
1698 #ifdef _WIN32
1699 #include <winsock2.h>
1700 #include <ws2tcpip.h>
1701 #else
1702 #include <sys/types.h>
1703 #include <sys/socket.h>
1704 #include <netinet/in.h>
1705 #include <netdb.h>
1706 #endif
1707 #include <stdio.h>
1708 int main(int argc, char **argv)
1709 {
1710   struct addrinfo hints;
1711   struct in6_addr addr;
1712   int ret;
1713
1714   ret = getaddrinfo(NULL, NULL, &hints, NULL);
1715   freeaddrinfo(NULL);
1716   printf("%s\n", gai_strerror(ret));
1717   addr = in6addr_any;
1718   return 0;
1719 }
1720 EOF
1721 if compile_prog "" "" "ipv6"; then
1722   ipv6="yes"
1723 fi
1724 print_config "IPv6 helpers" "$ipv6"
1725
1726 ##########################################
1727 # check for http
1728 if test "$http" != "yes" ; then
1729   http="no"
1730 fi
1731 # check for openssl >= 1.1.0, which uses an opaque HMAC_CTX pointer
1732 cat > $TMPC << EOF
1733 #include <curl/curl.h>
1734 #include <openssl/hmac.h>
1735
1736 int main(int argc, char **argv)
1737 {
1738   CURL *curl;
1739   HMAC_CTX *ctx;
1740
1741   curl = curl_easy_init();
1742   curl_easy_cleanup(curl);
1743
1744   ctx = HMAC_CTX_new();
1745   HMAC_CTX_reset(ctx);
1746   HMAC_CTX_free(ctx);
1747   return 0;
1748 }
1749 EOF
1750 # openssl < 1.1.0 uses the HMAC_CTX type directly
1751 cat > $TMPC2 << EOF
1752 #include <curl/curl.h>
1753 #include <openssl/hmac.h>
1754
1755 int main(int argc, char **argv)
1756 {
1757   CURL *curl;
1758   HMAC_CTX ctx;
1759
1760   curl = curl_easy_init();
1761   curl_easy_cleanup(curl);
1762
1763   HMAC_CTX_init(&ctx);
1764   HMAC_CTX_cleanup(&ctx);
1765   return 0;
1766 }
1767 EOF
1768 if test "$disable_http" != "yes"; then
1769   HTTP_LIBS="-lcurl -lssl -lcrypto"
1770   if compile_prog "" "$HTTP_LIBS" "curl-new-ssl"; then
1771     output_sym "CONFIG_HAVE_OPAQUE_HMAC_CTX"
1772     http="yes"
1773     LIBS="$HTTP_LIBS $LIBS"
1774   elif mv $TMPC2 $TMPC && compile_prog "" "$HTTP_LIBS" "curl-old-ssl"; then
1775     http="yes"
1776     LIBS="$HTTP_LIBS $LIBS"
1777   fi
1778 fi
1779 print_config "http engine" "$http"
1780
1781 ##########################################
1782 # check for rados
1783 if test "$rados" != "yes" ; then
1784   rados="no"
1785 fi
1786 cat > $TMPC << EOF
1787 #include <rados/librados.h>
1788
1789 int main(int argc, char **argv)
1790 {
1791   rados_t cluster;
1792   rados_ioctx_t io_ctx;
1793   const char cluster_name[] = "ceph";
1794   const char user_name[] = "client.admin";
1795   const char pool[] = "rados";
1796
1797   /* The rados_create2 signature required was only introduced in ceph 0.65 */
1798   rados_create2(&cluster, cluster_name, user_name, 0);
1799   rados_ioctx_create(cluster, pool, &io_ctx);
1800
1801   return 0;
1802 }
1803 EOF
1804 if test "$disable_rados" != "yes"  && compile_prog "" "-lrados" "rados"; then
1805   LIBS="-lrados $LIBS"
1806   rados="yes"
1807 fi
1808 print_config "Rados engine" "$rados"
1809
1810 ##########################################
1811 # check for rbd
1812 if test "$rbd" != "yes" ; then
1813   rbd="no"
1814 fi
1815 cat > $TMPC << EOF
1816 #include <rbd/librbd.h>
1817
1818 int main(int argc, char **argv)
1819 {
1820   rados_t cluster;
1821   rados_ioctx_t io_ctx;
1822   const char cluster_name[] = "ceph";
1823   const char user_name[] = "client.admin";
1824   const char pool[] = "rbd";
1825   int major, minor, extra;
1826
1827   rbd_version(&major, &minor, &extra);
1828   /* The rados_create2 signature required was only introduced in ceph 0.65 */
1829   rados_create2(&cluster, cluster_name, user_name, 0);
1830   rados_ioctx_create(cluster, pool, &io_ctx);
1831
1832   return 0;
1833 }
1834 EOF
1835 if test "$disable_rbd" != "yes"  && compile_prog "" "-lrbd -lrados" "rbd"; then
1836   LIBS="-lrbd -lrados $LIBS"
1837   rbd="yes"
1838 fi
1839 print_config "Rados Block Device engine" "$rbd"
1840
1841 ##########################################
1842 # check for rbd_poll
1843 if test "$rbd_poll" != "yes" ; then
1844   rbd_poll="no"
1845 fi
1846 if test "$rbd" = "yes"; then
1847 cat > $TMPC << EOF
1848 #include <rbd/librbd.h>
1849 #include <sys/eventfd.h>
1850
1851 int main(int argc, char **argv)
1852 {
1853   rbd_image_t image;
1854   rbd_completion_t comp;
1855
1856   int fd = eventfd(0, EFD_NONBLOCK);
1857   rbd_set_image_notification(image, fd, EVENT_TYPE_EVENTFD);
1858   rbd_poll_io_events(image, comp, 1);
1859
1860   return 0;
1861 }
1862 EOF
1863 if compile_prog "" "-lrbd -lrados" "rbd"; then
1864   rbd_poll="yes"
1865 fi
1866 print_config "rbd_poll" "$rbd_poll"
1867 fi
1868
1869 ##########################################
1870 # check for rbd_invalidate_cache()
1871 if test "$rbd_inval" != "yes" ; then
1872   rbd_inval="no"
1873 fi
1874 if test "$rbd" = "yes"; then
1875 cat > $TMPC << EOF
1876 #include <rbd/librbd.h>
1877
1878 int main(int argc, char **argv)
1879 {
1880   rbd_image_t image;
1881
1882   return rbd_invalidate_cache(image);
1883 }
1884 EOF
1885 if compile_prog "" "-lrbd -lrados" "rbd"; then
1886   rbd_inval="yes"
1887 fi
1888 print_config "rbd_invalidate_cache" "$rbd_inval"
1889 fi
1890
1891 ##########################################
1892 # Check whether we have setvbuf
1893 if test "$setvbuf" != "yes" ; then
1894   setvbuf="no"
1895 fi
1896 cat > $TMPC << EOF
1897 #include <stdio.h>
1898 int main(int argc, char **argv)
1899 {
1900   FILE *f = NULL;
1901   char buf[80];
1902   setvbuf(f, buf, _IOFBF, sizeof(buf));
1903   return 0;
1904 }
1905 EOF
1906 if compile_prog "" "" "setvbuf"; then
1907   setvbuf="yes"
1908 fi
1909 print_config "setvbuf" "$setvbuf"
1910
1911 ##########################################
1912 # check for gfapi
1913 if test "$gfapi" != "yes" ; then
1914   gfapi="no"
1915 fi
1916 cat > $TMPC << EOF
1917 #include <glusterfs/api/glfs.h>
1918
1919 int main(int argc, char **argv)
1920 {
1921   glfs_t *g = glfs_new("foo");
1922
1923   return 0;
1924 }
1925 EOF
1926 if test "$disable_gfapi" != "yes"  && compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1927   LIBS="-lgfapi -lglusterfs $LIBS"
1928   gfapi="yes"
1929 fi
1930 print_config "Gluster API engine" "$gfapi"
1931
1932 ##########################################
1933 # check for gfapi fadvise support, initialize with "no" only if $gfapi is set to "yes"
1934 if test "$gfapi" = "yes" ; then
1935 gf_fadvise="no"
1936 cat > $TMPC << EOF
1937 #include <glusterfs/api/glfs.h>
1938
1939 int main(int argc, char **argv)
1940 {
1941   struct glfs_fd *fd;
1942   int ret = glfs_fadvise(fd, 0, 0, 1);
1943
1944   return 0;
1945 }
1946 EOF
1947 if compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1948   gf_fadvise="yes"
1949 fi
1950 print_config "Gluster API use fadvise" "$gf_fadvise"
1951 fi
1952
1953 ##########################################
1954 # check for newer gfapi
1955 if test "$gfapi" = "yes" ; then
1956 gf_new="no"
1957 cat > $TMPC << EOF
1958 #include <glusterfs/api/glfs.h>
1959
1960 int main(int argc, char **argv)
1961 {
1962   return glfs_fsync(NULL, NULL, NULL) && glfs_ftruncate(NULL, 0, NULL, NULL);
1963 }
1964 EOF
1965 if compile_prog "" "-lgfapi -lglusterfs" "gf new api"; then
1966   gf_new="yes"
1967 fi
1968 print_config "Gluster new API" "$gf_new"
1969 fi
1970
1971 ##########################################
1972 # check for gfapi trim support
1973 if test "$gf_trim" != "yes" ; then
1974   gf_trim="no"
1975 fi
1976 if test "$gfapi" = "yes" ; then
1977 cat > $TMPC << EOF
1978 #include <glusterfs/api/glfs.h>
1979
1980 int main(int argc, char **argv)
1981 {
1982   return glfs_discard_async(NULL, 0, 0);
1983 }
1984 EOF
1985 if compile_prog "" "-lgfapi -lglusterfs" "gf trim"; then
1986   gf_trim="yes"
1987 fi
1988 print_config "Gluster API trim support" "$gf_trim"
1989 fi
1990
1991 ##########################################
1992 # Check if we support stckf on s390
1993 if test "$s390_z196_facilities" != "yes" ; then
1994   s390_z196_facilities="no"
1995 fi
1996 cat > $TMPC << EOF
1997 #define STFLE_BITS_Z196 45 /* various z196 facilities ... */
1998 int main(int argc, char **argv)
1999 {
2000     /* We want just 1 double word to be returned.  */
2001     register unsigned long reg0 asm("0") = 0;
2002     unsigned long stfle_bits;
2003     asm volatile(".machine push"        "\n\t"
2004                  ".machine \"z9-109\""  "\n\t"
2005                  "stfle %0"             "\n\t"
2006                  ".machine pop"         "\n"
2007                  : "=QS" (stfle_bits), "+d" (reg0)
2008                  : : "cc");
2009
2010     if ((stfle_bits & (1UL << (63 - STFLE_BITS_Z196))) != 0)
2011       return 0;
2012     else
2013       return -1;
2014 }
2015 EOF
2016 if compile_prog "" "" "s390_z196_facilities"; then
2017   $TMPE
2018   if [ $? -eq 0 ]; then
2019         s390_z196_facilities="yes"
2020   fi
2021 fi
2022 print_config "s390_z196_facilities" "$s390_z196_facilities"
2023
2024 ##########################################
2025 # Check if we have required environment variables configured for libhdfs
2026 if test "$libhdfs" = "yes" ; then
2027   hdfs_conf_error=0
2028   if test "$JAVA_HOME" = "" ; then
2029     echo "configure: JAVA_HOME should be defined to jdk/jvm path"
2030     hdfs_conf_error=1
2031   fi
2032   if test "$FIO_LIBHDFS_INCLUDE" = "" ; then
2033     echo "configure: FIO_LIBHDFS_INCLUDE should be defined to libhdfs inlude path"
2034     hdfs_conf_error=1
2035   fi
2036   if test "$FIO_LIBHDFS_LIB" = "" ; then
2037     echo "configure: FIO_LIBHDFS_LIB should be defined to libhdfs library path"
2038     hdfs_conf_error=1
2039   fi
2040   if test "$hdfs_conf_error" = "1" ; then
2041     exit 1
2042   fi
2043   FIO_HDFS_CPU=$cpu
2044   if test "$FIO_HDFS_CPU" = "x86_64" ; then
2045     FIO_HDFS_CPU="amd64"
2046   fi
2047 fi
2048 print_config "HDFS engine" "$libhdfs"
2049
2050 ##########################################
2051 # Check whether we have MTD
2052 if test "$mtd" != "yes" ; then
2053   mtd="no"
2054 fi
2055 cat > $TMPC << EOF
2056 #include <string.h>
2057 #include <mtd/mtd-user.h>
2058 #include <sys/ioctl.h>
2059 int main(int argc, char **argv)
2060 {
2061   struct mtd_write_req ops;
2062   struct mtd_info_user info;
2063   memset(&ops, 0, sizeof(ops));
2064   info.type = MTD_MLCNANDFLASH;
2065   return ioctl(0, MEMGETINFO, &info);
2066 }
2067 EOF
2068 if compile_prog "" "" "mtd"; then
2069   mtd="yes"
2070 fi
2071 print_config "MTD" "$mtd"
2072
2073 ##########################################
2074 # Check whether we have libpmem
2075 if test "$libpmem" != "yes" ; then
2076   libpmem="no"
2077 fi
2078 cat > $TMPC << EOF
2079 #include <libpmem.h>
2080 int main(int argc, char **argv)
2081 {
2082   int rc;
2083   rc = pmem_is_pmem(0, 0);
2084   return 0;
2085 }
2086 EOF
2087 if compile_prog "" "-lpmem" "libpmem"; then
2088   libpmem="yes"
2089   LIBS="-lpmem $LIBS"
2090 fi
2091 print_config "libpmem" "$libpmem"
2092
2093 ##########################################
2094 # Check whether we have libpmemblk
2095 # libpmem is a prerequisite
2096 if test "$libpmemblk" != "yes" ; then
2097   libpmemblk="no"
2098 fi
2099 if test "$libpmem" = "yes"; then
2100   cat > $TMPC << EOF
2101 #include <libpmemblk.h>
2102 int main(int argc, char **argv)
2103 {
2104   PMEMblkpool *pbp;
2105   pbp = pmemblk_open("", 0);
2106   return 0;
2107 }
2108 EOF
2109   if compile_prog "" "-lpmemblk" "libpmemblk"; then
2110     libpmemblk="yes"
2111     LIBS="-lpmemblk $LIBS"
2112   fi
2113 fi
2114 print_config "libpmemblk" "$libpmemblk"
2115
2116 # Choose the ioengines
2117 if test "$libpmem" = "yes" && test "$disable_pmem" = "no"; then
2118   pmem="yes"
2119   devdax="yes"
2120   if test "$libpmemblk" = "yes"; then
2121     pmemblk="yes"
2122   fi
2123 fi
2124
2125 ##########################################
2126 # Report whether pmemblk engine is enabled
2127 print_config "PMDK pmemblk engine" "$pmemblk"
2128
2129 ##########################################
2130 # Report whether dev-dax engine is enabled
2131 print_config "PMDK dev-dax engine" "$devdax"
2132
2133 ##########################################
2134 # Report whether libpmem engine is enabled
2135 print_config "PMDK libpmem engine" "$pmem"
2136
2137 ##########################################
2138 # Check whether we support DDN's IME
2139 if test "$libime" != "yes" ; then
2140   libime="no"
2141 fi
2142 cat > $TMPC << EOF
2143 #include <ime_native.h>
2144 int main(int argc, char **argv)
2145 {
2146   int rc;
2147   ime_native_init();
2148   rc = ime_native_finalize();
2149   return 0;
2150 }
2151 EOF
2152 if compile_prog "-I${ime_path}/include" "-L${ime_path}/lib -lim_client" "libime"; then
2153   libime="yes"
2154   CFLAGS="-I${ime_path}/include $CFLAGS"
2155   LDFLAGS="-Wl,-rpath ${ime_path}/lib -L${ime_path}/lib $LDFLAGS"
2156   LIBS="-lim_client $LIBS"
2157 fi
2158 print_config "DDN's Infinite Memory Engine" "$libime"
2159
2160 ##########################################
2161 # Check if we have required environment variables configured for libiscsi
2162 if test "$libiscsi" = "yes" ; then
2163   if $(pkg-config --atleast-version=1.9.0 libiscsi); then
2164     libiscsi="yes"
2165     libiscsi_cflags=$(pkg-config --cflags libiscsi)
2166     libiscsi_libs=$(pkg-config --libs libiscsi)
2167   else
2168     if test "$libiscsi" = "yes" ; then
2169       echo "libiscsi" "Install libiscsi >= 1.9.0"
2170     fi
2171     libiscsi="no"
2172   fi
2173 fi
2174 print_config "iscsi engine" "$libiscsi"
2175
2176 ##########################################
2177 # Check if we have libnbd (for NBD support).
2178 minimum_libnbd=0.9.8
2179 if test "$libnbd" = "yes" ; then
2180   if $(pkg-config --atleast-version=$minimum_libnbd libnbd); then
2181     libnbd="yes"
2182     libnbd_cflags=$(pkg-config --cflags libnbd)
2183     libnbd_libs=$(pkg-config --libs libnbd)
2184   else
2185     if test "$libnbd" = "yes" ; then
2186       echo "libnbd" "Install libnbd >= $minimum_libnbd"
2187     fi
2188     libnbd="no"
2189   fi
2190 fi
2191 print_config "NBD engine" "$libnbd"
2192
2193 ##########################################
2194 # Check if we have lex/yacc available
2195 yacc="no"
2196 yacc_is_bison="no"
2197 lex="no"
2198 arith="no"
2199 if test "$disable_lex" = "no" || test -z "$disable_lex" ; then
2200 if test "$targetos" != "SunOS" ; then
2201 LEX=$(which lex 2> /dev/null)
2202 if test -x "$LEX" ; then
2203   lex="yes"
2204 fi
2205 YACC=$(which bison 2> /dev/null)
2206 if test -x "$YACC" ; then
2207   yacc="yes"
2208   yacc_is_bison="yes"
2209 else
2210   YACC=$(which yacc 2> /dev/null)
2211   if test -x "$YACC" ; then
2212     yacc="yes"
2213   fi
2214 fi
2215 if test "$yacc" = "yes" && test "$lex" = "yes" ; then
2216   arith="yes"
2217 fi
2218
2219 if test "$arith" = "yes" ; then
2220 cat > $TMPC << EOF
2221 extern int yywrap(void);
2222
2223 int main(int argc, char **argv)
2224 {
2225   yywrap();
2226   return 0;
2227 }
2228 EOF
2229 if compile_prog "" "-ll" "lex"; then
2230   LIBS="-ll $LIBS"
2231 else
2232   arith="no"
2233 fi
2234 fi
2235 fi
2236 fi
2237
2238 # Check if lex fails using -o
2239 if test "$arith" = "yes" ; then
2240 if test "$force_no_lex_o" = "yes" ; then
2241   lex_use_o="no"
2242 else
2243 $LEX -o lex.yy.c exp/expression-parser.l 2> /dev/null
2244 if test "$?" = "0" ; then
2245   lex_use_o="yes"
2246 else
2247   lex_use_o="no"
2248 fi
2249 fi
2250 fi
2251
2252 print_config "lex/yacc for arithmetic" "$arith"
2253
2254 ##########################################
2255 # Check whether we have setmntent/getmntent
2256 if test "$getmntent" != "yes" ; then
2257   getmntent="no"
2258 fi
2259 cat > $TMPC << EOF
2260 #include <stdio.h>
2261 #include <mntent.h>
2262 int main(int argc, char **argv)
2263 {
2264   FILE *mtab = setmntent(NULL, "r");
2265   struct mntent *mnt = getmntent(mtab);
2266   endmntent(mtab);
2267   return 0;
2268 }
2269 EOF
2270 if compile_prog "" "" "getmntent"; then
2271   getmntent="yes"
2272 fi
2273 print_config "getmntent" "$getmntent"
2274
2275 ##########################################
2276 # Check whether we have getmntinfo
2277 # These are originally added for BSDs, but may also work
2278 # on other operating systems with getmntinfo(3).
2279
2280 # getmntinfo(3) for FreeBSD/DragonFlyBSD/OpenBSD.
2281 # Note that NetBSD needs -Werror to catch warning as error.
2282 if test "$getmntinfo" != "yes" ; then
2283   getmntinfo="no"
2284 fi
2285 cat > $TMPC << EOF
2286 #include <stdio.h>
2287 #include <sys/param.h>
2288 #include <sys/mount.h>
2289 int main(int argc, char **argv)
2290 {
2291   struct statfs *st;
2292   return getmntinfo(&st, MNT_NOWAIT);
2293 }
2294 EOF
2295 if compile_prog "-Werror" "" "getmntinfo"; then
2296   getmntinfo="yes"
2297 fi
2298 print_config "getmntinfo" "$getmntinfo"
2299
2300 # getmntinfo(3) for NetBSD.
2301 if test "$getmntinfo_statvfs" != "yes" ; then
2302   getmntinfo_statvfs="no"
2303 fi
2304 cat > $TMPC << EOF
2305 #include <stdio.h>
2306 #include <sys/statvfs.h>
2307 int main(int argc, char **argv)
2308 {
2309   struct statvfs *st;
2310   return getmntinfo(&st, MNT_NOWAIT);
2311 }
2312 EOF
2313 # Skip the test if the one with statfs arg is detected.
2314 if test "$getmntinfo" != "yes" && compile_prog "-Werror" "" "getmntinfo_statvfs"; then
2315   getmntinfo_statvfs="yes"
2316   print_config "getmntinfo_statvfs" "$getmntinfo_statvfs"
2317 fi
2318
2319 ##########################################
2320 # Check whether we have _Static_assert
2321 if test "$static_assert" != "yes" ; then
2322   static_assert="no"
2323 fi
2324 cat > $TMPC << EOF
2325 #include <assert.h>
2326 #include <stdlib.h>
2327 #include <stddef.h>
2328
2329 struct foo {
2330   int a, b;
2331 };
2332
2333 int main(int argc, char **argv)
2334 {
2335   _Static_assert(offsetof(struct foo, a) == 0 , "Check");
2336   return 0 ;
2337 }
2338 EOF
2339 if compile_prog "" "" "static_assert"; then
2340     static_assert="yes"
2341 fi
2342 print_config "Static Assert" "$static_assert"
2343
2344 ##########################################
2345 # Check whether we have bool / stdbool.h
2346 if test "$have_bool" != "yes" ; then
2347   have_bool="no"
2348 fi
2349 cat > $TMPC << EOF
2350 #include <stdbool.h>
2351 int main(int argc, char **argv)
2352 {
2353   bool var = true;
2354   return var != false;
2355 }
2356 EOF
2357 if compile_prog "" "" "bool"; then
2358   have_bool="yes"
2359 fi
2360 print_config "bool" "$have_bool"
2361
2362 ##########################################
2363 # Check whether we have strndup()
2364 strndup="no"
2365 cat > $TMPC << EOF
2366 #include <string.h>
2367 #include <stdlib.h>
2368 int main(int argc, char **argv)
2369 {
2370   char *res = strndup("test string", 8);
2371
2372   free(res);
2373   return 0;
2374 }
2375 EOF
2376 if compile_prog "" "" "strndup"; then
2377   strndup="yes"
2378 fi
2379 print_config "strndup" "$strndup"
2380
2381 ##########################################
2382 # <valgrind/drd.h> probe
2383 # Note: presence of <valgrind/drd.h> implies that <valgrind/valgrind.h> is
2384 # also available but not the other way around.
2385 if test "$valgrind_dev" != "yes" ; then
2386   valgrind_dev="no"
2387 fi
2388 cat > $TMPC << EOF
2389 #include <valgrind/drd.h>
2390 int main(int argc, char **argv)
2391 {
2392   return 0;
2393 }
2394 EOF
2395 if compile_prog "" "" "valgrind_dev"; then
2396   valgrind_dev="yes"
2397 fi
2398 print_config "Valgrind headers" "$valgrind_dev"
2399
2400 ##########################################
2401 # <linux/blkzoned.h> probe
2402 if test "$linux_blkzoned" != "yes" ; then
2403   linux_blkzoned="no"
2404 fi
2405 cat > $TMPC << EOF
2406 #include <linux/blkzoned.h>
2407 int main(int argc, char **argv)
2408 {
2409   return 0;
2410 }
2411 EOF
2412 if compile_prog "" "" "linux_blkzoned"; then
2413   linux_blkzoned="yes"
2414 fi
2415 print_config "Zoned block device support" "$linux_blkzoned"
2416
2417 ##########################################
2418 # libzbc probe
2419 if test "$libzbc" != "yes" ; then
2420   libzbc="no"
2421 fi
2422 cat > $TMPC << EOF
2423 #include <libzbc/zbc.h>
2424 int main(int argc, char **argv)
2425 {
2426   struct zbc_device *dev = NULL;
2427
2428   return zbc_open("foo=bar", O_RDONLY, &dev);
2429 }
2430 EOF
2431 if compile_prog "" "-lzbc" "libzbc"; then
2432   libzbcvermaj=$(pkg-config --modversion libzbc | sed 's/\.[0-9]*\.[0-9]*//')
2433   if test "$libzbcvermaj" -ge "5" ; then
2434     libzbc="yes"
2435     LIBS="-lzbc $LIBS"
2436   else
2437     print_config "libzbc engine" "Unsupported libzbc version (version 5 or above required)"
2438     libzbc="no"
2439   fi
2440 else
2441   if test "$libzbc" = "yes" ; then
2442       feature_not_found "libzbc" "libzbc or libzbc/zbc.h"
2443   fi
2444   libzbc="no"
2445 fi
2446 print_config "libzbc engine" "$libzbc"
2447
2448 ##########################################
2449 # check march=armv8-a+crc+crypto
2450 if test "$march_armv8_a_crc_crypto" != "yes" ; then
2451   march_armv8_a_crc_crypto="no"
2452 fi
2453 if test "$cpu" = "arm64" ; then
2454   cat > $TMPC <<EOF
2455 #include <arm_acle.h>
2456 #include <arm_neon.h>
2457 #include <sys/auxv.h>
2458
2459 int main(void)
2460 {
2461   /* Can we also do a runtime probe? */
2462 #if __linux__
2463   return getauxval(AT_HWCAP);
2464 #else
2465 # error "Don't know how to do runtime probe for ARM CRC32c"
2466 #endif
2467 }
2468 EOF
2469   if compile_prog "-march=armv8-a+crc+crypto" "" "ARM CRC32c"; then
2470     march_armv8_a_crc_crypto="yes"
2471     CFLAGS="$CFLAGS -march=armv8-a+crc+crypto"
2472     march_set="yes"
2473   fi
2474 fi
2475 print_config "march_armv8_a_crc_crypto" "$march_armv8_a_crc_crypto"
2476
2477 ##########################################
2478 # cuda probe
2479 if test "$cuda" != "yes" ; then
2480   cuda="no"
2481 fi
2482 cat > $TMPC << EOF
2483 #include <cuda.h>
2484 int main(int argc, char **argv)
2485 {
2486   return cuInit(0);
2487 }
2488 EOF
2489 if test "$enable_cuda" = "yes" && compile_prog "" "-lcuda" "cuda"; then
2490   cuda="yes"
2491   LIBS="-lcuda $LIBS"
2492 fi
2493 print_config "cuda" "$cuda"
2494
2495 ##########################################
2496 # check for cc -march=native
2497 build_native="no"
2498 cat > $TMPC << EOF
2499 int main(int argc, char **argv)
2500 {
2501   return 0;
2502 }
2503 EOF
2504 if test "$disable_native" = "no" && test "$disable_opt" != "yes" && \
2505    compile_prog "-march=native" "" "march=native"; then
2506   build_native="yes"
2507 fi
2508 print_config "Build march=native" "$build_native"
2509
2510 ##########################################
2511 # check for -lcunit
2512 if test "$cunit" != "yes" ; then
2513   cunit="no"
2514 fi
2515 cat > $TMPC << EOF
2516 #include <CUnit/CUnit.h>
2517 #include <CUnit/Basic.h>
2518 int main(void)
2519 {
2520   if (CU_initialize_registry() != CUE_SUCCESS)
2521     return CU_get_error();
2522   CU_basic_set_mode(CU_BRM_VERBOSE);
2523   CU_basic_run_tests();
2524   CU_cleanup_registry();
2525   return CU_get_error();
2526 }
2527 EOF
2528 if compile_prog "" "-lcunit" "CUnit"; then
2529   cunit="yes"
2530 fi
2531 print_config "CUnit" "$cunit"
2532
2533 ##########################################
2534 # check for __kernel_rwf_t
2535 __kernel_rwf_t="no"
2536 cat > $TMPC << EOF
2537 #include <linux/fs.h>
2538 int main(int argc, char **argv)
2539 {
2540   __kernel_rwf_t x;
2541   x = 0;
2542   return x;
2543 }
2544 EOF
2545 if compile_prog "" "" "__kernel_rwf_t"; then
2546   __kernel_rwf_t="yes"
2547 fi
2548 print_config "__kernel_rwf_t" "$__kernel_rwf_t"
2549
2550 ##########################################
2551 # check if gcc has -Wimplicit-fallthrough
2552 fallthrough="no"
2553 cat > $TMPC << EOF
2554 int main(int argc, char **argv)
2555 {
2556   return 0;
2557 }
2558 EOF
2559 if compile_prog "-Wimplicit-fallthrough" "" "-Wimplicit-fallthrough"; then
2560   fallthrough="yes"
2561 fi
2562 print_config "-Wimplicit-fallthrough" "$fallthrough"
2563
2564 ##########################################
2565 # check for MADV_HUGEPAGE support
2566 if test "$thp" != "yes" ; then
2567   thp="no"
2568 fi
2569 if test "$esx" != "yes" ; then
2570   cat > $TMPC <<EOF
2571 #include <sys/mman.h>
2572 int main(void)
2573 {
2574   return madvise(0, 0x1000, MADV_HUGEPAGE);
2575 }
2576 EOF
2577   if compile_prog "" "" "thp" ; then
2578     thp=yes
2579   else
2580     if test "$thp" = "yes" ; then
2581       feature_not_found "Transparent Huge Page" ""
2582     fi
2583     thp=no
2584   fi
2585 fi
2586 print_config "MADV_HUGEPAGE" "$thp"
2587
2588 ##########################################
2589 # check for gettid()
2590 gettid="no"
2591 cat > $TMPC << EOF
2592 #include <unistd.h>
2593 int main(int argc, char **argv)
2594 {
2595   return gettid();
2596 }
2597 EOF
2598 if compile_prog "" "" "gettid"; then
2599   gettid="yes"
2600 fi
2601 print_config "gettid" "$gettid"
2602
2603 ##########################################
2604 # check for statx(2) support by libc
2605 statx="no"
2606 cat > $TMPC << EOF
2607 #include <unistd.h>
2608 #include <sys/stat.h>
2609
2610 int main(int argc, char **argv)
2611 {
2612         struct statx st;
2613         return statx(-1, *argv, 0, 0, &st);
2614 }
2615 EOF
2616 if compile_prog "" "" "statx"; then
2617   statx="yes"
2618 fi
2619 print_config "statx(2)/libc" "$statx"
2620
2621 ##########################################
2622 # check for statx(2) support by kernel
2623 statx_syscall="no"
2624 cat > $TMPC << EOF
2625 #include <unistd.h>
2626 #include <linux/stat.h>
2627 #include <sys/stat.h>
2628 #include <sys/syscall.h>
2629
2630 static int _statx(int dfd, const char *pathname, int flags, unsigned int mask,
2631                   struct statx *buffer)
2632 {
2633         return syscall(__NR_statx, dfd, pathname, flags, mask, buffer);
2634 }
2635
2636 int main(int argc, char **argv)
2637 {
2638         struct statx st;
2639         return _statx(-1, *argv, 0, 0, &st);
2640 }
2641 EOF
2642 if compile_prog "" "" "statx_syscall"; then
2643   statx_syscall="yes"
2644 fi
2645 print_config "statx(2)/syscall" "$statx_syscall"
2646
2647 #############################################################################
2648
2649 if test "$wordsize" = "64" ; then
2650   output_sym "CONFIG_64BIT"
2651 elif test "$wordsize" = "32" ; then
2652   output_sym "CONFIG_32BIT"
2653 else
2654   fatal "Unknown wordsize!"
2655 fi
2656 if test "$bigendian" = "yes" ; then
2657   output_sym "CONFIG_BIG_ENDIAN"
2658 else
2659   output_sym "CONFIG_LITTLE_ENDIAN"
2660 fi
2661 if test "$zlib" = "yes" ; then
2662   output_sym "CONFIG_ZLIB"
2663 fi
2664 if test "$libaio" = "yes" ; then
2665   output_sym "CONFIG_LIBAIO"
2666   if test "$libaio_rw_flags" = "yes" ; then
2667     output_sym "CONFIG_LIBAIO_RW_FLAGS"
2668   fi
2669   if test "$libaio_uring" = "yes" ; then
2670     output_sym "CONFIG_LIBAIO_URING"
2671   fi
2672 fi
2673 if test "$posix_aio" = "yes" ; then
2674   output_sym "CONFIG_POSIXAIO"
2675 fi
2676 if test "$posix_aio_fsync" = "yes" ; then
2677   output_sym "CONFIG_POSIXAIO_FSYNC"
2678 fi
2679 if test "$posix_pshared" = "yes" ; then
2680   output_sym "CONFIG_PSHARED"
2681 fi
2682 if test "$pthread_condattr_setclock" = "yes" ; then
2683   output_sym "CONFIG_PTHREAD_CONDATTR_SETCLOCK"
2684 fi
2685 if test "$pthread_sigmask" = "yes" ; then
2686   output_sym "CONFIG_PTHREAD_SIGMASK"
2687 fi
2688 if test "$have_asprintf" = "yes" ; then
2689     output_sym "CONFIG_HAVE_ASPRINTF"
2690 fi
2691 if test "$have_vasprintf" = "yes" ; then
2692     output_sym "CONFIG_HAVE_VASPRINTF"
2693 fi
2694 if test "$linux_fallocate" = "yes" ; then
2695   output_sym "CONFIG_LINUX_FALLOCATE"
2696 fi
2697 if test "$posix_fallocate" = "yes" ; then
2698   output_sym "CONFIG_POSIX_FALLOCATE"
2699 fi
2700 if test "$fdatasync" = "yes" ; then
2701   output_sym "CONFIG_FDATASYNC"
2702 fi
2703 if test "$pipe" = "yes" ; then
2704   output_sym "CONFIG_PIPE"
2705 fi
2706 if test "$pipe2" = "yes" ; then
2707   output_sym "CONFIG_PIPE2"
2708 fi
2709 if test "$pread" = "yes" ; then
2710   output_sym "CONFIG_PREAD"
2711 fi
2712 if test "$sync_file_range" = "yes" ; then
2713   output_sym "CONFIG_SYNC_FILE_RANGE"
2714 fi
2715 if test "$sfaa" = "yes" ; then
2716   output_sym "CONFIG_SFAA"
2717 fi
2718 if test "$sync_sync" = "yes" ; then
2719   output_sym "CONFIG_SYNC_SYNC"
2720 fi
2721 if test "$cmp_swap" = "yes" ; then
2722   output_sym "CONFIG_CMP_SWAP"
2723 fi
2724 if test "$libverbs" = "yes" -a "$rdmacm" = "yes" ; then
2725   output_sym "CONFIG_RDMA"
2726 fi
2727 if test "$clock_gettime" = "yes" ; then
2728   output_sym "CONFIG_CLOCK_GETTIME"
2729 fi
2730 if test "$clock_monotonic" = "yes" ; then
2731   output_sym "CONFIG_CLOCK_MONOTONIC"
2732 fi
2733 if test "$clock_monotonic_raw" = "yes" ; then
2734   output_sym "CONFIG_CLOCK_MONOTONIC_RAW"
2735 fi
2736 if test "$clock_monotonic_precise" = "yes" ; then
2737   output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
2738 fi
2739 if test "$clockid_t" = "yes"; then
2740   output_sym "CONFIG_CLOCKID_T"
2741 fi
2742 if test "$gettimeofday" = "yes" ; then
2743   output_sym "CONFIG_GETTIMEOFDAY"
2744 fi
2745 if test "$posix_fadvise" = "yes" ; then
2746   output_sym "CONFIG_POSIX_FADVISE"
2747 fi
2748 if test "$linux_3arg_affinity" = "yes" ; then
2749   output_sym "CONFIG_3ARG_AFFINITY"
2750 elif test "$linux_2arg_affinity" = "yes" ; then
2751   output_sym "CONFIG_2ARG_AFFINITY"
2752 fi
2753 if test "$strsep" = "yes" ; then
2754   output_sym "CONFIG_STRSEP"
2755 fi
2756 if test "$strcasestr" = "yes" ; then
2757   output_sym "CONFIG_STRCASESTR"
2758 fi
2759 if test "$strlcat" = "yes" ; then
2760   output_sym "CONFIG_STRLCAT"
2761 fi
2762 if test "$getopt_long_only" = "yes" ; then
2763   output_sym "CONFIG_GETOPT_LONG_ONLY"
2764 fi
2765 if test "$inet_aton" = "yes" ; then
2766   output_sym "CONFIG_INET_ATON"
2767 fi
2768 if test "$socklen_t" = "yes" ; then
2769   output_sym "CONFIG_SOCKLEN_T"
2770 fi
2771 if test "$ext4_me" = "yes" ; then
2772   output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
2773 fi
2774 if test "$linux_splice" = "yes" ; then
2775   output_sym "CONFIG_LINUX_SPLICE"
2776 fi
2777 if test "$guasi" = "yes" ; then
2778   output_sym "CONFIG_GUASI"
2779 fi
2780 if test "$libnuma_v2" = "yes" ; then
2781   output_sym "CONFIG_LIBNUMA"
2782 fi
2783 if test "$solaris_aio" = "yes" ; then
2784   output_sym "CONFIG_SOLARISAIO"
2785 fi
2786 if test "$tls_thread" = "yes" ; then
2787   output_sym "CONFIG_TLS_THREAD"
2788 fi
2789 if test "$rusage_thread" = "yes" ; then
2790   output_sym "CONFIG_RUSAGE_THREAD"
2791 fi
2792 if test "$gfio" = "yes" ; then
2793   output_sym "CONFIG_GFIO"
2794 fi
2795 if test "$esx" = "yes" ; then
2796   output_sym "CONFIG_ESX"
2797   output_sym "CONFIG_NO_SHM"
2798 fi
2799 if test "$sched_idle" = "yes" ; then
2800   output_sym "CONFIG_SCHED_IDLE"
2801 fi
2802 if test "$tcp_nodelay" = "yes" ; then
2803   output_sym "CONFIG_TCP_NODELAY"
2804 fi
2805 if test "$window_size" = "yes" ; then
2806   output_sym "CONFIG_NET_WINDOWSIZE"
2807 fi
2808 if test "$mss" = "yes" ; then
2809   output_sym "CONFIG_NET_MSS"
2810 fi
2811 if test "$rlimit_memlock" = "yes" ; then
2812   output_sym "CONFIG_RLIMIT_MEMLOCK"
2813 fi
2814 if test "$pwritev" = "yes" ; then
2815   output_sym "CONFIG_PWRITEV"
2816 fi
2817 if test "$pwritev2" = "yes" ; then
2818   output_sym "CONFIG_PWRITEV2"
2819 fi
2820 if test "$ipv6" = "yes" ; then
2821   output_sym "CONFIG_IPV6"
2822 fi
2823 if test "$http" = "yes" ; then
2824   output_sym "CONFIG_HTTP"
2825 fi
2826 if test "$rados" = "yes" ; then
2827   output_sym "CONFIG_RADOS"
2828 fi
2829 if test "$rbd" = "yes" ; then
2830   output_sym "CONFIG_RBD"
2831 fi
2832 if test "$rbd_poll" = "yes" ; then
2833   output_sym "CONFIG_RBD_POLL"
2834 fi
2835 if test "$rbd_inval" = "yes" ; then
2836   output_sym "CONFIG_RBD_INVAL"
2837 fi
2838 if test "$setvbuf" = "yes" ; then
2839   output_sym "CONFIG_SETVBUF"
2840 fi
2841 if test "$s390_z196_facilities" = "yes" ; then
2842   output_sym "CONFIG_S390_Z196_FACILITIES"
2843   CFLAGS="$CFLAGS -march=z9-109"
2844   march_set="yes"
2845 fi
2846 if test "$gfapi" = "yes" ; then
2847   output_sym "CONFIG_GFAPI"
2848 fi
2849 if test "$gf_fadvise" = "yes" ; then
2850   output_sym "CONFIG_GF_FADVISE"
2851 fi
2852 if test "$gf_trim" = "yes" ; then
2853   output_sym "CONFIG_GF_TRIM"
2854 fi
2855 if test "$gf_new" = "yes" ; then
2856   output_sym "CONFIG_GF_NEW_API"
2857 fi
2858 if test "$libhdfs" = "yes" ; then
2859   output_sym "CONFIG_LIBHDFS"
2860   echo "FIO_HDFS_CPU=$FIO_HDFS_CPU" >> $config_host_mak
2861   echo "JAVA_HOME=$JAVA_HOME" >> $config_host_mak
2862   echo "FIO_LIBHDFS_INCLUDE=$FIO_LIBHDFS_INCLUDE" >> $config_host_mak
2863   echo "FIO_LIBHDFS_LIB=$FIO_LIBHDFS_LIB" >> $config_host_mak
2864 fi
2865 if test "$mtd" = "yes" ; then
2866   output_sym "CONFIG_MTD"
2867 fi
2868 if test "$pmemblk" = "yes" ; then
2869   output_sym "CONFIG_PMEMBLK"
2870 fi
2871 if test "$devdax" = "yes" ; then
2872   output_sym "CONFIG_LINUX_DEVDAX"
2873 fi
2874 if test "$pmem" = "yes" ; then
2875   output_sym "CONFIG_LIBPMEM"
2876 fi
2877 if test "$libime" = "yes" ; then
2878   output_sym "CONFIG_IME"
2879 fi
2880 if test "$arith" = "yes" ; then
2881   output_sym "CONFIG_ARITHMETIC"
2882   if test "$yacc_is_bison" = "yes" ; then
2883     echo "YACC=$YACC -y" >> $config_host_mak
2884   else
2885     echo "YACC=$YACC" >> $config_host_mak
2886   fi
2887   if test "$lex_use_o" = "yes" ; then
2888     echo "CONFIG_LEX_USE_O=y" >> $config_host_mak
2889   fi
2890 fi
2891 if test "$getmntent" = "yes" ; then
2892   output_sym "CONFIG_GETMNTENT"
2893 fi
2894 if test "$getmntinfo" = "yes" ; then
2895   output_sym "CONFIG_GETMNTINFO"
2896 fi
2897 if test "$getmntinfo_statvfs" = "yes" ; then
2898   output_sym "CONFIG_GETMNTINFO_STATVFS"
2899 fi
2900 if test "$static_assert" = "yes" ; then
2901   output_sym "CONFIG_STATIC_ASSERT"
2902 fi
2903 if test "$have_bool" = "yes" ; then
2904   output_sym "CONFIG_HAVE_BOOL"
2905 fi
2906 if test "$strndup" = "yes" ; then
2907   output_sym "CONFIG_HAVE_STRNDUP"
2908 fi
2909 if test "$disable_opt" = "yes" ; then
2910   output_sym "CONFIG_DISABLE_OPTIMIZATIONS"
2911 fi
2912 if test "$valgrind_dev" = "yes"; then
2913   output_sym "CONFIG_VALGRIND_DEV"
2914 fi
2915 if test "$linux_blkzoned" = "yes" ; then
2916   output_sym "CONFIG_HAS_BLKZONED"
2917 fi
2918 if test "$libzbc" = "yes" ; then
2919   output_sym "CONFIG_LIBZBC"
2920 fi
2921 if test "$zlib" = "no" ; then
2922   echo "Consider installing zlib-dev (zlib-devel, some fio features depend on it."
2923   if test "$build_static" = "yes"; then
2924     echo "Note that some distros have separate packages for static libraries."
2925   fi
2926 fi
2927 if test "$march_armv8_a_crc_crypto" = "yes" ; then
2928   output_sym "ARCH_HAVE_CRC_CRYPTO"
2929 fi
2930 if test "$cuda" = "yes" ; then
2931   output_sym "CONFIG_CUDA"
2932 fi
2933 if test "$march_set" = "no" && test "$build_native" = "yes" ; then
2934   output_sym "CONFIG_BUILD_NATIVE"
2935 fi
2936 if test "$cunit" = "yes" ; then
2937   output_sym "CONFIG_HAVE_CUNIT"
2938 fi
2939 if test "$__kernel_rwf_t" = "yes"; then
2940   output_sym "CONFIG_HAVE_KERNEL_RWF_T"
2941 fi
2942 if test "$gettid" = "yes"; then
2943   output_sym "CONFIG_HAVE_GETTID"
2944 fi
2945 if test "$statx" = "yes"; then
2946   output_sym "CONFIG_HAVE_STATX"
2947 fi
2948 if test "$statx_syscall" = "yes"; then
2949   output_sym "CONFIG_HAVE_STATX_SYSCALL"
2950 fi
2951 if test "$fallthrough" = "yes"; then
2952   CFLAGS="$CFLAGS -Wimplicit-fallthrough"
2953 fi
2954 if test "$thp" = "yes" ; then
2955   output_sym "CONFIG_HAVE_THP"
2956 fi
2957 if test "$libiscsi" = "yes" ; then
2958   output_sym "CONFIG_LIBISCSI"
2959   echo "CONFIG_LIBISCSI=m" >> $config_host_mak
2960   echo "LIBISCSI_CFLAGS=$libiscsi_cflags" >> $config_host_mak
2961   echo "LIBISCSI_LIBS=$libiscsi_libs" >> $config_host_mak
2962 fi
2963 if test "$libnbd" = "yes" ; then
2964   output_sym "CONFIG_LIBNBD"
2965   echo "CONFIG_LIBNBD=m" >> $config_host_mak
2966   echo "LIBNBD_CFLAGS=$libnbd_cflags" >> $config_host_mak
2967   echo "LIBNBD_LIBS=$libnbd_libs" >> $config_host_mak
2968 fi
2969 cat > $TMPC << EOF
2970 int main(int argc, char **argv)
2971 {
2972   return 0;
2973 }
2974 EOF
2975 if test "$disable_tcmalloc" != "yes"  && compile_prog "" "-ltcmalloc" "tcmalloc"; then
2976   LIBS="-ltcmalloc $LIBS"
2977   tcmalloc="yes"
2978 else
2979   tcmalloc="no"
2980 fi
2981 print_config "TCMalloc support" "$tcmalloc"
2982
2983 echo "LIBS+=$LIBS" >> $config_host_mak
2984 echo "GFIO_LIBS+=$GFIO_LIBS" >> $config_host_mak
2985 echo "CFLAGS+=$CFLAGS" >> $config_host_mak
2986 echo "LDFLAGS+=$LDFLAGS" >> $config_host_mak
2987 echo "CC=$cc" >> $config_host_mak
2988 echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak
2989 echo "INSTALL_PREFIX=$prefix" >> $config_host_mak
2990
2991 if [ `dirname $0` != "." -a ! -e Makefile ]; then
2992     cat > Makefile <<EOF
2993 SRCDIR:=`dirname $0`
2994 include \$(SRCDIR)/Makefile
2995 EOF
2996 fi