client/server: percentile_precision wasn't net converted
[fio.git] / configure
1 #!/bin/sh
2 #
3 # Fio configure script. Heavily influenced by the manual qemu configure
4 # script. Sad this 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 # Default CFLAGS
41 CFLAGS="-D_GNU_SOURCE -include config-host.h"
42 BUILD_CFLAGS=""
43
44 # Print a helpful header at the top of config.log
45 echo "# FIO configure log $(date)" >> config.log
46 printf "# Configured with:" >> config.log
47 printf " '%s'" "$0" "$@" >> config.log
48 echo >> config.log
49 echo "#" >> config.log
50
51 # Print configure header at the top of $config_host_h
52 echo "/*" > $config_host_h
53 echo " * Automatically generated by configure - do not modify" >> $config_host_h
54 printf " * Configured with:" >> $config_host_h
55 printf " * '%s'" "$0" "$@" >> $config_host_h
56 echo "" >> $config_host_h
57 echo " */" >> $config_host_h
58
59 do_cc() {
60     # Run the compiler, capturing its output to the log.
61     echo $cc "$@" >> config.log
62     $cc "$@" >> config.log 2>&1 || return $?
63     # Test passed. If this is an --enable-werror build, rerun
64     # the test with -Werror and bail out if it fails. This
65     # makes warning-generating-errors in configure test code
66     # obvious to developers.
67     if test "$werror" != "yes"; then
68         return 0
69     fi
70     # Don't bother rerunning the compile if we were already using -Werror
71     case "$*" in
72         *-Werror*)
73            return 0
74         ;;
75     esac
76     echo $cc -Werror "$@" >> config.log
77     $cc -Werror "$@" >> config.log 2>&1 && return $?
78     echo "ERROR: configure test passed without -Werror but failed with -Werror."
79     echo "This is probably a bug in the configure script. The failing command"
80     echo "will be at the bottom of config.log."
81     fatal "You can run configure with --disable-werror to bypass this check."
82 }
83
84 compile_object() {
85   do_cc $CFLAGS -c -o $TMPO $TMPC
86 }
87
88 compile_prog() {
89   local_cflags="$1"
90   local_ldflags="$2 $LIBS"
91   echo "Compiling test case $3" >> config.log
92   do_cc $CFLAGS $local_cflags -o $TMPE $TMPC $LDFLAGS $local_ldflags
93 }
94
95 feature_not_found() {
96   feature=$1
97   packages=$2
98
99   echo "ERROR"
100   echo "ERROR: User requested feature $feature"
101   if test ! -z "$packages" ; then
102     echo "ERROR: That feature needs $packages installed"
103   fi
104   echo "ERROR: configure was not able to find it"
105   fatal "ERROR"
106 }
107
108 has() {
109   type "$1" >/dev/null 2>&1
110 }
111
112 check_define() {
113   cat > $TMPC <<EOF
114 #if !defined($1)
115 #error $1 not defined
116 #endif
117 int main(void)
118 {
119   return 0;
120 }
121 EOF
122   compile_object
123 }
124
125 output_sym() {
126   echo "$1=y" >> $config_host_mak
127   echo "#define $1" >> $config_host_h
128 }
129
130 targetos=""
131 cpu=""
132
133 # default options
134 show_help="no"
135 exit_val=0
136 gfio_check="no"
137 libhdfs="no"
138
139 # parse options
140 for opt do
141   optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
142   case "$opt" in
143   --cpu=*) cpu="$optarg"
144   ;;
145   #  esx is cross compiled and cannot be detect through simple uname calls
146   --esx)
147   esx="yes"
148   ;;
149   --cc=*) CC="$optarg"
150   ;;
151   --extra-cflags=*) CFLAGS="$CFLAGS $optarg"
152   ;;
153   --build-32bit-win) build_32bit_win="yes"
154   ;;
155   --enable-gfio)
156   gfio_check="yes"
157   ;;
158   --disable-numa) disable_numa="yes"
159   ;;
160   --disable-rbd) disable_rbd="yes"
161   ;;
162   --disable-gfapi) disable_gfapi="yes"
163   ;;
164   --enable-libhdfs) libhdfs="yes"
165   ;;
166   --help)
167     show_help="yes"
168     ;;
169   *)
170   echo "Bad option $opt"
171   show_help="yes"
172   exit_val=1
173   esac
174 done
175
176 if test "$show_help" = "yes" ; then
177   echo "--cpu=                 Specify target CPU if auto-detect fails"
178   echo "--cc=                  Specify compiler to use"
179   echo "--extra-cflags=        Specify extra CFLAGS to pass to compiler"
180   echo "--build-32bit-win      Enable 32-bit build on Windows"
181   echo "--esx                  Configure build options for esx"
182   echo "--enable-gfio          Enable building of gtk gfio"
183   echo "--disable-numa         Disable libnuma even if found"
184   echo "--enable-libhdfs       Enable hdfs support"
185   exit $exit_val
186 fi
187
188 cross_prefix=${cross_prefix-${CROSS_COMPILE}}
189 cc="${CC-${cross_prefix}gcc}"
190
191 if check_define __ANDROID__ ; then
192   targetos="Android"
193 elif check_define __linux__ ; then
194   targetos="Linux"
195 elif check_define __OpenBSD__ ; then
196   targetos='OpenBSD'
197 elif check_define __sun__ ; then
198   targetos='SunOS'
199   CFLAGS="$CFLAGS -D_REENTRANT"
200 elif check_define _WIN32 ; then
201   targetos='CYGWIN'
202 else
203   targetos=`uname -s`
204 fi
205
206 echo "# Automatically generated by configure - do not modify" > $config_host_mak
207 printf "# Configured with:" >> $config_host_mak
208 printf " '%s'" "$0" "$@" >> $config_host_mak
209 echo >> $config_host_mak
210 echo "CONFIG_TARGET_OS=$targetos" >> $config_host_mak
211
212 # Some host OSes need non-standard checks for which CPU to use.
213 # Note that these checks are broken for cross-compilation: if you're
214 # cross-compiling to one of these OSes then you'll need to specify
215 # the correct CPU with the --cpu option.
216 case $targetos in
217 Darwin)
218   # on Leopard most of the system is 32-bit, so we have to ask the kernel if
219   # we can run 64-bit userspace code.
220   # If the user didn't specify a CPU explicitly and the kernel says this is
221   # 64 bit hw, then assume x86_64. Otherwise fall through to the usual
222   # detection code.
223   if test -z "$cpu" && test "$(sysctl -n hw.optional.x86_64)" = "1"; then
224     cpu="x86_64"
225   fi
226   ;;
227 SunOS)
228   # `uname -m` returns i86pc even on an x86_64 box, so default based on isainfo
229   if test -z "$cpu" && test "$(isainfo -k)" = "amd64"; then
230     cpu="x86_64"
231   fi
232   LIBS="-lnsl -lsocket"
233   ;;
234 CYGWIN*)
235   echo "Forcing known good options on Windows"
236   if test -z "$CC" ; then
237     if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
238       CC="i686-w64-mingw32-gcc"
239     else
240       CC="x86_64-w64-mingw32-gcc"
241     fi
242   fi
243   output_sym "CONFIG_LITTLE_ENDIAN"
244   if test ! -z "$build_32bit_win" && test "$build_32bit_win" = "yes"; then
245     output_sym "CONFIG_32BIT"
246   else
247     output_sym "CONFIG_64BIT_LLP64"
248   fi
249   output_sym "CONFIG_FADVISE"
250   output_sym "CONFIG_SOCKLEN_T"
251   output_sym "CONFIG_FADVISE"
252   output_sym "CONFIG_SFAA"
253   output_sym "CONFIG_RUSAGE_THREAD"
254   output_sym "CONFIG_WINDOWSAIO"
255   output_sym "CONFIG_FDATASYNC"
256   output_sym "CONFIG_CLOCK_MONOTONIC"
257   output_sym "CONFIG_GETTIMEOFDAY"
258   output_sym "CONFIG_CLOCK_GETTIME"
259   output_sym "CONFIG_SCHED_IDLE"
260   output_sym "CONFIG_TCP_NODELAY"
261   output_sym "CONFIG_TLS_THREAD"
262   output_sym "CONFIG_IPV6"
263   echo "CC=$CC" >> $config_host_mak
264   echo "BUILD_CFLAGS=$CFLAGS -include config-host.h -D_GNU_SOURCE" >> $config_host_mak
265   exit 0
266   ;;
267 esac
268
269 if test ! -z "$cpu" ; then
270   # command line argument
271   :
272 elif check_define __i386__ ; then
273   cpu="i386"
274 elif check_define __x86_64__ ; then
275   cpu="x86_64"
276 elif check_define __sparc__ ; then
277   if check_define __arch64__ ; then
278     cpu="sparc64"
279   else
280     cpu="sparc"
281   fi
282 elif check_define _ARCH_PPC ; then
283   if check_define _ARCH_PPC64 ; then
284     cpu="ppc64"
285   else
286     cpu="ppc"
287   fi
288 elif check_define __mips__ ; then
289   cpu="mips"
290 elif check_define __ia64__ ; then
291   cpu="ia64"
292 elif check_define __s390__ ; then
293   if check_define __s390x__ ; then
294     cpu="s390x"
295   else
296     cpu="s390"
297   fi
298 elif check_define __arm__ ; then
299   cpu="arm"
300 elif check_define __hppa__ ; then
301   cpu="hppa"
302 else
303   cpu=`uname -m`
304 fi
305
306 # Normalise host CPU name and set ARCH.
307 case "$cpu" in
308   ia64|ppc|ppc64|s390|s390x|sparc64)
309     cpu="$cpu"
310   ;;
311   i386|i486|i586|i686|i86pc|BePC)
312     cpu="i386"
313   ;;
314   x86_64|amd64)
315     cpu="x86_64"
316   ;;
317   armv*b|armv*l|arm)
318     cpu="arm"
319   ;;
320   hppa|parisc|parisc64)
321     cpu="hppa"
322   ;;
323   mips*)
324     cpu="mips"
325   ;;
326   sparc|sun4[cdmuv])
327     cpu="sparc"
328   ;;
329   *)
330   echo "Unknown CPU"
331   ;;
332 esac
333
334 if test -z "$CC" ; then
335   if test "$targetos" = "FreeBSD"; then
336     if has clang; then
337       CC=clang
338     else
339       CC=gcc
340     fi
341   fi
342 fi
343
344 cc="${CC-${cross_prefix}gcc}"
345
346 ##########################################
347 # check cross compile
348
349 cross_compile="no"
350 cat > $TMPC <<EOF
351 int main(void)
352 {
353   return 0;
354 }
355 EOF
356 if compile_prog "" "" "cross"; then
357   $TMPE 2>/dev/null || cross_compile="yes"
358 else
359   fatal "compile test failed"
360 fi
361
362 ##########################################
363 # check endianness
364 bigendian="no"
365 if test "$cross_compile" = "no" ; then
366   cat > $TMPC <<EOF
367 #include <inttypes.h>
368 int main(void)
369 {
370   volatile uint32_t i=0x01234567;
371   return (*((uint8_t*)(&i))) == 0x67;
372 }
373 EOF
374   if compile_prog "" "" "endian"; then
375     $TMPE && bigendian="yes"
376   fi
377 else
378   # If we're cross compiling, try our best to work it out and rely on the
379   # run-time check to fail if we get it wrong.
380   cat > $TMPC <<EOF
381 #include <endian.h>
382 int main(void)
383 {
384 #if __BYTE_ORDER != __BIG_ENDIAN
385 # error "Unknown endianness"
386 #endif
387 }
388 EOF
389   compile_prog "" "" "endian" && bigendian="yes"
390   check_define "__ARMEB__" && bigendian="yes"
391   check_define "__MIPSEB__" && bigendian="yes"
392 fi
393
394
395 echo "Operating system              $targetos"
396 echo "CPU                           $cpu"
397 echo "Big endian                    $bigendian"
398 echo "Compiler                      $cc"
399 echo "Cross compile                 $cross_compile"
400 echo
401
402 ##########################################
403 # check for wordsize
404 wordsize="0"
405 cat > $TMPC <<EOF
406 #include <limits.h>
407 #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
408 int main(void)
409 {
410   BUILD_BUG_ON(sizeof(long)*CHAR_BIT != WORDSIZE);
411   return 0;
412 }
413 EOF
414 if compile_prog "-DWORDSIZE=32" "" "wordsize"; then
415   wordsize="32"
416 elif compile_prog "-DWORDSIZE=64" "" "wordsize"; then
417   wordsize="64"
418 else
419   fatal "Unknown wordsize"
420 fi
421 echo "Wordsize                      $wordsize"
422
423 ##########################################
424 # zlib probe
425 zlib="no"
426 cat > $TMPC <<EOF
427 #include <zlib.h>
428 int main(void)
429 {
430   z_stream stream;
431   if (inflateInit(&stream) != Z_OK)
432     return 1;
433   return 0;
434 }
435 EOF
436 if compile_prog "" "-lz" "zlib" ; then
437   zlib=yes
438   LIBS="-lz $LIBS"
439 fi
440 echo "zlib                          $zlib"
441
442 ##########################################
443 # linux-aio probe
444 libaio="no"
445 cat > $TMPC <<EOF
446 #include <libaio.h>
447 #include <stddef.h>
448 int main(void)
449 {
450   io_setup(0, NULL);
451   return 0;
452 }
453 EOF
454 if compile_prog "" "-laio" "libaio" ; then
455   libaio=yes
456   LIBS="-laio $LIBS"
457 else
458   if test "$libaio" = "yes" ; then
459     feature_not_found "linux AIO" "libaio-dev or libaio-devel"
460   fi
461   libaio=no
462 fi
463 echo "Linux AIO support             $libaio"
464
465 ##########################################
466 # posix aio probe
467 posix_aio="no"
468 posix_aio_lrt="no"
469 cat > $TMPC <<EOF
470 #include <aio.h>
471 int main(void)
472 {
473   struct aiocb cb;
474   aio_read(&cb);
475   return 0;
476 }
477 EOF
478 if compile_prog "" "" "posixaio" ; then
479   posix_aio="yes"
480 elif compile_prog "" "-lrt" "posixaio"; then
481   posix_aio="yes"
482   posix_aio_lrt="yes"
483   LIBS="-lrt $LIBS"
484 fi
485 echo "POSIX AIO support             $posix_aio"
486 echo "POSIX AIO support needs -lrt  $posix_aio_lrt"
487
488 ##########################################
489 # posix aio fsync probe
490 posix_aio_fsync="no"
491 if test "$posix_aio" = "yes" ; then
492   cat > $TMPC <<EOF
493 #include <fcntl.h>
494 #include <aio.h>
495 int main(void)
496 {
497   struct aiocb cb;
498   return aio_fsync(O_SYNC, &cb);
499   return 0;
500 }
501 EOF
502   if compile_prog "" "$LIBS" "posix_aio_fsync" ; then
503     posix_aio_fsync=yes
504   fi
505 fi
506 echo "POSIX AIO fsync               $posix_aio_fsync"
507
508 ##########################################
509 # solaris aio probe
510 solaris_aio="no"
511 cat > $TMPC <<EOF
512 #include <sys/types.h>
513 #include <sys/asynch.h>
514 #include <unistd.h>
515 int main(void)
516 {
517   aio_result_t res;
518   return aioread(0, NULL, 0, 0, SEEK_SET, &res);
519   return 0;
520 }
521 EOF
522 if compile_prog "" "-laio" "solarisaio" ; then
523   solaris_aio=yes
524   LIBS="-laio $LIBS"
525 fi
526 echo "Solaris AIO support           $solaris_aio"
527
528 ##########################################
529 # __sync_fetch_and_and test
530 sfaa="no"
531 cat > $TMPC << EOF
532 static int sfaa(int *ptr)
533 {
534   return __sync_fetch_and_add(ptr, 0);
535 }
536
537 int main(int argc, char **argv)
538 {
539   int val = 42;
540   sfaa(&val);
541   return val;
542 }
543 EOF
544 if compile_prog "" "" "__sync_fetch_and_add()" ; then
545     sfaa="yes"
546 fi
547 echo "__sync_fetch_and_add          $sfaa"
548
549 ##########################################
550 # libverbs probe
551 libverbs="no"
552 cat > $TMPC << EOF
553 #include <stdio.h>
554 #include <infiniband/arch.h>
555 int main(int argc, char **argv)
556 {
557   struct ibv_pd *pd = ibv_alloc_pd(NULL);
558   return 0;
559 }
560 EOF
561 if compile_prog "" "-libverbs" "libverbs" ; then
562     libverbs="yes"
563     LIBS="-libverbs $LIBS"
564 fi
565 echo "libverbs                      $libverbs"
566
567 ##########################################
568 # rdmacm probe
569 rdmacm="no"
570 cat > $TMPC << EOF
571 #include <stdio.h>
572 #include <rdma/rdma_cma.h>
573 int main(int argc, char **argv)
574 {
575   rdma_destroy_qp(NULL);
576   return 0;
577 }
578 EOF
579 if compile_prog "" "-lrdmacm" "rdma"; then
580     rdmacm="yes"
581     LIBS="-lrdmacm $LIBS"
582 fi
583 echo "rdmacm                        $rdmacm"
584
585 ##########################################
586 # Linux fallocate probe
587 linux_fallocate="no"
588 cat > $TMPC << EOF
589 #include <stdio.h>
590 #include <fcntl.h>
591 #include <linux/falloc.h>
592 int main(int argc, char **argv)
593 {
594   int r = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 1024);
595   return r;
596 }
597 EOF
598 if compile_prog "" "" "linux_fallocate"; then
599     linux_fallocate="yes"
600 fi
601 echo "Linux fallocate               $linux_fallocate"
602
603 ##########################################
604 # POSIX fadvise probe
605 posix_fadvise="no"
606 cat > $TMPC << EOF
607 #include <stdio.h>
608 #include <fcntl.h>
609 int main(int argc, char **argv)
610 {
611   int r = posix_fadvise(0, 0, 0, POSIX_FADV_NORMAL);
612   return r;
613 }
614 EOF
615 if compile_prog "" "" "posix_fadvise"; then
616     posix_fadvise="yes"
617 fi
618 echo "POSIX fadvise                 $posix_fadvise"
619
620 ##########################################
621 # POSIX fallocate probe
622 posix_fallocate="no"
623 cat > $TMPC << EOF
624 #include <stdio.h>
625 #include <fcntl.h>
626 int main(int argc, char **argv)
627 {
628   int r = posix_fallocate(0, 0, 1024);
629   return r;
630 }
631 EOF
632 if compile_prog "" "" "posix_fallocate"; then
633     posix_fallocate="yes"
634 fi
635 echo "POSIX fallocate               $posix_fallocate"
636
637 ##########################################
638 # sched_set/getaffinity 2 or 3 argument test
639 linux_2arg_affinity="no"
640 linux_3arg_affinity="no"
641 cat > $TMPC << EOF
642 #include <sched.h>
643 int main(int argc, char **argv)
644 {
645   cpu_set_t mask;
646   return sched_setaffinity(0, sizeof(mask), &mask);
647 }
648 EOF
649 if compile_prog "" "" "sched_setaffinity(,,)"; then
650   linux_3arg_affinity="yes"
651 else
652   cat > $TMPC << EOF
653 #include <sched.h>
654 int main(int argc, char **argv)
655 {
656   cpu_set_t mask;
657   return sched_setaffinity(0, &mask);
658 }
659 EOF
660   if compile_prog "" "" "sched_setaffinity(,)"; then
661     linux_2arg_affinity="yes"
662   fi
663 fi
664 echo "sched_setaffinity(3 arg)      $linux_3arg_affinity"
665 echo "sched_setaffinity(2 arg)      $linux_2arg_affinity"
666
667 ##########################################
668 # clock_gettime probe
669 clock_gettime="no"
670 cat > $TMPC << EOF
671 #include <stdio.h>
672 #include <time.h>
673 int main(int argc, char **argv)
674 {
675   return clock_gettime(0, NULL);
676 }
677 EOF
678 if compile_prog "" "" "clock_gettime"; then
679     clock_gettime="yes"
680 elif compile_prog "" "-lrt" "clock_gettime"; then
681     clock_gettime="yes"
682     LIBS="-lrt $LIBS"
683 fi
684 echo "clock_gettime                 $clock_gettime"
685
686 ##########################################
687 # CLOCK_MONOTONIC probe
688 clock_monotonic="no"
689 if test "$clock_gettime" = "yes" ; then
690   cat > $TMPC << EOF
691 #include <stdio.h>
692 #include <time.h>
693 int main(int argc, char **argv)
694 {
695   return clock_gettime(CLOCK_MONOTONIC, NULL);
696 }
697 EOF
698   if compile_prog "" "$LIBS" "clock monotonic"; then
699       clock_monotonic="yes"
700   fi
701 fi
702 echo "CLOCK_MONOTONIC               $clock_monotonic"
703
704 ##########################################
705 # CLOCK_MONOTONIC_PRECISE probe
706 clock_monotonic_precise="no"
707 if test "$clock_gettime" = "yes" ; then
708   cat > $TMPC << EOF
709 #include <stdio.h>
710 #include <time.h>
711 int main(int argc, char **argv)
712 {
713   return clock_gettime(CLOCK_MONOTONIC_PRECISE, NULL);
714 }
715 EOF
716   if compile_prog "" "$LIBS" "clock monotonic precise"; then
717       clock_monotonic_precise="yes"
718   fi
719 fi
720 echo "CLOCK_MONOTONIC_PRECISE       $clock_monotonic_precise"
721
722 ##########################################
723 # gettimeofday() probe
724 gettimeofday="no"
725 cat > $TMPC << EOF
726 #include <sys/time.h>
727 #include <stdio.h>
728 int main(int argc, char **argv)
729 {
730   struct timeval tv;
731   return gettimeofday(&tv, NULL);
732 }
733 EOF
734 if compile_prog "" "" "gettimeofday"; then
735     gettimeofday="yes"
736 fi
737 echo "gettimeofday                  $gettimeofday"
738
739 ##########################################
740 # fdatasync() probe
741 fdatasync="no"
742 cat > $TMPC << EOF
743 #include <stdio.h>
744 #include <unistd.h>
745 int main(int argc, char **argv)
746 {
747   return fdatasync(0);
748 }
749 EOF
750 if compile_prog "" "" "fdatasync"; then
751   fdatasync="yes"
752 fi
753 echo "fdatasync                     $fdatasync"
754
755 ##########################################
756 # sync_file_range() probe
757 sync_file_range="no"
758 cat > $TMPC << EOF
759 #include <stdio.h>
760 #include <unistd.h>
761 #include <fcntl.h>
762 #include <linux/fs.h>
763 int main(int argc, char **argv)
764 {
765   unsigned int flags = SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE |
766                         SYNC_FILE_RANGE_WAIT_AFTER;
767   return sync_file_range(0, 0, 0, flags);
768 }
769 EOF
770 if compile_prog "" "" "sync_file_range"; then
771   sync_file_range="yes"
772 fi
773 echo "sync_file_range               $sync_file_range"
774
775 ##########################################
776 # ext4 move extent probe
777 ext4_me="no"
778 cat > $TMPC << EOF
779 #include <fcntl.h>
780 #include <sys/ioctl.h>
781 int main(int argc, char **argv)
782 {
783   struct move_extent me;
784   return ioctl(0, EXT4_IOC_MOVE_EXT, &me);
785 }
786 EOF
787 if compile_prog "" "" "ext4 move extent" ; then
788   ext4_me="yes"
789 elif test $targetos = "Linux" ; then
790   # On Linux, just default to it on and let it error at runtime if we really
791   # don't have it. None of my updated systems have it defined, but it does
792   # work. Takes a while to bubble back.
793   ext4_me="yes"
794 fi
795 echo "EXT4 move extent              $ext4_me"
796
797 ##########################################
798 # splice probe
799 linux_splice="no"
800 cat > $TMPC << EOF
801 #include <stdio.h>
802 #include <fcntl.h>
803 int main(int argc, char **argv)
804 {
805   return splice(0, NULL, 0, NULL, 0, SPLICE_F_NONBLOCK);
806 }
807 EOF
808 if compile_prog "" "" "linux splice"; then
809   linux_splice="yes"
810 fi
811 echo "Linux splice(2)               $linux_splice"
812
813 ##########################################
814 # GUASI probe
815 guasi="no"
816 cat > $TMPC << EOF
817 #include <guasi.h>
818 #include <guasi_syscalls.h>
819 int main(int argc, char **argv)
820 {
821   guasi_t ctx = guasi_create(0, 0, 0);
822   return 0;
823 }
824 EOF
825 if compile_prog "" "" "guasi"; then
826   guasi="yes"
827 fi
828 echo "GUASI                         $guasi"
829
830 ##########################################
831 # fusion-aw probe
832 fusion_aw="no"
833 cat > $TMPC << EOF
834 #include <nvm/nvm_primitives.h>
835 int main(int argc, char **argv)
836 {
837   nvm_version_t ver_info;
838   nvm_handle_t handle;
839
840   handle = nvm_get_handle(0, &ver_info);
841   return nvm_atomic_write(handle, 0, 0, 0);
842 }
843 EOF
844 if compile_prog "" "-L/usr/lib/fio -L/usr/lib/nvm -lnvm-primitives -lvsl -ldl" "fusion-aw"; then
845   LIBS="-L/usr/lib/fio -L/usr/lib/nvm -lnvm-primitives -lvsl -ldl $LIBS"
846   fusion_aw="yes"
847 fi
848 echo "Fusion-io atomic engine       $fusion_aw"
849
850 ##########################################
851 # libnuma probe
852 libnuma="no"
853 cat > $TMPC << EOF
854 #include <numa.h>
855 int main(int argc, char **argv)
856 {
857   return numa_available();
858 }
859 EOF
860 if test "$disable_numa" != "yes"  && compile_prog "" "-lnuma" "libnuma"; then
861   libnuma="yes"
862   LIBS="-lnuma $LIBS"
863 fi
864 echo "libnuma                       $libnuma"
865
866 ##########################################
867 # libnuma 2.x version API
868 if test "$libnuma" = "yes" ; then
869 libnuma_v2="no"
870 cat > $TMPC << EOF
871 #include <numa.h>
872 int main(int argc, char **argv)
873 {
874   struct bitmask *mask = numa_parse_nodestring(NULL);
875   return 0;
876 }
877 EOF
878 if compile_prog "" "" "libnuma api"; then
879   libnuma_v2="yes"
880 fi
881 echo "libnuma v2                    $libnuma_v2"
882 fi
883
884 ##########################################
885 # strsep() probe
886 strsep="no"
887 cat > $TMPC << EOF
888 #include <string.h>
889 int main(int argc, char **argv)
890 {
891   strsep(NULL, NULL);
892   return 0;
893 }
894 EOF
895 if compile_prog "" "" "strsep"; then
896   strsep="yes"
897 fi
898 echo "strsep                        $strsep"
899
900 ##########################################
901 # strcasestr() probe
902 strcasestr="no"
903 cat > $TMPC << EOF
904 #include <string.h>
905 int main(int argc, char **argv)
906 {
907   return strcasestr(argv[0], argv[1]) != NULL;
908 }
909 EOF
910 if compile_prog "" "" "strcasestr"; then
911   strcasestr="yes"
912 fi
913 echo "strcasestr                    $strcasestr"
914
915 ##########################################
916 # getopt_long_only() probe
917 getopt_long_only="no"
918 cat > $TMPC << EOF
919 #include <unistd.h>
920 #include <stdio.h>
921 #include <getopt.h>
922 int main(int argc, char **argv)
923 {
924   int c = getopt_long_only(argc, argv, NULL, NULL, NULL);
925   return c;
926 }
927 EOF
928 if compile_prog "" "" "getopt_long_only"; then
929   getopt_long_only="yes"
930 fi
931 echo "getopt_long_only()            $getopt_long_only"
932
933 ##########################################
934 # inet_aton() probe
935 inet_aton="no"
936 cat > $TMPC << EOF
937 #include <sys/socket.h>
938 #include <arpa/inet.h>
939 #include <stdio.h>
940 int main(int argc, char **argv)
941 {
942   struct in_addr in;
943   return inet_aton(NULL, &in);
944 }
945 EOF
946 if compile_prog "" "" "inet_aton"; then
947   inet_aton="yes"
948 fi
949 echo "inet_aton                     $inet_aton"
950
951 ##########################################
952 # socklen_t probe
953 socklen_t="no"
954 cat > $TMPC << EOF
955 #include <sys/socket.h>
956 int main(int argc, char **argv)
957 {
958   socklen_t len = 0;
959   return len;
960 }
961 EOF
962 if compile_prog "" "" "socklen_t"; then
963   socklen_t="yes"
964 fi
965 echo "socklen_t                     $socklen_t"
966
967 ##########################################
968 # Whether or not __thread is supported for TLS
969 tls_thread="no"
970 cat > $TMPC << EOF
971 #include <stdio.h>
972 static __thread int ret;
973 int main(int argc, char **argv)
974 {
975   return ret;
976 }
977 EOF
978 if compile_prog "" "" "__thread"; then
979   tls_thread="yes"
980 fi
981 echo "__thread                      $tls_thread"
982
983 ##########################################
984 # Check if we have required gtk/glib support for gfio
985 gfio="no"
986 if test "$gfio_check" = "yes" ; then
987   cat > $TMPC << EOF
988 #include <glib.h>
989 #include <cairo.h>
990 #include <gtk/gtk.h>
991 int main(void)
992 {
993   gdk_threads_enter();
994   gdk_threads_leave();
995
996   printf("%d", GTK_CHECK_VERSION(2, 18, 0));
997 }
998 EOF
999 GTK_CFLAGS=$(pkg-config --cflags gtk+-2.0 gthread-2.0)
1000 if test "$?" != "0" ; then
1001   echo "configure: gtk and gthread not found"
1002   exit 1
1003 fi
1004 GTK_LIBS=$(pkg-config --libs gtk+-2.0 gthread-2.0)
1005 if test "$?" != "0" ; then
1006   echo "configure: gtk and gthread not found"
1007   exit 1
1008 fi
1009 if compile_prog "$GTK_CFLAGS" "$GTK_LIBS" "gfio" ; then
1010   r=$($TMPE)
1011   if test "$r" != "0" ; then
1012     gfio="yes"
1013     LIBS="$LIBS $GTK_LIBS"
1014     CFLAGS="$CFLAGS $GTK_CFLAGS"
1015   else
1016     echo "GTK found, but need version 2.18 or higher"
1017     gfio="no"
1018   fi
1019 else
1020   echo "Please install gtk and gdk libraries"
1021   gfio="no"
1022 fi
1023 fi
1024
1025 if test "$gfio_check" = "yes" ; then
1026   echo "gtk 2.18 or higher            $gfio"
1027 fi
1028
1029 # Check whether we have getrusage(RUSAGE_THREAD)
1030 rusage_thread="no"
1031 cat > $TMPC << EOF
1032 #include <sys/time.h>
1033 #include <sys/resource.h>
1034 int main(int argc, char **argv)
1035 {
1036   struct rusage ru;
1037   getrusage(RUSAGE_THREAD, &ru);
1038   return 0;
1039 }
1040 EOF
1041 if compile_prog "" "" "RUSAGE_THREAD"; then
1042   rusage_thread="yes"
1043 fi
1044 echo "RUSAGE_THREAD                 $rusage_thread"
1045
1046 ##########################################
1047 # Check whether we have SCHED_IDLE
1048 sched_idle="no"
1049 cat > $TMPC << EOF
1050 #include <sched.h>
1051 int main(int argc, char **argv)
1052 {
1053   struct sched_param p;
1054   return sched_setscheduler(0, SCHED_IDLE, &p);
1055 }
1056 EOF
1057 if compile_prog "" "" "SCHED_IDLE"; then
1058   sched_idle="yes"
1059 fi
1060 echo "SCHED_IDLE                    $sched_idle"
1061
1062 ##########################################
1063 # Check whether we have TCP_NODELAY
1064 tcp_nodelay="no"
1065 cat > $TMPC << EOF
1066 #include <stdio.h>
1067 #include <sys/types.h>
1068 #include <sys/socket.h>
1069 #include <netinet/tcp.h>
1070 int main(int argc, char **argv)
1071 {
1072   return getsockopt(0, 0, TCP_NODELAY, NULL, NULL);
1073 }
1074 EOF
1075 if compile_prog "" "" "TCP_NODELAY"; then
1076   tcp_nodelay="yes"
1077 fi
1078 echo "TCP_NODELAY                   $tcp_nodelay"
1079
1080 ##########################################
1081 # Check whether we have SO_SNDBUF
1082 window_size="no"
1083 cat > $TMPC << EOF
1084 #include <stdio.h>
1085 #include <sys/types.h>
1086 #include <sys/socket.h>
1087 #include <netinet/tcp.h>
1088 int main(int argc, char **argv)
1089 {
1090   setsockopt(0, SOL_SOCKET, SO_SNDBUF, NULL, 0);
1091   setsockopt(0, SOL_SOCKET, SO_RCVBUF, NULL, 0);
1092 }
1093 EOF
1094 if compile_prog "" "" "SO_SNDBUF"; then
1095   window_size="yes"
1096 fi
1097 echo "Net engine window_size        $window_size"
1098
1099 ##########################################
1100 # Check whether we have TCP_MAXSEG
1101 mss="no"
1102 cat > $TMPC << EOF
1103 #include <stdio.h>
1104 #include <sys/types.h>
1105 #include <sys/socket.h>
1106 #include <netinet/tcp.h>
1107 #include <arpa/inet.h>
1108 #include <netinet/in.h>
1109 int main(int argc, char **argv)
1110 {
1111   return setsockopt(0, IPPROTO_TCP, TCP_MAXSEG, NULL, 0);
1112 }
1113 EOF
1114 if compile_prog "" "" "TCP_MAXSEG"; then
1115   mss="yes"
1116 fi
1117 echo "TCP_MAXSEG                    $mss"
1118
1119 ##########################################
1120 # Check whether we have RLIMIT_MEMLOCK
1121 rlimit_memlock="no"
1122 cat > $TMPC << EOF
1123 #include <sys/time.h>
1124 #include <sys/resource.h>
1125 int main(int argc, char **argv)
1126 {
1127   struct rlimit rl;
1128   return getrlimit(RLIMIT_MEMLOCK, &rl);
1129 }
1130 EOF
1131 if compile_prog "" "" "RLIMIT_MEMLOCK"; then
1132   rlimit_memlock="yes"
1133 fi
1134 echo "RLIMIT_MEMLOCK                $rlimit_memlock"
1135
1136 ##########################################
1137 # Check whether we have pwritev/preadv
1138 pwritev="no"
1139 cat > $TMPC << EOF
1140 #include <stdio.h>
1141 #include <sys/uio.h>
1142 int main(int argc, char **argv)
1143 {
1144   return pwritev(0, NULL, 1, 0) + preadv(0, NULL, 1, 0);
1145 }
1146 EOF
1147 if compile_prog "" "" "pwritev"; then
1148   pwritev="yes"
1149 fi
1150 echo "pwritev/preadv                $pwritev"
1151
1152 ##########################################
1153 # Check whether we have the required functions for ipv6
1154 ipv6="no"
1155 cat > $TMPC << EOF
1156 #include <sys/types.h>
1157 #include <sys/socket.h>
1158 #include <netinet/in.h>
1159 #include <netdb.h>
1160 #include <stdio.h>
1161 int main(int argc, char **argv)
1162 {
1163   struct addrinfo hints;
1164   struct in6_addr addr;
1165   int ret;
1166
1167   ret = getaddrinfo(NULL, NULL, &hints, NULL);
1168   freeaddrinfo(NULL);
1169   printf("%s\n", gai_strerror(ret));
1170   addr = in6addr_any;
1171   return 0;
1172 }
1173 EOF
1174 if compile_prog "" "" "ipv6"; then
1175   ipv6="yes"
1176 fi
1177 echo "IPv6 helpers                  $ipv6"
1178
1179 ##########################################
1180 # check for rbd
1181 rbd="no"
1182 cat > $TMPC << EOF
1183 #include <rbd/librbd.h>
1184
1185 int main(int argc, char **argv)
1186 {
1187
1188   rados_t cluster;
1189   rados_ioctx_t io_ctx;
1190   const char pool[] = "rbd";
1191
1192   int major, minor, extra;
1193   rbd_version(&major, &minor, &extra);
1194
1195   rados_ioctx_create(cluster, pool, &io_ctx);
1196   return 0;
1197 }
1198 EOF
1199 if test "$disable_rbd" != "yes"  && compile_prog "" "-lrbd -lrados" "rbd"; then
1200   LIBS="-lrbd -lrados $LIBS"
1201   rbd="yes"
1202 fi
1203 echo "Rados Block Device engine     $rbd"
1204
1205 ##########################################
1206 # check for rbd_invaidate_cache()
1207 rbd_inval="no"
1208 if test "$rbd" = "yes"; then
1209 cat > $TMPC << EOF
1210 #include <rbd/librbd.h>
1211
1212 int main(int argc, char **argv)
1213 {
1214   rbd_image_t image;
1215
1216   return rbd_invalidate_cache(image);
1217 }
1218 EOF
1219 if compile_prog "" "-lrbd -lrados" "rbd"; then
1220   rbd_inval="yes"
1221 fi
1222 echo "rbd_invalidate_cache          $rbd_inval"
1223 fi
1224
1225 ##########################################
1226 # Check whether we have setvbuf
1227 setvbuf="no"
1228 cat > $TMPC << EOF
1229 #include <stdio.h>
1230 int main(int argc, char **argv)
1231 {
1232   FILE *f = NULL;
1233   char buf[80];
1234   setvbuf(f, buf, _IOFBF, sizeof(buf));
1235   return 0;
1236 }
1237 EOF
1238 if compile_prog "" "" "setvbuf"; then
1239   setvbuf="yes"
1240 fi
1241 echo "setvbuf                       $setvbuf"
1242
1243 # check for gfapi
1244 gfapi="no"
1245 cat > $TMPC << EOF
1246 #include <glusterfs/api/glfs.h>
1247
1248 int main(int argc, char **argv)
1249 {
1250
1251   glfs_t *g = glfs_new("foo");
1252
1253   return 0;
1254 }
1255 EOF
1256 if test "$disable_gfapi" != "yes"  && compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1257   LIBS="-lgfapi -lglusterfs $LIBS"
1258   gfapi="yes"
1259 fi
1260  echo "Gluster API engine            $gfapi"
1261
1262 ##########################################
1263 # check for gfapi fadvise support
1264 if test "$gfapi" = "yes" ; then
1265 gf_fadvise="no"
1266 cat > $TMPC << EOF
1267 #include <glusterfs/api/glfs.h>
1268
1269 int main(int argc, char **argv)
1270 {
1271   struct glfs_fd *fd;
1272   int ret = glfs_fadvise(fd, 0, 0, 1);
1273
1274   return 0;
1275 }
1276 EOF
1277 if compile_prog "" "-lgfapi -lglusterfs" "gfapi"; then
1278   gf_fadvise="yes"
1279 fi
1280 echo "Gluster API use fadvise       $gf_fadvise"
1281 fi
1282
1283 ##########################################
1284 # check for gfapi trim support
1285 gf_trim="no"
1286 if test "$gfapi" = "yes" ; then
1287 cat > $TMPC << EOF
1288 #include <glusterfs/api/glfs.h>
1289
1290 int main(int argc, char **argv)
1291 {
1292   return glfs_discard_async(NULL, 0, 0);
1293 }
1294 EOF
1295 if compile_prog "" "-lgfapi -lglusterfs" "gf trim"; then
1296   gf_trim="yes"
1297 fi
1298 echo "Gluster API trim support      $gf_trim"
1299 fi
1300
1301 ##########################################
1302 # Check if we support stckf on s390
1303 s390_z196_facilities="no"
1304 cat > $TMPC << EOF
1305 #define STFLE_BITS_Z196 45 /* various z196 facilities ... */
1306 int main(int argc, char **argv)
1307 {
1308     /* We want just 1 double word to be returned.  */
1309     register unsigned long reg0 asm("0") = 0;
1310     unsigned long stfle_bits;
1311     asm volatile(".machine push"        "\n\t"
1312                  ".machine \"z9-109\""  "\n\t"
1313                  "stfle %0"             "\n\t"
1314                  ".machine pop"         "\n"
1315                  : "=QS" (stfle_bits), "+d" (reg0)
1316                  : : "cc");
1317
1318     if ((stfle_bits & (1UL << (63 - STFLE_BITS_Z196))) != 0)
1319       return 0;
1320     else
1321       return -1;
1322 }
1323 EOF
1324 if compile_prog "" "" "s390_z196_facilities"; then
1325   $TMPE
1326   if [[ $? -eq 0 ]]; then
1327         s390_z196_facilities="yes"
1328   fi
1329 fi
1330 echo "s390_z196_facilities          $s390_z196_facilities"
1331
1332 ##########################################
1333 # Check if we have required environment variables configured for libhdfs
1334 if test "$libhdfs" = "yes" ; then
1335   hdfs_conf_error=0
1336   if test "$JAVA_HOME" = "" ; then
1337     echo "configure: JAVA_HOME should be defined to jdk/jvm path"
1338     hdfs_conf_error=1
1339   fi
1340   if test "$FIO_LIBHDFS_INCLUDE" = "" ; then
1341     echo "configure: FIO_LIBHDFS_INCLUDE should be defined to libhdfs inlude path"
1342     hdfs_conf_error=1
1343   fi
1344   if test "$FIO_LIBHDFS_LIB" = "" ; then
1345     echo "configure: FIO_LIBHDFS_LIB should be defined to libhdfs library path"
1346     hdfs_conf_error=1
1347   fi
1348   if test "$hdfs_conf_error" = "1" ; then
1349     exit 1
1350   fi
1351 fi
1352 echo "HDFS engine                   $libhdfs"
1353
1354 # Check if we have lex/yacc available
1355 yacc="no"
1356 yacc_is_bison="no"
1357 lex="no"
1358 arith="no"
1359 if test "$targetos" != "SunOS" ; then
1360 LEX=$(which lex 2> /dev/null)
1361 if test -x "$LEX" ; then
1362   lex="yes"
1363 fi
1364 YACC=$(which bison 2> /dev/null)
1365 if test -x "$YACC" ; then
1366   yacc="yes"
1367   yacc_is_bison="yes"
1368 else
1369   YACC=$(which yacc 2> /dev/null)
1370   if test -x "$YACC" ; then
1371     yacc="yes"
1372   fi
1373 fi
1374 if test "$yacc" = "yes" && test "$lex" = "yes" ; then
1375   arith="yes"
1376 fi
1377
1378 if test "$arith" = "yes" ; then
1379 cat > $TMPC << EOF
1380 extern int yywrap(void);
1381
1382 int main(int argc, char **argv)
1383 {
1384   yywrap();
1385   return 0;
1386 }
1387 EOF
1388 if compile_prog "" "-ll" "lex"; then
1389   LIBS="-ll $LIBS"
1390 else
1391   arith="no"
1392 fi
1393 fi
1394 fi
1395
1396 echo "lex/yacc for arithmetic       $arith"
1397
1398 #############################################################################
1399
1400 if test "$wordsize" = "64" ; then
1401   output_sym "CONFIG_64BIT"
1402 elif test "$wordsize" = "32" ; then
1403   output_sym "CONFIG_32BIT"
1404 else
1405   fatal "Unknown wordsize!"
1406 fi
1407 if test "$bigendian" = "yes" ; then
1408   output_sym "CONFIG_BIG_ENDIAN"
1409 else
1410   output_sym "CONFIG_LITTLE_ENDIAN"
1411 fi
1412 if test "$zlib" = "yes" ; then
1413   output_sym "CONFIG_ZLIB"
1414 fi
1415 if test "$libaio" = "yes" ; then
1416   output_sym "CONFIG_LIBAIO"
1417 fi
1418 if test "$posix_aio" = "yes" ; then
1419   output_sym "CONFIG_POSIXAIO"
1420 fi
1421 if test "$posix_aio_fsync" = "yes" ; then
1422   output_sym "CONFIG_POSIXAIO_FSYNC"
1423 fi
1424 if test "$linux_fallocate" = "yes" ; then
1425   output_sym "CONFIG_LINUX_FALLOCATE"
1426 fi
1427 if test "$posix_fallocate" = "yes" ; then
1428   output_sym "CONFIG_POSIX_FALLOCATE"
1429 fi
1430 if test "$fdatasync" = "yes" ; then
1431   output_sym "CONFIG_FDATASYNC"
1432 fi
1433 if test "$sync_file_range" = "yes" ; then
1434   output_sym "CONFIG_SYNC_FILE_RANGE"
1435 fi
1436 if test "$sfaa" = "yes" ; then
1437   output_sym "CONFIG_SFAA"
1438 fi
1439 if test "$libverbs" = "yes" -a "$rdmacm" = "yes" ; then
1440   output_sym "CONFIG_RDMA"
1441 fi
1442 if test "$clock_gettime" = "yes" ; then
1443   output_sym "CONFIG_CLOCK_GETTIME"
1444 fi
1445 if test "$clock_monotonic" = "yes" ; then
1446   output_sym "CONFIG_CLOCK_MONOTONIC"
1447 fi
1448 if test "$clock_monotonic_precise" = "yes" ; then
1449   output_sym "CONFIG_CLOCK_MONOTONIC_PRECISE"
1450 fi
1451 if test "$gettimeofday" = "yes" ; then
1452   output_sym "CONFIG_GETTIMEOFDAY"
1453 fi
1454 if test "$posix_fadvise" = "yes" ; then
1455   output_sym "CONFIG_POSIX_FADVISE"
1456 fi
1457 if test "$linux_3arg_affinity" = "yes" ; then
1458   output_sym "CONFIG_3ARG_AFFINITY"
1459 elif test "$linux_2arg_affinity" = "yes" ; then
1460   output_sym "CONFIG_2ARG_AFFINITY"
1461 fi
1462 if test "$strsep" = "yes" ; then
1463   output_sym "CONFIG_STRSEP"
1464 fi
1465 if test "$strcasestr" = "yes" ; then
1466   output_sym "CONFIG_STRCASESTR"
1467 fi
1468 if test "$getopt_long_only" = "yes" ; then
1469   output_sym "CONFIG_GETOPT_LONG_ONLY"
1470 fi
1471 if test "$inet_aton" = "yes" ; then
1472   output_sym "CONFIG_INET_ATON"
1473 fi
1474 if test "$socklen_t" = "yes" ; then
1475   output_sym "CONFIG_SOCKLEN_T"
1476 fi
1477 if test "$ext4_me" = "yes" ; then
1478   output_sym "CONFIG_LINUX_EXT4_MOVE_EXTENT"
1479 fi
1480 if test "$linux_splice" = "yes" ; then
1481   output_sym "CONFIG_LINUX_SPLICE"
1482 fi
1483 if test "$guasi" = "yes" ; then
1484   output_sym "CONFIG_GUASI"
1485 fi
1486 if test "$fusion_aw" = "yes" ; then
1487   output_sym "CONFIG_FUSION_AW"
1488 fi
1489 if test "$libnuma_v2" = "yes" ; then
1490   output_sym "CONFIG_LIBNUMA"
1491 fi
1492 if test "$solaris_aio" = "yes" ; then
1493   output_sym "CONFIG_SOLARISAIO"
1494 fi
1495 if test "$tls_thread" = "yes" ; then
1496   output_sym "CONFIG_TLS_THREAD"
1497 fi
1498 if test "$rusage_thread" = "yes" ; then
1499   output_sym "CONFIG_RUSAGE_THREAD"
1500 fi
1501 if test "$gfio" = "yes" ; then
1502   echo "CONFIG_GFIO=y" >> $config_host_mak
1503 fi
1504 if test "$esx" = "yes" ; then
1505   output_sym "CONFIG_ESX"
1506   output_sym "CONFIG_NO_SHM"
1507 fi
1508 if test "$sched_idle" = "yes" ; then
1509   output_sym "CONFIG_SCHED_IDLE"
1510 fi
1511 if test "$tcp_nodelay" = "yes" ; then
1512   output_sym "CONFIG_TCP_NODELAY"
1513 fi
1514 if test "$window_size" = "yes" ; then
1515   output_sym "CONFIG_NET_WINDOWSIZE"
1516 fi
1517 if test "$mss" = "yes" ; then
1518   output_sym "CONFIG_NET_MSS"
1519 fi
1520 if test "$rlimit_memlock" = "yes" ; then
1521   output_sym "CONFIG_RLIMIT_MEMLOCK"
1522 fi
1523 if test "$pwritev" = "yes" ; then
1524   output_sym "CONFIG_PWRITEV"
1525 fi
1526 if test "$ipv6" = "yes" ; then
1527   output_sym "CONFIG_IPV6"
1528 fi
1529 if test "$rbd" = "yes" ; then
1530   output_sym "CONFIG_RBD"
1531 fi
1532 if test "$rbd_inval" = "yes" ; then
1533   output_sym "CONFIG_RBD_INVAL"
1534 fi
1535 if test "$setvbuf" = "yes" ; then
1536   output_sym "CONFIG_SETVBUF"
1537 fi
1538 if test "$s390_z196_facilities" = "yes" ; then
1539   output_sym "CONFIG_S390_Z196_FACILITIES"
1540   CFLAGS="$CFLAGS -march=z9-109"
1541 fi
1542 if test "$gfapi" = "yes" ; then
1543   output_sym "CONFIG_GFAPI"
1544 fi
1545 if test "$gf_fadvise" = "yes" ; then
1546   output_sym "CONFIG_GF_FADVISE"
1547 fi
1548 if test "$gf_trim" = "yes" ; then
1549   output_sym "CONFIG_GF_TRIM"
1550 fi
1551 if test "$libhdfs" = "yes" ; then
1552   output_sym "CONFIG_LIBHDFS"
1553 fi
1554 if test "$arith" = "yes" ; then
1555   output_sym "CONFIG_ARITHMETIC"
1556   if test "$yacc_is_bison" = "yes" ; then
1557     echo "YACC=$YACC -y" >> $config_host_mak
1558   else
1559     echo "YACC=$YACC" >> $config_host_mak
1560   fi
1561 fi
1562
1563 if test "$zlib" = "no" ; then
1564   echo "Consider installing zlib-dev (zlib-devel), some fio features depend on it."
1565 fi
1566
1567 echo "LIBS+=$LIBS" >> $config_host_mak
1568 echo "CFLAGS+=$CFLAGS" >> $config_host_mak
1569 echo "CC=$cc" >> $config_host_mak
1570 echo "BUILD_CFLAGS=$BUILD_CFLAGS $CFLAGS" >> $config_host_mak