]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - configure.in
Bump xfsprogs version number for recent changes.
[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 15[ --enable-readline=[yes/no] Enable readline command editing [default=no]],
541a1d4f 16 test $enable_readline = yes && libreadline="-lreadline",
e246ba5f 17 enable_readline=no)
e246ba5f
NS
18AC_SUBST(libreadline)
19AC_SUBST(enable_readline)
20
d4b9ebda 21AC_ARG_ENABLE(editline,
16c44ed2 22[ --enable-editline=[yes/no] Enable editline command editing [default=no]],
541a1d4f 23 test $enable_editline = yes && libeditline="-ledit",
d4b9ebda 24 enable_editline=no)
d4b9ebda
NS
25AC_SUBST(libeditline)
26AC_SUBST(enable_editline)
27
541a1d4f
NS
28AC_ARG_ENABLE(termcap,
29[ --enable-termcap=[yes/no] Enable terminal capabilities library [default=no]],
30 test $enable_termcap = yes && libtermcap="-ltermcap",)
31AC_SUBST(libtermcap)
32
16c44ed2
NS
33AC_PACKAGE_GLOBALS(xfsprogs)
34AC_PACKAGE_UTILITIES(xfsprogs)
93d9f139 35
0686de0f 36AC_PACKAGE_NEED_UUID_H
7b9d2be9 37AC_PACKAGE_NEED_UUIDCOMPARE
fc49813f 38
949c0f10
NS
39AC_PACKAGE_NEED_PTHREAD_H
40AC_PACKAGE_NEED_PTHREADMUTEXINIT
41
0bba1a49
NS
42AC_HAVE_FADVISE
43AC_HAVE_MADVISE
44AC_HAVE_MINCORE
45AC_HAVE_SENDFILE
cfe6e3f0
NS
46AC_HAVE_GETMNTENT
47AC_HAVE_GETMNTINFO
0bba1a49 48
16c44ed2
NS
49AC_TYPE_PSINT
50AC_TYPE_PSUNSIGNED
51AC_SIZEOF_POINTERS_AND_LONG
52AC_MANUAL_FORMAT
fc49813f 53
6c6508ec 54AC_OUTPUT(include/builddefs)