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