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