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