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