]> sourceware.org Git - lvm2.git/blame - configure.in
Fix ftp urls
[lvm2.git] / configure.in
CommitLineData
795ca3e5
AK
1##
2## Copyright 1999-2000 Sistina Software, Inc.
3##
4## This is free software released under the GNU General Public License.
5## There is no warranty for this software. See the file COPYING for
6## details.
7##
8## See the file CONTRIBUTORS for a list of contributors.
9##
10## This file is maintained by:
11## AJ Lewis <lewis@sistina.com>
12##
13## File name: configure.in
14##
15## Description: Input file for autoconf. Generates the configure script
16## that tries to keep everything nice and portable. It also
17## simplifies distribution package building considerably.
18################################################################################
19
80992638 20################################################################################
8ce0cbda 21dnl -- Process this file with autoconf to produce a configure script.
13c7b701 22AC_INIT(lib/device/dev-cache.h)
795ca3e5 23
80992638 24################################################################################
8ce0cbda 25dnl -- setup the directory where autoconf has auxilary files
795ca3e5
AK
26AC_CONFIG_AUX_DIR(autoconf)
27
80992638 28################################################################################
8ce0cbda 29dnl -- Get system type
b896caa1
AK
30AC_CANONICAL_SYSTEM
31
32case "$host_os" in
33 linux*)
80992638 34 CFLAGS="$CFLAGS"
8ce0cbda 35 COPTIMISE_FLAG="-O2"
80992638 36 CLDFLAGS="$CLDFLAGS -Wl,--version-script,.export.sym"
8106cdd5
AK
37 CLDWHOLEARCHIVE="-Wl,-whole-archive"
38 CLDNOWHOLEARCHIVE="-Wl,-no-whole-archive"
80992638
AK
39 LDDEPS="$LDDEPS .export.sym"
40 LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
8106cdd5
AK
41 SOFLAG="-shared"
42 DEVMAPPER=yes
1a9ea74d 43 ODIRECT=yes
80992638 44 SELINUX=yes
d3c8211f 45 CLUSTER=internal
809fae91 46 FSADM=no ;;
8106cdd5 47 darwin*)
80992638 48 CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
8ce0cbda 49 COPTIMISE_FLAG="-O2"
80992638 50 CLDFLAGS="$CLDFLAGS"
8106cdd5
AK
51 CLDWHOLEARCHIVE="-all_load"
52 CLDNOWHOLEARCHIVE=
80992638
AK
53 LDDEPS="$LDDEPS"
54 LDFLAGS="$LDFLAGS"
8106cdd5
AK
55 SOFLAG="-dynamiclib"
56 DEVMAPPER=no
1a9ea74d 57 ODIRECT=no
80992638 58 SELINUX=no
d3c8211f 59 CLUSTER=none
1a9ea74d 60 FSADM=no ;;
b896caa1
AK
61esac
62
80992638 63################################################################################
8ce0cbda
AK
64dnl -- Checks for programs.
65AC_PROG_AWK
66AC_PROG_CC
67AC_PROG_INSTALL
68AC_PROG_LN_S
69AC_PROG_MAKE_SET
70AC_PROG_RANLIB
71
72################################################################################
73dnl -- Checks for header files.
80992638
AK
74AC_HEADER_DIRENT
75AC_HEADER_STDC
76AC_CHECK_HEADERS(fcntl.h malloc.h sys/ioctl.h unistd.h)
77
78################################################################################
8ce0cbda 79dnl -- Checks for typedefs, structures, and compiler characteristics.
80992638
AK
80AC_C_CONST
81AC_C_INLINE
82AC_TYPE_OFF_T
83AC_TYPE_PID_T
84AC_TYPE_SIZE_T
85AC_STRUCT_ST_RDEV
86AC_HEADER_TIME
87
88################################################################################
8ce0cbda 89dnl -- Prefix is /usr by default, the exec_prefix default is setup later
795ca3e5
AK
90AC_PREFIX_DEFAULT(/usr)
91
80992638
AK
92################################################################################
93dnl -- Parallel make jobs?
94AC_ARG_ENABLE(jobs, [ --enable-jobs=NUM Number of jobs to run simultaneously], JOBS=-j$enableval, JOBS=-j2)
a38df97f 95
80992638 96################################################################################
8ce0cbda 97dnl -- Setup the ownership of the files
80992638
AK
98echo $ac_n "Setting file owner to""... $ac_c" 1>&6
99OWNER="root"
100
795ca3e5
AK
101AC_ARG_WITH(user,
102 [ --with-user=USER Set the owner of installed files ],
a38df97f 103 [ OWNER="$withval" ])
80992638 104echo "$ac_t""$OWNER" 1>&6
a38df97f
AK
105
106if test x$OWNER != x; then
107 OWNER="-o $OWNER"
108fi
795ca3e5 109
80992638 110################################################################################
8ce0cbda 111dnl -- Setup the group ownership of the files
80992638
AK
112echo $ac_n "Setting group owner to""... $ac_c" 1>&6
113GROUP="root"
795ca3e5
AK
114AC_ARG_WITH(group,
115 [ --with-group=GROUP Set the group owner of installed files ],
a38df97f 116 [ GROUP="$withval" ])
80992638 117echo "$ac_t""$GROUP" 1>&6
a38df97f
AK
118
119if test x$GROUP != x; then
120 GROUP="-g $GROUP"
121fi
795ca3e5 122
80992638 123################################################################################
7d1552c9 124dnl -- LVM1 tool fallback option
80992638 125echo $ac_n "checking whether to enable lvm1 fallback""... $ac_c" 1>&6
7d1552c9
AK
126AC_ARG_ENABLE(lvm1_fallback, [ --enable-lvm1_fallback Use this to fall back and use LVM1 binaries if
127 device-mapper is missing from the kernel], LVM1_FALLBACK=$enableval, LVM1_FALLBACK=no)
80992638 128echo "$ac_t""$LVM1_FALLBACK" 1>&6
7d1552c9
AK
129
130if test x$LVM1_FALLBACK = xyes; then
131 CFLAGS="$CFLAGS -DLVM1_FALLBACK"
132fi
133
80992638 134################################################################################
5a52dca9 135dnl -- format1 inclusion type
80992638 136echo $ac_n "checking whether to include support for lvm1 metadata""... $ac_c" 1>&6
5a52dca9
AK
137AC_ARG_WITH(lvm1,
138 [ --with-lvm1=TYPE LVM1 metadata support: internal/shared/none
139 [TYPE=internal] ],
140 [ LVM1="$withval" ],
141 [ LVM1="internal" ])
80992638 142echo "$ac_t""$LVM1" 1>&6
5a52dca9
AK
143
144if [[ "x$LVM1" != xnone -a "x$LVM1" != xinternal -a "x$LVM1" != xshared ]];
145 then AC_MSG_ERROR(
146--with-lvm1 parameter invalid
147)
148 exit
149fi;
150
b896caa1
AK
151if test x$LVM1 = xinternal; then
152 CFLAGS="$CFLAGS -DLVM1_INTERNAL"
153fi
154
80992638 155################################################################################
d8ac0fbc 156dnl -- format_pool inclusion type
80992638 157echo $ac_n "checking whether to include support for GFS pool metadata""... $ac_c" 1>&6
d8ac0fbc 158AC_ARG_WITH(pool,
60329273 159 [ --with-pool=TYPE GFS pool read-only support: internal/shared/none
d8ac0fbc
AK
160 [TYPE=internal] ],
161 [ POOL="$withval" ],
162 [ POOL="internal" ])
80992638 163echo "$ac_t""$POOL" 1>&6
d8ac0fbc
AK
164
165if [[ "x$POOL" != xnone -a "x$POOL" != xinternal -a "x$POOL" != xshared ]];
166 then AC_MSG_ERROR(
167--with-pool parameter invalid
168)
169 exit
170fi;
171
172if test x$POOL = xinternal; then
173 CFLAGS="$CFLAGS -DPOOL_INTERNAL"
174fi
175
80992638 176################################################################################
d3c8211f 177dnl -- cluster_locking inclusion type
80992638 178echo $ac_n "checking whether to include support for cluster locking""... $ac_c" 1>&6
d3c8211f
AK
179AC_ARG_WITH(cluster,
180 [ --with-cluster=TYPE Cluster LVM locking support: internal/shared/none
181 [TYPE=internal] ],
182 [ CLUSTER="$withval" ])
80992638 183echo "$ac_t""$CLUSTER" 1>&6
d3c8211f
AK
184
185if [[ "x$CLUSTER" != xnone -a "x$CLUSTER" != xinternal -a "x$CLUSTER" != xshared ]];
186 then AC_MSG_ERROR(
187--with-cluster parameter invalid
188)
189 exit
190fi;
191
192if test x$CLUSTER = xinternal; then
193 CFLAGS="$CFLAGS -DCLUSTER_LOCKING_INTERNAL"
194fi
d8ac0fbc 195
80992638 196################################################################################
4922197a 197dnl -- snapshots inclusion type
80992638 198echo $ac_n "checking whether to include snapshots""... $ac_c" 1>&6
4922197a
AK
199AC_ARG_WITH(snapshots,
200 [ --with-snapshots=TYPE Snapshot support: internal/shared/none
201 [TYPE=internal] ],
202 [ SNAPSHOTS="$withval" ],
203 [ SNAPSHOTS="internal" ])
80992638 204echo "$ac_t""$SNAPSHOTS" 1>&6
4922197a
AK
205
206if [[ "x$SNAPSHOTS" != xnone -a "x$SNAPSHOTS" != xinternal -a "x$SNAPSHOTS" != xshared ]];
207 then AC_MSG_ERROR(
208--with-snapshots parameter invalid
209)
210 exit
211fi;
212
213if test x$SNAPSHOTS = xinternal; then
214 CFLAGS="$CFLAGS -DSNAPSHOT_INTERNAL"
215fi
216
80992638 217################################################################################
4922197a 218dnl -- mirrors inclusion type
80992638 219echo $ac_n "checking whether to include mirrors""... $ac_c" 1>&6
4922197a
AK
220AC_ARG_WITH(mirrors,
221 [ --with-mirrors=TYPE Mirror support: internal/shared/none
222 [TYPE=internal] ],
223 [ MIRRORS="$withval" ],
224 [ MIRRORS="internal" ])
80992638 225echo "$ac_t""$MIRRORS" 1>&6
4922197a
AK
226
227if [[ "x$MIRRORS" != xnone -a "x$MIRRORS" != xinternal -a "x$MIRRORS" != xshared ]];
228 then AC_MSG_ERROR(
229--with-mirrors parameter invalid
230)
231 exit
232fi;
233
234if test x$MIRRORS = xinternal; then
235 CFLAGS="$CFLAGS -DMIRRORED_INTERNAL"
236fi
237
80992638 238################################################################################
8ce0cbda 239dnl -- Enables staticly-linked tools
80992638 240echo $ac_n "checking whether to use static linking""... $ac_c" 1>&6
8106cdd5 241AC_ARG_ENABLE(static_link, [ --enable-static_link Use this to link the tools to their libraries
795ca3e5 242 statically. Default is dynamic linking], STATIC_LINK=$enableval, STATIC_LINK=no)
80992638 243echo "$ac_t""$STATIC_LINK" 1>&6
795ca3e5 244
80992638 245################################################################################
8ce0cbda 246dnl -- Enable readline
80992638 247echo $ac_n "checking whether to enable readline""... $ac_c" 1>&6
5a52dca9
AK
248AC_ARG_ENABLE(readline, [ --enable-readline Enable readline support], \
249READLINE=$enableval, READLINE=no)
80992638 250echo "$ac_t""$READLINE" 1>&6
795ca3e5 251
b896caa1
AK
252if test x$READLINE = xyes; then
253 CFLAGS="$CFLAGS -DREADLINE_SUPPORT"
254fi
255
80992638 256################################################################################
8ce0cbda 257dnl -- Disable selinux
80992638
AK
258echo $ac_n "checking whether to enable selinux support""... $ac_c" 1>&6
259AC_ARG_ENABLE(selinux, [ --disable-selinux Disable selinux support], \
260SELINUX=$enableval)
261echo "$ac_t""$SELINUX" 1>&6
262
263################################################################################
8ce0cbda 264dnl -- Build cluster LVM daemon
80992638 265echo $ac_n "checking whether to build cluster LVM daemon""... $ac_c" 1>&6
d3c8211f
AK
266AC_ARG_WITH(clvmd, [ --with-clvmd Build cluster LVM Daemon], \
267CLVMD=$withval, CLVMD=no)
80992638
AK
268echo "$ac_t""$CLVMD" 1>&6
269
8ce0cbda 270dnl -- If clvmd enabled without cluster locking, automagically include it
d3c8211f
AK
271if test x$CLVMD = xyes && test x$CLUSTER = xnone; then
272 CLUSTER=internal
273fi
d3c8211f 274
80992638 275################################################################################
8ce0cbda 276dnl -- Enable debugging
80992638 277echo $ac_n "checking whether to enable debugging""... $ac_c" 1>&6
8ef2b021
AK
278AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging], \
279DEBUG=yes, DEBUG=no)
69792976 280echo "$ac_t""$DEBUG" 1>&6
8ef2b021 281
8ce0cbda
AK
282dnl -- Normally turn off optimisation for debug builds
283if test x$DEBUG = xyes; then
284 COPTIMISE_FLAG=
285fi
286
287################################################################################
288dnl -- Override optimisation
289echo $ac_n "checking for C optimisation flag""... $ac_c" 1>&6
290AC_ARG_WITH(optimisation,
291 [ --with-optimisation=OPT C optimisation flag [OPT=-O2] ],
292 [ COPTIMISE_FLAG="$withval" ])
293echo "$ac_t""$COPTIMISE_FLAG" 1>&6
294
80992638 295################################################################################
8ce0cbda 296dnl -- Disable devmapper
80992638 297echo $ac_n "checking whether to use device-mapper""... $ac_c" 1>&6
199e490e 298AC_ARG_ENABLE(devmapper, [ --disable-devmapper Disable device-mapper interaction], \
8106cdd5 299DEVMAPPER=no)
69792976 300echo "$ac_t""$DEVMAPPER" 1>&6
199e490e 301
b896caa1
AK
302if test x$DEVMAPPER = xyes; then
303 CFLAGS="$CFLAGS -DDEVMAPPER_SUPPORT"
304fi
305
80992638 306################################################################################
8ce0cbda 307dnl -- Disable O_DIRECT
80992638 308echo $ac_n "checking whether to enable O_DIRECT""... $ac_c" 1>&6
2dc95e1c 309AC_ARG_ENABLE(o_direct, [ --disable-o_direct Disable O_DIRECT], \
8106cdd5 310ODIRECT=no)
69792976 311echo "$ac_t""$ODIRECT" 1>&6
2dc95e1c
AK
312
313if test x$ODIRECT = xyes; then
314 CFLAGS="$CFLAGS -DO_DIRECT_SUPPORT"
315fi
316
80992638 317################################################################################
8ce0cbda 318dnl -- Enable cmdlib
80992638 319echo $ac_n "checking whether to compile liblvm2cmd.so""... $ac_c" 1>&6
8106cdd5
AK
320AC_ARG_ENABLE(cmdlib, [ --enable-cmdlib Build shared command library], \
321CMDLIB=yes, CMDLIB=no)
322echo "$ac_t""$CMDLIB" 1>&6
323
324if test x$CMDLIB = xyes; then
325 CFLAGS="$CFLAGS -DCMDLIB"
326fi
327
80992638 328################################################################################
8ce0cbda 329dnl -- Enable fsadm
80992638 330echo $ac_n "checking whether to build fsadm""... $ac_c" 1>&6
809fae91
AK
331AC_ARG_ENABLE(fsadm, [ --enable-fsadm Enable fsadm], FSADM=yes)
332echo "$ac_t""$FSADM" 1>&6
333
80992638 334################################################################################
8ce0cbda 335dnl -- Mess with default exec_prefix
795ca3e5
AK
336if [[ "x$exec_prefix" = xNONE -a "x$prefix" = xNONE ]];
337 then exec_prefix="";
338fi;
339
80992638 340################################################################################
8ce0cbda 341dnl -- Checks for library functions.
795ca3e5
AK
342AC_PROG_GCC_TRADITIONAL
343AC_TYPE_SIGNAL
344AC_FUNC_VPRINTF
345AC_CHECK_FUNCS(mkdir rmdir uname)
346
80992638 347################################################################################
8ce0cbda 348dnl -- Check for termcap (Shamelessly copied from parted 1.4.17)
795ca3e5
AK
349if test x$READLINE = xyes; then
350 AC_SEARCH_LIBS(tgetent, ncurses curses termcap termlib, ,
351 AC_MSG_ERROR(
352termcap could not be found which is required for the
353--enable-readline option (which is enabled by default). Either disable readline
354support with --disable-readline or download and install termcap from:
355 ftp.gnu.org/gnu/termcap
356Note: if you are using precompiled packages you will also need the development
357 package as well (which may be called termcap-devel or something similar).
358Note: (n)curses also seems to work as a substitute for termcap. This was
359 not found either - but you could try installing that as well.
360)
361 exit
362 )
363fi
364
80992638 365################################################################################
8ce0cbda 366dnl -- Check for dlopen
26e7f2e0
AK
367AC_CHECK_LIB(dl, dlopen, HAVE_LIBDL=yes, HAVE_LIBDL=no)
368
74583a91 369if [[ "x$HAVE_LIBDL" = xyes -a "x$STATIC_LINK" = xno ]]; then
b896caa1 370 CFLAGS="$CFLAGS -DHAVE_LIBDL"
26e7f2e0 371 LIBS="-ldl $LIBS"
d68a82ec
AK
372else
373 HAVE_LIBDL=no
26e7f2e0
AK
374fi
375
80992638 376################################################################################
8ce0cbda 377dnl -- Check for shared/static conflicts
80992638
AK
378if [[ \( "x$LVM1" = xshared -o "x$POOL" = xshared -o "x$CLUSTER" = xshared \
379 -o "x$SNAPSHOTS" = xshared -o "x$MIRRORS" = xshared \
4922197a 380 \) -a "x$STATIC_LINK" = xyes ]];
d68a82ec 381 then AC_MSG_ERROR(
036f273a 382Features cannot be 'shared' when building statically
d68a82ec
AK
383)
384 exit
036f273a
AK
385fi
386
80992638 387################################################################################
8ce0cbda 388dnl -- Check for is_selinux_enabled
80992638
AK
389if test x$SELINUX = xyes; then
390 AC_CHECK_LIB(selinux, is_selinux_enabled, HAVE_SELINUX=yes, HAVE_SELINUX=no)
391
392 if test x$HAVE_SELINUX = xyes; then
393 CFLAGS="$CFLAGS -DHAVE_SELINUX"
394 LIBS="-lselinux $LIBS"
395 else
396 echo "Disabling selinux" 1>&6
397 fi
036f273a 398fi
d68a82ec 399
80992638 400################################################################################
8ce0cbda 401dnl -- Check for getopt
b896caa1
AK
402AC_CHECK_HEADERS(getopt.h, CFLAGS="$CFLAGS -DHAVE_GETOPTLONG")
403
80992638 404################################################################################
8ce0cbda 405dnl -- Check for readline (Shamelessly copied from parted 1.4.17)
795ca3e5
AK
406if test x$READLINE = xyes; then
407 AC_CHECK_LIB(readline, readline, ,
408 AC_MSG_ERROR(
409GNU Readline could not be found which is required for the
410--enable-readline option (which is enabled by default). Either disable readline
411support with --disable-readline or download and install readline from:
412 ftp.gnu.org/gnu/readline
413Note: if you are using precompiled packages you will also need the development
414package as well (which may be called readline-devel or something similar).
415)
416 exit
417 )
b896caa1
AK
418 AC_CHECK_FUNC(rl_completion_matches, CFLAGS="$CFLAGS -DHAVE_RL_COMPLETION_MATCHES")
419
795ca3e5
AK
420fi
421
80992638 422################################################################################
8ce0cbda 423dnl -- Internationalisation stuff
69792976 424echo $ac_n "checking whether to enable internationalisation""... $ac_c" 1>&6
69792976
AK
425AC_ARG_ENABLE(nls, [ --enable-nls Enable Native Language Support],\
426 INTL=yes, INTL=no)
427echo "$ac_t""$INTL" 1>&6
428
429if test x$INTL = xyes; then
430 INTL_PACKAGE="lvm2"
431 AC_PATH_PROG(MSGFMT, msgfmt)
432 if [[ "x$MSGFMT" == x ]];
433 then AC_MSG_ERROR(
434 msgfmt not found in path $PATH
435 )
436 exit
437 fi;
438
439 AC_ARG_WITH(localedir,
440 [ --with-localedir=DIR Translation files in DIR [PREFIX/share/locale]],
441 [ LOCALEDIR="$withval" ],
442 [ LOCALEDIR='${prefix}/share/locale' ])
443fi
444
80992638 445################################################################################
4a7f3eb2 446AC_ARG_WITH(confdir,
0a62c911 447 [ --with-confdir=DIR Configuration files in DIR [/etc]],
4a7f3eb2 448 [ CONFDIR="$withval" ],
0a62c911
AK
449 [ CONFDIR='/etc' ])
450
451AC_ARG_WITH(staticdir,
452 [ --with-staticdir=DIR Static binary in DIR [EXEC_PREFIX/sbin]],
453 [ STATICDIR="$withval" ],
454 [ STATICDIR='${exec_prefix}/sbin' ])
455
4a7f3eb2 456
80992638 457################################################################################
fae0c576
AK
458if test "-f VERSION"; then
459 LVM_VERSION="\"`cat VERSION`\""
460else
461 LVM_VERSION="Unknown"
462fi
463
80992638 464################################################################################
795ca3e5
AK
465AC_SUBST(JOBS)
466AC_SUBST(STATIC_LINK)
5a52dca9 467AC_SUBST(LVM1)
d8ac0fbc 468AC_SUBST(POOL)
4922197a
AK
469AC_SUBST(SNAPSHOTS)
470AC_SUBST(MIRRORS)
795ca3e5
AK
471AC_SUBST(OWNER)
472AC_SUBST(GROUP)
b896caa1 473AC_SUBST(CFLAGS)
8ce0cbda 474AC_SUBST(COPTIMISE_FLAG)
8106cdd5
AK
475AC_SUBST(CLDFLAGS)
476AC_SUBST(CLDWHOLEARCHIVE)
477AC_SUBST(CLDNOWHOLEARCHIVE)
80992638
AK
478AC_SUBST(LDDEPS)
479AC_SUBST(LDFLAGS)
8106cdd5 480AC_SUBST(SOFLAG)
5f68d858 481AC_SUBST(LIBS)
fae0c576 482AC_SUBST(LVM_VERSION)
7d1552c9 483AC_SUBST(LVM1_FALLBACK)
8ef2b021 484AC_SUBST(DEBUG)
199e490e 485AC_SUBST(DEVMAPPER)
26e7f2e0 486AC_SUBST(HAVE_LIBDL)
036f273a 487AC_SUBST(HAVE_SELINUX)
8106cdd5 488AC_SUBST(CMDLIB)
69792976
AK
489AC_SUBST(MSGFMT)
490AC_SUBST(LOCALEDIR)
4a7f3eb2 491AC_SUBST(CONFDIR)
0a62c911 492AC_SUBST(STATICDIR)
69792976
AK
493AC_SUBST(INTL_PACKAGE)
494AC_SUBST(INTL)
d3c8211f
AK
495AC_SUBST(CLVMD)
496AC_SUBST(CLUSTER)
1a9ea74d 497AC_SUBST(FSADM)
8106cdd5 498
80992638 499################################################################################
8ce0cbda
AK
500dnl -- First and last lines should not contain files to generate in order to
501dnl -- keep utility scripts running properly
795ca3e5
AK
502AC_OUTPUT( \
503Makefile \
80992638 504make.tmpl \
d3c8211f
AK
505daemons/Makefile \
506daemons/clvmd/Makefile \
4a7f3eb2 507doc/Makefile \
fa42e649 508include/Makefile \
795ca3e5 509lib/Makefile \
5a52dca9 510lib/format1/Makefile \
d8ac0fbc 511lib/format_pool/Makefile \
d3c8211f 512lib/locking/Makefile \
4922197a
AK
513lib/mirror/Makefile \
514lib/snapshot/Makefile \
795ca3e5 515man/Makefile \
69792976 516po/Makefile \
795ca3e5 517tools/Makefile \
fae0c576 518tools/version.h \
1a9ea74d 519tools/fsadm/Makefile \
e6efb2b0 520test/mm/Makefile \
43b7b8cf 521test/device/Makefile \
e0304b58 522test/format1/Makefile \
d1b28647 523test/regex/Makefile \
291ec3b6 524test/filters/Makefile \
795ca3e5 525)
2dc95e1c
AK
526
527if test x$ODIRECT != xyes; then
528 echo
529 echo Warning: O_DIRECT disabled.
530 echo Use of pvmove may cause machine to lock up under low memory conditions.
531 echo
532fi
809fae91
AK
533
534if test x$FSADM == xyes; then
535 echo
536 echo Warning: fsadm support is untested.
537 echo
538fi
This page took 0.097413 seconds and 5 git commands to generate.