]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - configure.in
Support rtinherit bit in xfs_io chattr/lsattr commands.
[thirdparty/xfsprogs-dev.git] / configure.in
CommitLineData
fc49813f 1AC_INIT(include/libxfs.h)
9440d84d
NS
2AC_CONFIG_HEADER(include/platform_defs.h)
3
534b0bfd 4AC_ARG_ENABLE(shared,
dfc13ce1 5[ --enable-shared=[yes/no] Enable use of shared libraries [default=yes]],,
d5dca43b
NS
6 enable_shared=yes)
7AC_SUBST(enable_shared)
8
16c44ed2
NS
9AC_ARG_ENABLE(gettext,
10[ --enable-gettext=[yes/no] Enable alternate language support [default=yes]],,
11 enable_gettext=yes)
12AC_SUBST(enable_gettext)
13
e246ba5f 14AC_ARG_ENABLE(readline,
16c44ed2
NS
15[ --enable-readline=[yes/no] Enable readline command editing [default=no]],
16 test $enable_readline = yes && libreadline="-lreadline -ltermcap",
e246ba5f 17 enable_readline=no)
e246ba5f
NS
18AC_SUBST(libreadline)
19AC_SUBST(enable_readline)
20
d4b9ebda 21AC_ARG_ENABLE(editline,
16c44ed2
NS
22[ --enable-editline=[yes/no] Enable editline command editing [default=no]],
23 test $enable_editline = yes && libeditline="-ledit -ltermcap",
d4b9ebda 24 enable_editline=no)
d4b9ebda
NS
25AC_SUBST(libeditline)
26AC_SUBST(enable_editline)
27
16c44ed2
NS
28AC_PACKAGE_GLOBALS(xfsprogs)
29AC_PACKAGE_UTILITIES(xfsprogs)
93d9f139 30
0686de0f 31AC_PACKAGE_NEED_UUID_H
7b9d2be9 32AC_PACKAGE_NEED_UUIDCOMPARE
fc49813f 33
949c0f10
NS
34AC_PACKAGE_NEED_PTHREAD_H
35AC_PACKAGE_NEED_PTHREADMUTEXINIT
36
16c44ed2
NS
37AC_TYPE_PSINT
38AC_TYPE_PSUNSIGNED
39AC_SIZEOF_POINTERS_AND_LONG
40AC_MANUAL_FORMAT
fc49813f 41
6c6508ec 42AC_OUTPUT(include/builddefs)