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