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