]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - configure.ac
configure: add mailing list contact
[thirdparty/xfsprogs-dev.git] / configure.ac
CommitLineData
54e8f4a8 1AC_INIT([xfsprogs], [4.5.0], [xfs@oss.sgi.com])
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
0caa2bae
JK
59librt="-lrt"
60AC_SUBST(librt)
61
595e27db
CH
62#
63# If the user specified a libdir ending in lib64 do not append another
64# 64 to the library names.
65#
66base_libdir=`basename "$libdir"`
67case $base_libdir in
68lib64)
69 enable_lib64=no
70esac
71
72#
73# Some important tools should be installed into the root partitions.
74#
75# Check whether exec_prefix=/usr: and install them to /sbin in that
76# case. If the user choses a different prefix assume he just wants
77# a local install for testing and not a system install.
78#
79case $exec_prefix:$prefix in
80NONE:NONE | NONE:/usr | /usr:*)
81 root_sbindir='/sbin'
595e27db 82 root_libdir="/${base_libdir}"
2ccb8cf0
CH
83 ;;
84*)
85 root_sbindir="${sbindir}"
86 root_libdir="${libdir}"
87 ;;
595e27db
CH
88esac
89
2ccb8cf0
CH
90AC_SUBST([root_sbindir])
91AC_SUBST([root_libdir])
92
d9ee1c4c
AE
93# Find localized files. Don't descend into any "dot directories"
94# (like .git or .pc from quilt). Strangely, the "-print" argument
95# to "find" is required, to avoid including such directories in the
96# list.
8c053393 97LOCALIZED_FILES=""
d9ee1c4c 98for lfile in `find ${srcdir} -path './.??*' -prune -o -name '*.c' -type f -print || exit 1`; do
8c053393
AM
99 LOCALIZED_FILES="$LOCALIZED_FILES \$(TOPDIR)/$lfile"
100done
101AC_SUBST(LOCALIZED_FILES)
102
16c44ed2
NS
103AC_PACKAGE_GLOBALS(xfsprogs)
104AC_PACKAGE_UTILITIES(xfsprogs)
82805b60 105AC_MULTILIB($enable_lib64)
93d9f139 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
a49984b3 127AC_HAVE_MREMAP
0bba1a49 128
6635d6ab
JT
129if test "$enable_blkid" = yes; then
130AC_HAVE_BLKID_TOPO
131fi
132
865f1075
JE
133AC_CHECK_SIZEOF([long])
134AC_CHECK_SIZEOF([char *])
cd960ece 135AC_TYPE_UMODE_T
16c44ed2 136AC_MANUAL_FORMAT
fc49813f 137
f474cd4f
JE
138AC_CONFIG_FILES([include/builddefs])
139AC_OUTPUT