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