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