]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - configure.ac
platform: Add statvfs64 for OS X
[thirdparty/xfsprogs-dev.git] / configure.ac
CommitLineData
28f55ccc 1AC_INIT([xfsprogs], [4.2.0])
86b99f0a 2AC_PREREQ(2.50)
07c561fe
AG
3AC_CONFIG_AUX_DIR([.])
4AC_CONFIG_MACRO_DIR([m4])
f474cd4f 5AC_CONFIG_SRCDIR([include/libxfs.h])
9440d84d 6AC_CONFIG_HEADER(include/platform_defs.h)
521902a9 7AC_PREFIX_DEFAULT(/usr)
9440d84d 8
07c561fe
AG
9AC_PROG_LIBTOOL
10
e14913c1
TT
11AC_PROG_CC
12if test $cross_compiling = no; then
13 BUILD_CC="$CC"
14 AC_SUBST(BUILD_CC)
15else
16 AC_CHECK_PROGS(BUILD_CC, gcc cc)
17fi
18
534b0bfd 19AC_ARG_ENABLE(shared,
dfc13ce1 20[ --enable-shared=[yes/no] Enable use of shared libraries [default=yes]],,
d5dca43b
NS
21 enable_shared=yes)
22AC_SUBST(enable_shared)
23
16c44ed2
NS
24AC_ARG_ENABLE(gettext,
25[ --enable-gettext=[yes/no] Enable alternate language support [default=yes]],,
26 enable_gettext=yes)
27AC_SUBST(enable_gettext)
28
6635d6ab
JT
29AC_ARG_ENABLE(blkid,
30[ --enable-blkid=[yes/no] Enable use of block device id library [default=yes]],,
31 enable_blkid=yes)
32AC_SUBST(enable_blkid)
33
e246ba5f 34AC_ARG_ENABLE(readline,
16c44ed2 35[ --enable-readline=[yes/no] Enable readline command editing [default=no]],
541a1d4f 36 test $enable_readline = yes && libreadline="-lreadline",
e246ba5f 37 enable_readline=no)
e246ba5f
NS
38AC_SUBST(libreadline)
39AC_SUBST(enable_readline)
40
d4b9ebda 41AC_ARG_ENABLE(editline,
16c44ed2 42[ --enable-editline=[yes/no] Enable editline command editing [default=no]],
541a1d4f 43 test $enable_editline = yes && libeditline="-ledit",
d4b9ebda 44 enable_editline=no)
d4b9ebda
NS
45AC_SUBST(libeditline)
46AC_SUBST(enable_editline)
47
541a1d4f
NS
48AC_ARG_ENABLE(termcap,
49[ --enable-termcap=[yes/no] Enable terminal capabilities library [default=no]],
50 test $enable_termcap = yes && libtermcap="-ltermcap",)
51AC_SUBST(libtermcap)
52
e4da9941 53
82805b60 54AC_ARG_ENABLE(lib64,
595e27db
CH
55[ --enable-lib64=[yes/no] Enable lib64 support [default=yes]],,
56 enable_lib64=yes)
82805b60
TS
57AC_SUBST(enable_lib64)
58
595e27db
CH
59#
60# If the user specified a libdir ending in lib64 do not append another
61# 64 to the library names.
62#
63base_libdir=`basename "$libdir"`
64case $base_libdir in
65lib64)
66 enable_lib64=no
67esac
68
69#
70# Some important tools should be installed into the root partitions.
71#
72# Check whether exec_prefix=/usr: and install them to /sbin in that
73# case. If the user choses a different prefix assume he just wants
74# a local install for testing and not a system install.
75#
76case $exec_prefix:$prefix in
77NONE:NONE | NONE:/usr | /usr:*)
78 root_sbindir='/sbin'
595e27db 79 root_libdir="/${base_libdir}"
2ccb8cf0
CH
80 ;;
81*)
82 root_sbindir="${sbindir}"
83 root_libdir="${libdir}"
84 ;;
595e27db
CH
85esac
86
2ccb8cf0
CH
87AC_SUBST([root_sbindir])
88AC_SUBST([root_libdir])
89
d9ee1c4c
AE
90# Find localized files. Don't descend into any "dot directories"
91# (like .git or .pc from quilt). Strangely, the "-print" argument
92# to "find" is required, to avoid including such directories in the
93# list.
8c053393 94LOCALIZED_FILES=""
d9ee1c4c 95for lfile in `find ${srcdir} -path './.??*' -prune -o -name '*.c' -type f -print || exit 1`; do
8c053393
AM
96 LOCALIZED_FILES="$LOCALIZED_FILES \$(TOPDIR)/$lfile"
97done
98AC_SUBST(LOCALIZED_FILES)
99
16c44ed2
NS
100AC_PACKAGE_GLOBALS(xfsprogs)
101AC_PACKAGE_UTILITIES(xfsprogs)
82805b60 102AC_MULTILIB($enable_lib64)
93d9f139 103
6ec3f6ba
NS
104AC_PACKAGE_NEED_AIO_H
105AC_PACKAGE_NEED_LIO_LISTIO
106
0686de0f 107AC_PACKAGE_NEED_UUID_H
7b9d2be9 108AC_PACKAGE_NEED_UUIDCOMPARE
fc49813f 109
949c0f10
NS
110AC_PACKAGE_NEED_PTHREAD_H
111AC_PACKAGE_NEED_PTHREADMUTEXINIT
112
0bba1a49
NS
113AC_HAVE_FADVISE
114AC_HAVE_MADVISE
115AC_HAVE_MINCORE
116AC_HAVE_SENDFILE
cfe6e3f0
NS
117AC_HAVE_GETMNTENT
118AC_HAVE_GETMNTINFO
c0b5232a 119AC_HAVE_FALLOCATE
8f0e0912 120AC_HAVE_FIEMAP
197d5828
ES
121AC_HAVE_PREADV
122AC_HAVE_SYNC_FILE_RANGE
5ae294ea 123AC_HAVE_MNTENT
5121281b 124AC_HAVE_FLS
3bc05641 125AC_HAVE_READDIR
c14c7b79 126AC_HAVE_FSETXATTR
0bba1a49 127
6635d6ab
JT
128if test "$enable_blkid" = yes; then
129AC_HAVE_BLKID_TOPO
130fi
131
865f1075
JE
132AC_CHECK_SIZEOF([long])
133AC_CHECK_SIZEOF([char *])
cd960ece 134AC_TYPE_UMODE_T
16c44ed2 135AC_MANUAL_FORMAT
fc49813f 136
f474cd4f
JE
137AC_CONFIG_FILES([include/builddefs])
138AC_OUTPUT