]> sourceware.org Git - lvm2.git/blame - configure.in
Add given user prefix to make target install_initscripts
[lvm2.git] / configure.in
CommitLineData
d0191583 1###############################################################################
ad6254c5 2## Copyright (C) 2000-2004 Sistina Software, Inc. All rights reserved.
ec6a6fbe 3## Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved.
795ca3e5 4##
ad6254c5
AK
5## This copyrighted material is made available to anyone wishing to use,
6## modify, copy, or redistribute it subject to the terms and conditions
7## of the GNU General Public License v.2.
795ca3e5 8##
ad6254c5
AK
9## You should have received a copy of the GNU General Public License
10## along with this program; if not, write to the Free Software Foundation,
11## Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
795ca3e5
AK
12################################################################################
13
e24fb506 14AC_PREREQ(2.61)
80992638 15################################################################################
8ce0cbda 16dnl -- Process this file with autoconf to produce a configure script.
7a197a62
AK
17AC_INIT
18AC_CONFIG_SRCDIR([lib/device/dev-cache.h])
d0191583 19AC_CONFIG_HEADERS([lib/misc/configure.h])
72b2cb61 20
80992638 21################################################################################
ad6254c5 22dnl -- Setup the directory where autoconf has auxilary files
d3a356b4 23AC_CONFIG_AUX_DIR(autoconf)
795ca3e5 24
80992638 25################################################################################
8ce0cbda 26dnl -- Get system type
7a197a62 27AC_CANONICAL_TARGET([])
b896caa1
AK
28
29case "$host_os" in
30 linux*)
7f54ef36 31 CFLAGS="$CFLAGS"
8ce0cbda 32 COPTIMISE_FLAG="-O2"
80992638 33 CLDFLAGS="$CLDFLAGS -Wl,--version-script,.export.sym"
8106cdd5
AK
34 CLDWHOLEARCHIVE="-Wl,-whole-archive"
35 CLDNOWHOLEARCHIVE="-Wl,-no-whole-archive"
80992638
AK
36 LDDEPS="$LDDEPS .export.sym"
37 LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
d0191583 38 LIB_SUFFIX=so
8106cdd5 39 DEVMAPPER=yes
1a9ea74d 40 ODIRECT=yes
d0191583 41 DM_IOCTLS=yes
80992638 42 SELINUX=yes
d3c8211f 43 CLUSTER=internal
f6fc418d 44 FSADM=yes
d0191583 45 ;;
8106cdd5 46 darwin*)
80992638 47 CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
8ce0cbda 48 COPTIMISE_FLAG="-O2"
80992638 49 CLDFLAGS="$CLDFLAGS"
8106cdd5
AK
50 CLDWHOLEARCHIVE="-all_load"
51 CLDNOWHOLEARCHIVE=
d0191583 52 LIB_SUFFIX=dylib
a653923f 53 DEVMAPPER=yes
1a9ea74d 54 ODIRECT=no
d0191583 55 DM_IOCTLS=no
80992638 56 SELINUX=no
d3c8211f 57 CLUSTER=none
d0191583
JM
58 FSADM=no
59 ;;
b896caa1
AK
60esac
61
80992638 62################################################################################
8ce0cbda 63dnl -- Checks for programs.
162aefe8 64AC_PROG_SED
8ce0cbda
AK
65AC_PROG_AWK
66AC_PROG_CC
d0191583
JM
67
68dnl probably no longer needed in 2008, but...
69AC_PROG_GCC_TRADITIONAL
8ce0cbda
AK
70AC_PROG_INSTALL
71AC_PROG_LN_S
72AC_PROG_MAKE_SET
162aefe8 73AC_PROG_MKDIR_P
5556819a 74AC_PROG_RANLIB
8a2fc586
AK
75AC_PATH_PROG(CFLOW_CMD, cflow)
76AC_PATH_PROG(CSCOPE_CMD, cscope)
8ce0cbda
AK
77
78################################################################################
d0191583 79dnl -- Check for header files.
80992638 80AC_HEADER_DIRENT
d911ec67 81AC_HEADER_MAJOR
80992638 82AC_HEADER_STDC
ad6254c5
AK
83AC_HEADER_SYS_WAIT
84AC_HEADER_TIME
85
d0191583 86AC_CHECK_HEADERS([locale.h stddef.h syslog.h sys/file.h sys/time.h assert.h \
d911ec67
AK
87 langinfo.h libgen.h signal.h sys/mman.h sys/resource.h sys/utsname.h \
88 sys/wait.h time.h], ,
d0191583 89 [AC_MSG_ERROR(bailing out)])
ad6254c5
AK
90
91case "$host_os" in
92 linux*)
93 AC_CHECK_HEADERS(asm/byteorder.h linux/fs.h malloc.h,,AC_MSG_ERROR(bailing out)) ;;
94 darwin*)
95 AC_CHECK_HEADERS(machine/endian.h sys/disk.h,,AC_MSG_ERROR(bailing out)) ;;
96esac
80992638 97
d0191583
JM
98AC_CHECK_HEADERS([ctype.h dirent.h errno.h fcntl.h getopt.h inttypes.h limits.h \
99 stdarg.h stdio.h stdlib.h string.h sys/ioctl.h sys/param.h sys/stat.h \
100 sys/types.h unistd.h], , [AC_MSG_ERROR(bailing out)])
101AC_CHECK_HEADERS(termios.h sys/statvfs.h)
102
80992638 103################################################################################
d0191583 104dnl -- Check for typedefs, structures, and compiler characteristics.
80992638
AK
105AC_C_CONST
106AC_C_INLINE
d0191583 107AC_CHECK_MEMBERS([struct stat.st_rdev])
80992638
AK
108AC_TYPE_OFF_T
109AC_TYPE_PID_T
d0191583 110AC_TYPE_SIGNAL
80992638 111AC_TYPE_SIZE_T
ad6254c5 112AC_TYPE_MODE_T
d911ec67
AK
113AC_TYPE_INT8_T
114AC_TYPE_INT16_T
115AC_TYPE_INT32_T
116AC_TYPE_INT64_T
117AC_TYPE_SSIZE_T
118AC_TYPE_UID_T
119AC_TYPE_UINT8_T
120AC_TYPE_UINT16_T
121AC_TYPE_UINT32_T
122AC_TYPE_UINT64_T
7a197a62 123AC_CHECK_MEMBERS([struct stat.st_rdev])
ad6254c5
AK
124AC_STRUCT_TM
125
126################################################################################
127dnl -- Check for functions
7c9fd3ea 128AC_CHECK_FUNCS([ftruncate gethostname getpagesize \
d911ec67
AK
129 gettimeofday memset mkdir mkfifo rmdir munmap nl_langinfo setenv setlocale \
130 strcasecmp strchr strcspn strspn strdup strncasecmp strerror strrchr \
131 strstr strtol strtoul uname], , [AC_MSG_ERROR(bailing out)])
a0f9708e 132AC_CHECK_FUNCS(siginterrupt)
ad6254c5
AK
133AC_FUNC_ALLOCA
134AC_FUNC_CLOSEDIR_VOID
d911ec67 135AC_FUNC_CHOWN
ad6254c5
AK
136AC_FUNC_FORK
137AC_FUNC_LSTAT
138AC_FUNC_MALLOC
139AC_FUNC_MEMCMP
140AC_FUNC_MMAP
d911ec67 141AC_FUNC_REALLOC
ad6254c5
AK
142AC_FUNC_STAT
143AC_FUNC_STRTOD
d0191583 144AC_FUNC_VPRINTF
80992638 145
9c961554
MB
146################################################################################
147dnl -- Enables statically-linked tools
148AC_MSG_CHECKING(whether to use static linking)
149AC_ARG_ENABLE(static_link,
71082be4
ZK
150 AC_HELP_STRING([--enable-static_link],
151 [use this to link the tools to their libraries
152 statically (default is dynamic linking]),
153 STATIC_LINK=$enableval, STATIC_LINK=no)
9c961554
MB
154AC_MSG_RESULT($STATIC_LINK)
155
80992638 156################################################################################
8ce0cbda 157dnl -- Prefix is /usr by default, the exec_prefix default is setup later
795ca3e5
AK
158AC_PREFIX_DEFAULT(/usr)
159
80992638 160################################################################################
8ce0cbda 161dnl -- Setup the ownership of the files
ad6254c5 162AC_MSG_CHECKING(file owner)
795ca3e5 163AC_ARG_WITH(user,
71082be4
ZK
164 AC_HELP_STRING([--with-user=USER],
165 [set the owner of installed files [[USER=]]]),
166 OWNER=$withval)
ad6254c5 167AC_MSG_RESULT($OWNER)
a38df97f
AK
168
169if test x$OWNER != x; then
23b059e7 170 INSTALL="$INSTALL -o $OWNER"
a38df97f 171fi
795ca3e5 172
80992638 173################################################################################
8ce0cbda 174dnl -- Setup the group ownership of the files
ad6254c5 175AC_MSG_CHECKING(group owner)
795ca3e5 176AC_ARG_WITH(group,
71082be4
ZK
177 AC_HELP_STRING([--with-group=GROUP],
178 [set the group owner of installed files [[GROUP=]]]),
179 GROUP=$withval)
ad6254c5 180AC_MSG_RESULT($GROUP)
a38df97f
AK
181
182if test x$GROUP != x; then
23b059e7 183 INSTALL="$INSTALL -g $GROUP"
a38df97f 184fi
795ca3e5 185
0782ad50
AK
186################################################################################
187dnl -- Setup device node ownership
188AC_MSG_CHECKING(device node uid)
189
190AC_ARG_WITH(device-uid,
71082be4
ZK
191 AC_HELP_STRING([--with-device-uid=UID],
192 [set the owner used for new device nodes [[UID=0]]]),
193 DM_DEVICE_UID=$withval, DM_DEVICE_UID=0)
0782ad50
AK
194AC_MSG_RESULT($DM_DEVICE_UID)
195
196################################################################################
197dnl -- Setup device group ownership
198AC_MSG_CHECKING(device node gid)
199
200AC_ARG_WITH(device-gid,
71082be4
ZK
201 AC_HELP_STRING([--with-device-gid=GID],
202 [set the group used for new device nodes [[GID=0]]]),
203 DM_DEVICE_GID=$withval, DM_DEVICE_GID=0)
0782ad50
AK
204AC_MSG_RESULT($DM_DEVICE_GID)
205
f6fc418d
AK
206################################################################################
207dnl -- Setup device mode
208AC_MSG_CHECKING(device node mode)
209
210AC_ARG_WITH(device-mode,
71082be4
ZK
211 AC_HELP_STRING([--with-device-mode=MODE],
212 [set the mode used for new device nodes [[MODE=0600]]]),
213 DM_DEVICE_MODE=$withval, DM_DEVICE_MODE=0600)
f6fc418d
AK
214AC_MSG_RESULT($DM_DEVICE_MODE)
215
80992638 216################################################################################
7d1552c9 217dnl -- LVM1 tool fallback option
ad6254c5 218AC_MSG_CHECKING(whether to enable lvm1 fallback)
71082be4
ZK
219AC_ARG_ENABLE(lvm1_fallback,
220 AC_HELP_STRING([--enable-lvm1_fallback],
221 [use this to fall back and use LVM1 binaries if
222 device-mapper is missing from the kernel]),
223 LVM1_FALLBACK=$enableval, LVM1_FALLBACK=no)
ad6254c5 224AC_MSG_RESULT($LVM1_FALLBACK)
7d1552c9
AK
225
226if test x$LVM1_FALLBACK = xyes; then
72b2cb61 227 AC_DEFINE([LVM1_FALLBACK], 1, [Define to 1 if 'lvm' should fall back to using LVM1 binaries if device-mapper is missing from the kernel])
7d1552c9
AK
228fi
229
80992638 230################################################################################
5a52dca9 231dnl -- format1 inclusion type
ad6254c5 232AC_MSG_CHECKING(whether to include support for lvm1 metadata)
5a52dca9 233AC_ARG_WITH(lvm1,
71082be4
ZK
234 AC_HELP_STRING([--with-lvm1=TYPE],
235 [LVM1 metadata support: internal/shared/none
236 [[TYPE=internal]]]),
237 LVM1=$withval, LVM1=internal)
ad6254c5 238AC_MSG_RESULT($LVM1)
5a52dca9
AK
239
240if [[ "x$LVM1" != xnone -a "x$LVM1" != xinternal -a "x$LVM1" != xshared ]];
241 then AC_MSG_ERROR(
242--with-lvm1 parameter invalid
243)
5a52dca9
AK
244fi;
245
b896caa1 246if test x$LVM1 = xinternal; then
72b2cb61 247 AC_DEFINE([LVM1_INTERNAL], 1, [Define to 1 to include built-in support for LVM1 metadata.])
b896caa1
AK
248fi
249
80992638 250################################################################################
d8ac0fbc 251dnl -- format_pool inclusion type
ad6254c5 252AC_MSG_CHECKING(whether to include support for GFS pool metadata)
d8ac0fbc 253AC_ARG_WITH(pool,
71082be4
ZK
254 AC_HELP_STRING([--with-pool=TYPE],
255 [GFS pool read-only support: internal/shared/none
256 [[TYPE=internal]]]),
257 POOL=$withval, POOL=internal)
ad6254c5 258AC_MSG_RESULT($POOL)
d8ac0fbc
AK
259
260if [[ "x$POOL" != xnone -a "x$POOL" != xinternal -a "x$POOL" != xshared ]];
261 then AC_MSG_ERROR(
262--with-pool parameter invalid
263)
d8ac0fbc
AK
264fi;
265
266if test x$POOL = xinternal; then
72b2cb61 267 AC_DEFINE([POOL_INTERNAL], 1, [Define to 1 to include built-in support for GFS pool metadata.])
d8ac0fbc
AK
268fi
269
80992638 270################################################################################
d3c8211f 271dnl -- cluster_locking inclusion type
ad6254c5 272AC_MSG_CHECKING(whether to include support for cluster locking)
d3c8211f 273AC_ARG_WITH(cluster,
71082be4
ZK
274 AC_HELP_STRING([--with-cluster=TYPE],
275 [cluster LVM locking support: internal/shared/none
276 [[TYPE=internal]]]),
277 CLUSTER=$withval)
ad6254c5 278AC_MSG_RESULT($CLUSTER)
d3c8211f
AK
279
280if [[ "x$CLUSTER" != xnone -a "x$CLUSTER" != xinternal -a "x$CLUSTER" != xshared ]];
281 then AC_MSG_ERROR(
282--with-cluster parameter invalid
283)
d3c8211f
AK
284fi;
285
286if test x$CLUSTER = xinternal; then
72b2cb61 287 AC_DEFINE([CLUSTER_LOCKING_INTERNAL], 1, [Define to 1 to include built-in support for clustered LVM locking.])
d3c8211f 288fi
d8ac0fbc 289
80992638 290################################################################################
4922197a 291dnl -- snapshots inclusion type
ad6254c5 292AC_MSG_CHECKING(whether to include snapshots)
4922197a 293AC_ARG_WITH(snapshots,
71082be4
ZK
294 AC_HELP_STRING([--with-snapshots=TYPE],
295 [snapshot support: internal/shared/none
296 [[TYPE=internal]]]),
297 SNAPSHOTS=$withval, SNAPSHOTS=internal)
ad6254c5 298AC_MSG_RESULT($SNAPSHOTS)
4922197a
AK
299
300if [[ "x$SNAPSHOTS" != xnone -a "x$SNAPSHOTS" != xinternal -a "x$SNAPSHOTS" != xshared ]];
301 then AC_MSG_ERROR(
302--with-snapshots parameter invalid
303)
4922197a
AK
304fi;
305
306if test x$SNAPSHOTS = xinternal; then
72b2cb61 307 AC_DEFINE([SNAPSHOT_INTERNAL], 1, [Define to 1 to include built-in support for snapshots.])
4922197a
AK
308fi
309
80992638 310################################################################################
4922197a 311dnl -- mirrors inclusion type
ad6254c5 312AC_MSG_CHECKING(whether to include mirrors)
4922197a 313AC_ARG_WITH(mirrors,
71082be4
ZK
314 AC_HELP_STRING([--with-mirrors=TYPE],
315 [mirror support: internal/shared/none
316 [[TYPE=internal]]]),
317 MIRRORS=$withval, MIRRORS=internal)
ad6254c5 318AC_MSG_RESULT($MIRRORS)
4922197a
AK
319
320if [[ "x$MIRRORS" != xnone -a "x$MIRRORS" != xinternal -a "x$MIRRORS" != xshared ]];
321 then AC_MSG_ERROR(
322--with-mirrors parameter invalid
323)
4922197a
AK
324fi;
325
326if test x$MIRRORS = xinternal; then
72b2cb61 327 AC_DEFINE([MIRRORED_INTERNAL], 1, [Define to 1 to include built-in support for mirrors.])
4922197a
AK
328fi
329
8fea97b7
ZK
330################################################################################
331dnl -- asynchronous volume replicator inclusion type
332AC_MSG_CHECKING(whether to include replicators)
71082be4
ZK
333AC_ARG_WITH(replicators,
334 AC_HELP_STRING([--with-replicators=TYPE],
335 [replicator support: internal/shared/none
336 [[TYPE=none]]]),
337 REPLICATORS=$withval, REPLICATORS=none)
8fea97b7
ZK
338AC_MSG_RESULT($REPLICATORS)
339
340case "$REPLICATORS" in
341 none|shared) ;;
342 internal) AC_DEFINE([REPLICATOR_INTERNAL], 1,
343 [Define to 1 to include built-in support for replicators.]) ;;
344 *) AC_MSG_ERROR([--with-replicators parameter invalid ($REPLICATORS)]) ;;
345esac
346
80992638 347################################################################################
1b523347 348dnl -- Disable readline
ad6254c5 349AC_MSG_CHECKING(whether to enable readline)
2c189a57 350AC_ARG_ENABLE([readline],
71082be4
ZK
351 AC_HELP_STRING([--disable-readline], [disable readline support]),
352 READLINE=$enableval, READLINE=maybe)
ad6254c5 353AC_MSG_RESULT($READLINE)
795ca3e5 354
8b1a3214
AK
355################################################################################
356dnl -- Disable realtime clock support
357AC_MSG_CHECKING(whether to enable realtime support)
71082be4
ZK
358AC_ARG_ENABLE(realtime,
359 AC_HELP_STRING([--enable-realtime], [enable realtime clock support]),
360 REALTIME=$enableval)
8b1a3214
AK
361AC_MSG_RESULT($REALTIME)
362
90c80887
AK
363################################################################################
364dnl -- Init pkg-config with dummy invokation:
365dnl -- this is required because PKG_CHECK_MODULES macro is expanded
366dnl -- to initialize the pkg-config environment only at the first invokation,
367dnl -- that would be conditional in this configure.in.
368pkg_config_init() {
369 PKG_CHECK_MODULES(PKGCONFIGINIT, pkgconfiginit, [],
370 [AC_MSG_RESULT([pkg-config initialized])])
371 PKGCONFIG_INIT=1
372}
373
80992638 374################################################################################
8ce0cbda 375dnl -- Build cluster LVM daemon
ad6254c5 376AC_MSG_CHECKING(whether to build cluster LVM daemon)
a266258f 377AC_ARG_WITH(clvmd,
71082be4 378 [ --with-clvmd=TYPE build cluster LVM Daemon
8c222979 379 The following cluster manager combinations are valid:
a946372e
AK
380 * cman,gulm (RHEL4 or equivalent)
381 * cman (RHEL5 or equivalent)
382 * cman,corosync,openais (or selection of them)
649c4507 383 * singlenode (localhost only)
a946372e
AK
384 * all (autodetect)
385 * none (disable build)
71082be4
ZK
386 [[TYPE=none]]],
387 CLVMD=$withval, CLVMD=none)
a266258f 388if test x$CLVMD = xyes; then
5c7fc7c4 389 CLVMD=all
b1098701 390fi
ad6254c5 391AC_MSG_RESULT($CLVMD)
80992638 392
8ce0cbda 393dnl -- If clvmd enabled without cluster locking, automagically include it
a266258f 394if test x$CLVMD != xnone && test x$CLUSTER = xnone; then
d3c8211f
AK
395 CLUSTER=internal
396fi
d3c8211f 397
90c80887 398dnl -- init pkgconfig if required
34b6075d 399if test x$CLVMD != xnone && test x$PKGCONFIG_INIT != x1; then
90c80887
AK
400 pkg_config_init
401fi
402
34b6075d
FDN
403dnl -- Express clvmd init script Required-Start / Required-Stop
404CLVMD_CMANAGERS=""
405dnl -- On RHEL4/RHEL5, qdiskd is started from a separate init script.
406dnl -- Enable if we are build for either cman or gulm.
407CLVMD_NEEDS_QDISKD=no
90c80887 408
a946372e
AK
409dnl -- define build types
410if [[ `expr x"$CLVMD" : '.*gulm.*'` != 0 ]]; then
411 BUILDGULM=yes
34b6075d
FDN
412 CLVMD_CMANAGERS="$CLVMD_CMANAGERS lock_gulmd"
413 CLVMD_NEEDS_QDISKD=yes
414fi
415if [[ `expr x"$CLVMD" : '.*cman.*'` != 0 ]]; then
416 BUILDCMAN=yes
417 CLVMD_CMANAGERS="$CLVMD_CMANAGERS cman"
418 CLVMD_NEEDS_QDISKD=yes
a946372e
AK
419fi
420if [[ `expr x"$CLVMD" : '.*corosync.*'` != 0 ]]; then
421 BUILDCOROSYNC=yes
34b6075d 422 CLVMD_CMANAGERS="$CLVMD_CMANAGERS corosync"
a946372e
AK
423fi
424if [[ `expr x"$CLVMD" : '.*openais.*'` != 0 ]]; then
425 BUILDOPENAIS=yes
34b6075d 426 CLVMD_CMANAGERS="$CLVMD_CMANAGERS openais"
a946372e 427fi
34b6075d
FDN
428if test x$CLVMD_NEEDS_QDISKD != xno; then
429 CLVMD_CMANAGERS="$CLVMD_CMANAGERS qdiskd"
a946372e
AK
430fi
431
432dnl -- sanity check around user selection
433if test x$BUILDGULM = xyes; then
434 if test x$BUILDCOROSYNC = xyes || \
435 test x$BUILDOPENAIS = xyes; then
436 AC_MSG_ERROR([requested clvmd configuration is not valid])
437 fi
438fi
439
a946372e
AK
440dnl -- define a soft bailout if we are autodetecting
441soft_bailout() {
442 NOTFOUND=1
443}
444
445hard_bailout() {
446 AC_MSG_ERROR([bailing out])
447}
448
449dnl -- if clvmd=all then set soft_bailout (we don't want to error)
450dnl -- and set all builds to yes. We need to do this here
451dnl -- to skip the gulm + openais|corosync sanity check above.
452if test x$CLVMD = xall; then
453 bailout=soft_bailout
454 BUILDGULM=yes
455 BUILDCMAN=yes
456 BUILDCOROSYNC=yes
457 BUILDOPENAIS=yes
458else
459 bailout=hard_bailout
460fi
461
462dnl -- helper macro to check libs without adding them to LIBS
463check_lib_no_libs() {
464 lib_no_libs_arg1=$1
465 shift
466 lib_no_libs_arg2=$1
467 shift
468 lib_no_libs_args=$@
469 AC_CHECK_LIB([$lib_no_libs_arg1],
470 [$lib_no_libs_arg2],,
471 [$bailout],
472 [$lib_no_libs_args])
473 LIBS=$ac_check_lib_save_LIBS
474}
475
476dnl -- Look for gulm libraries if required.
477if test x$BUILDGULM = xyes; then
478 PKG_CHECK_MODULES(CCS, libccs, [HAVE_CCS=yes],
479 [NOTFOUND=0
480 AC_CHECK_HEADERS(ccs.h,,$bailout)
481 check_lib_no_libs ccs ccs_connect
482 if test $NOTFOUND = 0; then
483 AC_MSG_RESULT([no pkg for libccs, using -lccs])
484 CCS_LIBS="-lccs"
485 HAVE_CCS=yes
486 fi])
487 PKG_CHECK_MODULES(GULM, libgulm, [HAVE_GULM=yes],
488 [NOTFOUND=0
489 AC_CHECK_HEADERS(libgulm.h,,$bailout)
490 check_lib_no_libs gulm lg_core_login
491 if test $NOTFOUND = 0; then
492 AC_MSG_RESULT([no pkg for libgulm, using -lgulm])
493 GULM_LIBS="-lgulm"
494 HAVE_GULM=yes
495 fi])
496fi
497
498dnl -- Look for cman libraries if required.
499if test x$BUILDCMAN = xyes; then
500 PKG_CHECK_MODULES(CMAN, libcman, [HAVE_CMAN=yes],
501 [NOTFOUND=0
502 AC_CHECK_HEADERS(libcman.h,,$bailout)
503 check_lib_no_libs cman cman_init
504 if test $NOTFOUND = 0; then
505 AC_MSG_RESULT([no pkg for libcman, using -lcman])
506 CMAN_LIBS="-lcman"
507 HAVE_CMAN=yes
508 fi])
509 CHECKCONFDB=yes
510 CHECKDLM=yes
511fi
512
513dnl -- Look for corosync that's required also for openais build
514dnl -- only enough recent version of corosync ship pkg-config files.
515dnl -- We can safely rely on that to detect the correct bits.
516if test x$BUILDCOROSYNC = xyes || \
517 test x$BUILDOPENAIS = xyes; then
518 PKG_CHECK_MODULES(COROSYNC, corosync, [HAVE_COROSYNC=yes], $bailout)
519 CHECKCONFDB=yes
520fi
521
edf47283 522dnl -- Look for corosync libraries if required.
a946372e
AK
523if test x$BUILDCOROSYNC = xyes; then
524 PKG_CHECK_MODULES(QUORUM, libquorum, [HAVE_QUORUM=yes], $bailout)
525 CHECKCPG=yes
526 CHECKDLM=yes
527fi
528
529dnl -- Look for openais libraries if required.
530if test x$BUILDOPENAIS = xyes; then
531 PKG_CHECK_MODULES(SALCK, libSaLck, [HAVE_SALCK=yes], $bailout)
532 CHECKCPG=yes
533fi
534
535dnl -- Below are checks for libraries common to more than one build.
536
537dnl -- Check confdb library.
538dnl -- mandatory for corosync build.
539dnl -- optional for openais/cman build.
540
541if test x$CHECKCONFDB = xyes; then
542 PKG_CHECK_MODULES(CONFDB, libconfdb,
543 [HAVE_CONFDB=yes],
544 [HAVE_CONFDB=no])
545
546 AC_CHECK_HEADERS(corosync/confdb.h,
547 [HAVE_CONFDB_H=yes],
548 [HAVE_CONFDB_H=no])
549
550 if test x$HAVE_CONFDB != xyes && \
551 test x$HAVE_CONFDB_H = xyes; then
552 check_lib_no_libs confdb confdb_initialize
553 AC_MSG_RESULT([no pkg for confdb, using -lconfdb])
554 CONFDB_LIBS="-lconfdb"
555 HAVE_CONFDB=yes
556 fi
557
558 if test x$BUILDCOROSYNC = xyes && \
559 test x$HAVE_CONFDB != xyes &&
560 test x$CLVMD != xall; then
561 AC_MSG_ERROR([bailing out... confdb library is required])
562 fi
563fi
564
565dnl -- Check cpg library.
566if test x$CHECKCPG = xyes; then
567 PKG_CHECK_MODULES(CPG, libcpg, [HAVE_CPG=yes], $bailout)
568fi
569
570dnl -- Check dlm library.
571if test x$CHECKDLM = xyes; then
572 PKG_CHECK_MODULES(DLM, libdlm, [HAVE_DLM=yes],
573 [NOTFOUND=0
574 AC_CHECK_HEADERS(libdlm.h,,$bailout)
575 check_lib_no_libs dlm dlm_lock -lpthread
576 if test $NOTFOUND = 0; then
577 AC_MSG_RESULT([no pkg for libdlm, using -ldlm])
578 DLM_LIBS="-ldlm -lpthread"
579 HAVE_DLM=yes
580 fi])
581fi
582
583dnl -- If we are autodetecting, we need to re-create
34b6075d
FDN
584dnl -- the depedencies checks and set a proper CLVMD,
585dnl -- together with init script Required-Start/Stop entries.
a946372e 586if test x$CLVMD = xall; then
8c222979 587 CLVMD=none
34b6075d
FDN
588 CLVMD_CMANAGERS=""
589 CLVMD_NEEDS_QDISKD=no
a946372e
AK
590 if test x$HAVE_CCS = xyes && \
591 test x$HAVE_GULM = xyes; then
8c222979
FDN
592 AC_MSG_RESULT([Enabling clvmd gulm cluster manager])
593 CLVMD="$CLVMD,gulm"
34b6075d
FDN
594 CLVMD_CMANAGERS="$CLVMD_CMANAGERS lock_gulmd"
595 CLVMD_NEEDS_QDISKD=yes
a946372e
AK
596 fi
597 if test x$HAVE_CMAN = xyes && \
598 test x$HAVE_DLM = xyes; then
8c222979
FDN
599 AC_MSG_RESULT([Enabling clvmd cman cluster manager])
600 CLVMD="$CLVMD,cman"
34b6075d
FDN
601 CLVMD_CMANAGERS="$CLVMD_CMANAGERS cman"
602 CLVMD_NEEDS_QDISKD=yes
a946372e
AK
603 fi
604 if test x$HAVE_COROSYNC = xyes && \
605 test x$HAVE_QUORUM = xyes && \
606 test x$HAVE_CPG = xyes && \
607 test x$HAVE_DLM = xyes && \
608 test x$HAVE_CONFDB = xyes; then
8c222979
FDN
609 AC_MSG_RESULT([Enabling clvmd corosync cluster manager])
610 CLVMD="$CLVMD,corosync"
34b6075d 611 CLVMD_CMANAGERS="$CLVMD_CMANAGERS corosync"
a946372e
AK
612 fi
613 if test x$HAVE_COROSYNC = xyes && \
614 test x$HAVE_CPG = xyes && \
615 test x$HAVE_SALCK = xyes; then
8c222979
FDN
616 AC_MSG_RESULT([Enabling clvmd openais cluster manager])
617 CLVMD="$CLVMD,openais"
34b6075d
FDN
618 CLVMD_CMANAGERS="$CLVMD_CMANAGERS openais"
619 fi
620 if test x$CLVMD_NEEDS_QDISKD != xno; then
621 CLVMD_CMANAGERS="$CLVMD_CMANAGERS qdiskd"
8c222979
FDN
622 fi
623 if test x$CLVMD = xnone; then
624 AC_MSG_RESULT([Disabling clvmd build. No cluster manager detected.])
a946372e 625 fi
edf47283
AK
626fi
627
8c4e8a18
FDN
628################################################################################
629dnl -- clvmd pidfile
630if test "x$CLVMD" != xnone; then
631 AC_ARG_WITH(clvmd-pidfile,
632 AC_HELP_STRING([--with-clvmd-pidfile=PATH],
633 [clvmd pidfile [[/var/run/clvmd.pid]]]),
634 CLVMD_PIDFILE=$withval,
635 CLVMD_PIDFILE="/var/run/clvmd.pid")
636 AC_DEFINE_UNQUOTED(CLVMD_PIDFILE, ["$CLVMD_PIDFILE"],
637 [Path to clvmd pidfile.])
638fi
639
3c14bcca 640################################################################################
66fd4529
AK
641dnl -- Build cluster mirror log daemon
642AC_MSG_CHECKING(whether to build cluster mirror log daemon)
71082be4
ZK
643AC_ARG_ENABLE(cmirrord,
644 AC_HELP_STRING([--enable-cmirrord],
645 [enable the cluster mirror log daemon]),
646 CMIRRORD=$enableval, CMIRRORD=no)
66fd4529 647AC_MSG_RESULT($CMIRRORD)
3c14bcca 648
66fd4529
AK
649BUILD_CMIRRORD=$CMIRRORD
650
651################################################################################
652dnl -- cmirrord pidfile
66fd4529
AK
653if test "x$BUILD_CMIRRORD" = xyes; then
654 AC_ARG_WITH(cmirrord-pidfile,
71082be4
ZK
655 AC_HELP_STRING([--with-cmirrord-pidfile=PATH],
656 [cmirrord pidfile [[/var/run/cmirrord.pid]]]),
657 CMIRRORD_PIDFILE=$withval,
658 CMIRRORD_PIDFILE="/var/run/cmirrord.pid")
659 AC_DEFINE_UNQUOTED(CMIRRORD_PIDFILE, ["$CMIRRORD_PIDFILE"],
660 [Path to cmirrord pidfile.])
66fd4529
AK
661fi
662
663################################################################################
3c14bcca 664dnl -- Look for corosync libraries if required.
66fd4529 665if [[ "x$BUILD_CMIRRORD" = xyes ]]; then
90c80887
AK
666 dnl -- init pkgconfig if required
667 if test x$PKGCONFIG_INIT != x1; then
668 pkg_config_init
669 fi
670 PKG_CHECK_MODULES(SACKPT, libSaCkpt)
671 if test x$HAVE_CPG != xyes; then
672 PKG_CHECK_MODULES(CPG, libcpg)
673 fi
3c14bcca
JEB
674fi
675
80992638 676################################################################################
8ce0cbda 677dnl -- Enable debugging
ad6254c5 678AC_MSG_CHECKING(whether to enable debugging)
71082be4
ZK
679AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [enable debugging]),
680 DEBUG=$enableval, DEBUG=no)
ad6254c5 681AC_MSG_RESULT($DEBUG)
8ef2b021 682
8ce0cbda
AK
683dnl -- Normally turn off optimisation for debug builds
684if test x$DEBUG = xyes; then
685 COPTIMISE_FLAG=
8a2fc586
AK
686else
687 CSCOPE_CMD=
8ce0cbda
AK
688fi
689
690################################################################################
691dnl -- Override optimisation
ad6254c5 692AC_MSG_CHECKING(for C optimisation flag)
8ce0cbda 693AC_ARG_WITH(optimisation,
71082be4
ZK
694 AC_HELP_STRING([--with-optimisation=OPT],
695 [C optimisation flag [[OPT=-O2]]]),
696 COPTIMISE_FLAG=$withval)
ad6254c5 697AC_MSG_RESULT($COPTIMISE_FLAG)
8ce0cbda 698
fddafd51
ZK
699################################################################################
700dnl -- Enable profiling
5556819a 701AC_MSG_CHECKING(whether to gather gcov profiling data)
fddafd51 702AC_ARG_ENABLE(profiling,
71082be4
ZK
703 AC_HELP_STRING(--enable-profiling, [gather gcov profiling data]),
704 PROFILING=$enableval, PROFILING=no)
5556819a
AK
705AC_MSG_RESULT($PROFILING)
706
707if test "x$PROFILING" = xyes; then
708 COPTIMISE_FLAG="$COPTIMISE_FLAG -fprofile-arcs -ftest-coverage"
fd4728e1
ZK
709 AC_PATH_PROG(LCOV, lcov)
710 AC_PATH_PROG(GENHTML, genhtml)
711 if test -z "$LCOV" -o -z "$GENHTML"; then
b145d876
ZK
712 AC_MSG_ERROR([lcov and genhtml are required for profiling])
713 fi
fd4728e1
ZK
714 AC_PATH_PROG(GENPNG, genpng)
715 if test -n "$GENPNG"; then
716 AC_MSG_CHECKING([whether $GENPNG has all required modules])
717 if $GENPNG --help > /dev/null 2>&1 ; then
718 AC_MSG_RESULT(ok)
719 GENHTML="$GENHTML --frames"
720 else
721 AC_MSG_RESULT(not supported)
722 AC_MSG_WARN([GD.pm perl module is not installed])
723 GENPNG=
724 fi
725 fi
5556819a 726fi
fddafd51 727
1033d120
JT
728################################################################################
729dnl -- Enable testing
730AC_MSG_CHECKING(whether to enable unit testing)
731AC_ARG_ENABLE(testing,
732 AC_HELP_STRING(--enable-testing, [enable testing targets in the makefile]),
733 TESTING=$enableval, TESTING=no)
734AC_MSG_RESULT($TESTING)
735
736if test "$TESTING" = yes; then
737 AC_PATH_PROG(RUBY19, ruby1.9)
738 AC_PATH_PROG(VALGRIND, valgrind)
739 if test -z "$RUBY19" -o -z "$VALGRIND"; then
740 AC_MSG_ERROR([ruby1.9 and valgrind are required for testing])
741 fi
742fi
743
52e1564f
JT
744################################################################################
745dnl -- Enable valgrind awareness of memory pools
746AC_MSG_CHECKING(whether to enable valgrind awareness of pools)
747AC_ARG_ENABLE(valgrind_pool,
748 AC_HELP_STRING(--enable-valgrind-pool, [enable valgrind awareness of pools]),
749 VALGRIND_POOL=$enableval, VALGRIND_POOL=no)
750AC_MSG_RESULT($VALGRIND_POOL)
751
752if test "$VALGRIND_POOL" = yes; then
753 AC_CHECK_HEADERS([valgrind/memcheck.h], , [AC_MSG_ERROR(bailing out)])
754 AC_DEFINE([VALGRIND_POOL], 1, [Enable a valgrind aware build of pool])
755fi
756
80992638 757################################################################################
8ce0cbda 758dnl -- Disable devmapper
ad6254c5 759AC_MSG_CHECKING(whether to use device-mapper)
71082be4
ZK
760AC_ARG_ENABLE(devmapper,
761 AC_HELP_STRING([--disable-devmapper],
762 [disable LVM2 device-mapper interaction]),
763 DEVMAPPER=$enableval)
ad6254c5 764AC_MSG_RESULT($DEVMAPPER)
199e490e 765
b896caa1 766if test x$DEVMAPPER = xyes; then
f6fc418d 767 AC_DEFINE([DEVMAPPER_SUPPORT], 1, [Define to 1 to enable LVM2 device-mapper interaction.])
b896caa1
AK
768fi
769
5d518f1f
AK
770################################################################################
771dnl -- Enable udev synchronisation
772AC_MSG_CHECKING(whether to enable synchronisation with udev processing)
71082be4
ZK
773AC_ARG_ENABLE(udev_sync,
774 AC_HELP_STRING([--enable-udev_sync],
775 [enable synchronisation with udev processing]),
776 UDEV_SYNC=$enableval, UDEV_SYNC=no)
5d518f1f
AK
777AC_MSG_RESULT($UDEV_SYNC)
778
779if test x$UDEV_SYNC = xyes; then
f7f0854e
ZK
780 AC_CHECK_LIB(udev, udev_queue_get_udev_is_active,
781 [UDEV_PC="libudev"; UDEV_LIBS="-ludev"],
782 [AC_MSG_ERROR([bailing out... libudev library is required])])
5d518f1f
AK
783 AC_DEFINE([UDEV_SYNC_SUPPORT], 1, [Define to 1 to enable synchronisation with udev processing.])
784fi
785
786dnl -- Enable udev rules
787AC_MSG_CHECKING(whether to enable installation of udev rules required for synchronisation)
71082be4
ZK
788AC_ARG_ENABLE(udev_rules,
789 AC_HELP_STRING([--enable-udev_rules],
790 [install rule files needed for udev synchronisation]),
791 UDEV_RULES=$enableval, UDEV_RULES=$UDEV_SYNC)
5d518f1f
AK
792AC_MSG_RESULT($UDEV_RULES)
793
f6fc418d
AK
794################################################################################
795dnl -- Compatibility mode
71082be4
ZK
796AC_ARG_ENABLE(compat,
797 AC_HELP_STRING([--enable-compat],
798 [enable support for old device-mapper versions]),
799 DM_COMPAT=$enableval, DM_COMPAT=no)
f6fc418d 800
95eaa683
AK
801################################################################################
802dnl -- Compatible units suffix mode
803AC_ARG_ENABLE(units-compat,
71082be4
ZK
804 AC_HELP_STRING([--enable-units-compat],
805 [enable output compatibility with old versions that
806 that do not use KiB-style unit suffixes]),
807 UNITS_COMPAT=$enableval, UNITS_COMPAT=no)
95eaa683
AK
808
809if test x$UNITS_COMPAT = xyes; then
810 AC_DEFINE([DEFAULT_SI_UNIT_CONSISTENCY], 0, [Define to 0 to reinstate the pre-2.02.54 handling of unit suffixes.])
811fi
812
f6fc418d
AK
813################################################################################
814dnl -- Disable ioctl
71082be4
ZK
815AC_ARG_ENABLE(ioctl,
816 AC_HELP_STRING([--disable-driver],
817 [disable calls to device-mapper in the kernel]),
818 DM_IOCTLS=$enableval)
f6fc418d 819
80992638 820################################################################################
8ce0cbda 821dnl -- Disable O_DIRECT
ad6254c5 822AC_MSG_CHECKING(whether to enable O_DIRECT)
71082be4
ZK
823AC_ARG_ENABLE(o_direct,
824 AC_HELP_STRING([--disable-o_direct], [disable O_DIRECT]),
825 ODIRECT=$enableval)
ad6254c5 826AC_MSG_RESULT($ODIRECT)
2dc95e1c
AK
827
828if test x$ODIRECT = xyes; then
72b2cb61 829 AC_DEFINE([O_DIRECT_SUPPORT], 1, [Define to 1 to enable O_DIRECT support.])
2dc95e1c
AK
830fi
831
572fefeb
AK
832################################################################################
833dnl -- Enable liblvm2app.so
834AC_MSG_CHECKING(whether to build liblvm2app.so application library)
835AC_ARG_ENABLE(applib,
71082be4
ZK
836 AC_HELP_STRING([--enable-applib], [build application library]),
837 APPLIB=$enableval, APPLIB=no)
572fefeb
AK
838AC_MSG_RESULT($APPLIB)
839AC_SUBST([LVM2APP_LIB])
840test x$APPLIB = xyes \
841 && LVM2APP_LIB=-llvm2app \
842 || LVM2APP_LIB=
843
80992638 844################################################################################
8ce0cbda 845dnl -- Enable cmdlib
ad6254c5 846AC_MSG_CHECKING(whether to compile liblvm2cmd.so)
71082be4
ZK
847AC_ARG_ENABLE(cmdlib,
848 AC_HELP_STRING([--enable-cmdlib], [build shared command library]),
849 CMDLIB=$enableval, CMDLIB=no)
ad6254c5 850AC_MSG_RESULT($CMDLIB)
aa4d1e31 851AC_SUBST([LVM2CMD_LIB])
2a9a80c9 852test x$CMDLIB = xyes \
aa4d1e31
JM
853 && LVM2CMD_LIB=-llvm2cmd \
854 || LVM2CMD_LIB=
8106cdd5 855
f6fc418d
AK
856################################################################################
857dnl -- Enable pkg-config
71082be4
ZK
858AC_ARG_ENABLE(pkgconfig,
859 AC_HELP_STRING([--enable-pkgconfig], [install pkgconfig support]),
860 PKGCONFIG=$enableval, PKGCONFIG=no)
2a9a80c9 861
23b059e7
ZK
862################################################################################
863dnl -- Enable installation of writable files by user
71082be4
ZK
864AC_ARG_ENABLE(write_install,
865 AC_HELP_STRING([--enable-write_install],
866 [install user writable files]),
867 WRITE_INSTALL=$enableval, WRITE_INSTALL=no)
23b059e7 868
80992638 869################################################################################
8ce0cbda 870dnl -- Enable fsadm
1995c9ff 871AC_MSG_CHECKING(whether to install fsadm)
71082be4
ZK
872AC_ARG_ENABLE(fsadm, AC_HELP_STRING([--disable-fsadm], [disable fsadm]),
873 FSADM=$enableval)
ad6254c5 874AC_MSG_RESULT($FSADM)
809fae91 875
06f62ad1
AK
876################################################################################
877dnl -- enable dmeventd handling
878AC_MSG_CHECKING(whether to use dmeventd)
71082be4
ZK
879AC_ARG_ENABLE(dmeventd, AC_HELP_STRING([--enable-dmeventd],
880 [enable the device-mapper event daemon]),
881 DMEVENTD=$enableval)
06f62ad1
AK
882AC_MSG_RESULT($DMEVENTD)
883
f6fc418d
AK
884BUILD_DMEVENTD=$DMEVENTD
885
06f62ad1 886dnl -- dmeventd currently requires internal mirror support
2a9a80c9
PR
887if test x$DMEVENTD = xyes; then
888 if test x$MIRRORS != xinternal; then
889 AC_MSG_ERROR(
890 --enable-dmeventd currently requires --with-mirrors=internal
891 )
892 fi
893 if test x$CMDLIB = xno; then
894 AC_MSG_ERROR(
895 --enable-dmeventd requires --enable-cmdlib to be used as well
896 )
897 fi
06f62ad1
AK
898fi
899
15d91f5a 900if test x$DMEVENTD = xyes; then
72b2cb61 901 AC_DEFINE([DMEVENTD], 1, [Define to 1 to enable the device-mapper event daemon.])
15d91f5a 902fi
f6fc418d
AK
903
904################################################################################
905dnl -- getline included in recent libc
906
907AC_CHECK_LIB(c, getline, AC_DEFINE([HAVE_GETLINE], 1,
908 [Define to 1 if getline is available.]))
909
910################################################################################
911dnl -- canonicalize_file_name included in recent libc
912
913AC_CHECK_LIB(c, canonicalize_file_name,
914 AC_DEFINE([HAVE_CANONICALIZE_FILE_NAME], 1,
915 [Define to 1 if canonicalize_file_name is available.]))
916
80992638 917################################################################################
d0191583 918dnl -- Clear default exec_prefix - install into /sbin rather than /usr/sbin
795ca3e5
AK
919if [[ "x$exec_prefix" = xNONE -a "x$prefix" = xNONE ]];
920 then exec_prefix="";
921fi;
922
80992638 923################################################################################
8ce0cbda 924dnl -- Check for dlopen
19a2c6e0 925AC_CHECK_LIB(dl, dlopen, [
72b2cb61 926 AC_DEFINE([HAVE_LIBDL], 1, [Define to 1 if dynamic libraries are available.])
19a2c6e0
ZK
927 DL_LIBS="-ldl"
928 HAVE_LIBDL=yes ], [
929 DL_LIBS=
930 HAVE_LIBDL=no ])
26e7f2e0 931
80992638 932################################################################################
8ce0cbda 933dnl -- Check for shared/static conflicts
80992638
AK
934if [[ \( "x$LVM1" = xshared -o "x$POOL" = xshared -o "x$CLUSTER" = xshared \
935 -o "x$SNAPSHOTS" = xshared -o "x$MIRRORS" = xshared \
4922197a 936 \) -a "x$STATIC_LINK" = xyes ]];
d68a82ec 937 then AC_MSG_ERROR(
036f273a 938Features cannot be 'shared' when building statically
d68a82ec 939)
036f273a
AK
940fi
941
f30875db
ZK
942################################################################################
943if [[ "$DMEVENTD" = yes -o "$CLVMD" != none ]] ; then
944 AC_CHECK_LIB([pthread], [pthread_mutex_lock],
945 [PTHREAD_LIBS="-lpthread"], hard_bailout)
946fi
947
d0191583
JM
948################################################################################
949dnl -- Disable selinux
950AC_MSG_CHECKING(whether to enable selinux support)
71082be4
ZK
951AC_ARG_ENABLE(selinux,
952 AC_HELP_STRING([--disable-selinux], [disable selinux support]),
953 SELINUX=$enableval)
d0191583
JM
954AC_MSG_RESULT($SELINUX)
955
80992638 956################################################################################
8a2fc586 957dnl -- Check for selinux
80992638 958if test x$SELINUX = xyes; then
f8f6ec92
ZK
959 AC_CHECK_LIB([sepol], [sepol_check_context], [
960 AC_DEFINE([HAVE_SEPOL], 1, [Define to 1 if sepol_check_context is available.])
961 SELINUX_LIBS="-lsepol"])
8a2fc586 962
f8f6ec92
ZK
963 AC_CHECK_LIB([selinux], [is_selinux_enabled], [
964 AC_CHECK_HEADERS([selinux/selinux.h],, hard_bailout)
72b2cb61 965 AC_DEFINE([HAVE_SELINUX], 1, [Define to 1 to include support for selinux.])
e1b8a236 966 SELINUX_LIBS="-lselinux $SELINUX_LIBS"
f7f0854e 967 SELINUX_PC="libselinux"
f8f6ec92 968 HAVE_SELINUX=yes ], [
ad6254c5 969 AC_MSG_WARN(Disabling selinux)
f8f6ec92 970 SELINUX_LIBS=
f7f0854e 971 SELINUX_PC=
f8f6ec92 972 HAVE_SELINUX=no ])
036f273a 973fi
d68a82ec 974
8b1a3214
AK
975################################################################################
976dnl -- Check for realtime clock support
977if test x$REALTIME = xyes; then
8b1a3214 978 AC_CHECK_LIB(rt, clock_gettime, HAVE_REALTIME=yes, HAVE_REALTIME=no)
8b1a3214
AK
979
980 if test x$HAVE_REALTIME = xyes; then
981 AC_DEFINE([HAVE_REALTIME], 1, [Define to 1 to include support for realtime clock.])
982 LIBS="-lrt $LIBS"
983 else
984 AC_MSG_WARN(Disabling realtime clock)
985 fi
986fi
987
80992638 988################################################################################
8ce0cbda 989dnl -- Check for getopt
d0191583 990AC_CHECK_HEADERS(getopt.h, AC_DEFINE([HAVE_GETOPTLONG], 1, [Define to 1 if getopt_long is available.]))
b896caa1 991
80992638 992################################################################################
8ce0cbda 993dnl -- Check for readline (Shamelessly copied from parted 1.4.17)
ea7cfb00 994if test x$READLINE != xno; then
539f4a77
ZK
995 lvm_saved_libs=$LIBS
996 AC_SEARCH_LIBS([tgetent], [tinfo ncurses curses termcap termlib],
997 READLINE_LIBS=$ac_cv_search_tgetent, [
998 if test "$READLINE" = yes; then
999 AC_MSG_ERROR(
1000[termcap could not be found which is required for the
1001--enable-readline option (which is enabled by default). Either disable readline
1002support with --disable-readline or download and install termcap from:
1003 ftp.gnu.org/gnu/termcap
1004Note: if you are using precompiled packages you will also need the development
1005 package as well (which may be called termcap-devel or something similar).
1006Note: (n)curses also seems to work as a substitute for termcap. This was
1007 not found either - but you could try installing that as well.])
1008 fi])
1009 dnl -- Old systems may need extra termcap dependency explicitly in LIBS
1010 AC_CHECK_LIB([readline], [readline], [
1011 AC_DEFINE([READLINE_SUPPORT], 1,
1012 [Define to 1 to include the LVM readline shell.])
1013 dnl -- Try only with -lreadline and check for different symbol
1014 LIBS=$lvm_saved_libs
1015 AC_CHECK_LIB([readline], [rl_line_buffer],
1016 [ READLINE_LIBS="-lreadline" ], [
1017 AC_MSG_RESULT([linking -lreadline with $READLINE_LIBS needed])
1018 READLINE_LIBS="-lreadline $READLINE_LIBS"
1019 ]) ], [
1020 READLINE_LIBS=
1021 if test "$READLINE" = yes; then
1022 AC_MSG_ERROR(
1023[GNU Readline could not be found which is required for the
795ca3e5
AK
1024--enable-readline option (which is enabled by default). Either disable readline
1025support with --disable-readline or download and install readline from:
1026 ftp.gnu.org/gnu/readline
1027Note: if you are using precompiled packages you will also need the development
539f4a77
ZK
1028package as well (which may be called readline-devel or something similar).])
1029 fi ])
1030 LIBS="$READLINE_LIBS $lvm_saved_libs"
1031 AC_CHECK_FUNCS([rl_completion_matches])
1032 LIBS=$lvm_saved_libs
795ca3e5
AK
1033fi
1034
80992638 1035################################################################################
8ce0cbda 1036dnl -- Internationalisation stuff
ad6254c5 1037AC_MSG_CHECKING(whether to enable internationalisation)
71082be4
ZK
1038AC_ARG_ENABLE(nls,
1039 AC_HELP_STRING([--enable-nls], [enable Native Language Support]),
1040 INTL=$enableval, INTL=no)
ad6254c5 1041AC_MSG_RESULT($INTL)
69792976
AK
1042
1043if test x$INTL = xyes; then
f6fc418d 1044# FIXME - Move this - can be device-mapper too
69792976
AK
1045 INTL_PACKAGE="lvm2"
1046 AC_PATH_PROG(MSGFMT, msgfmt)
1047 if [[ "x$MSGFMT" == x ]];
1048 then AC_MSG_ERROR(
1049 msgfmt not found in path $PATH
1050 )
69792976
AK
1051 fi;
1052
1053 AC_ARG_WITH(localedir,
71082be4
ZK
1054 AC_HELP_STRING([--with-localedir=DIR],
1055 [translation files in DIR
1056 [[PREFIX/share/locale]]]),
1057 LOCALEDIR=$withval, LOCALEDIR='${prefix}/share/locale')
69792976
AK
1058fi
1059
80992638 1060################################################################################
4a7f3eb2 1061AC_ARG_WITH(confdir,
71082be4
ZK
1062 AC_HELP_STRING([--with-confdir=DIR],
1063 [configuration files in DIR [[/etc]]]),
1064 CONFDIR=$withval, CONFDIR="/etc")
0a62c911
AK
1065
1066AC_ARG_WITH(staticdir,
71082be4
ZK
1067 AC_HELP_STRING([--with-staticdir=DIR],
1068 [static binaries in DIR [[EPREFIX/sbin]]]),
1069 STATICDIR=$withval, STATICDIR='${exec_prefix}/sbin')
0a62c911 1070
68f2de6d 1071AC_ARG_WITH(usrlibdir,
71082be4
ZK
1072 AC_HELP_STRING([--with-usrlibdir=DIR],
1073 [usrlib in DIR [[PREFIX/lib]]]),
1074 usrlibdir=$withval, usrlibdir='${prefix}/lib')
68f2de6d
AK
1075
1076AC_ARG_WITH(usrsbindir,
71082be4
ZK
1077 AC_HELP_STRING([--with-usrsbindir=DIR],
1078 [usrsbin executables in DIR [[PREFIX/sbin]]]),
1079 usrsbindir=$withval, usrsbindir='${prefix}/sbin')
68f2de6d 1080
5d518f1f
AK
1081################################################################################
1082AC_ARG_WITH(udev_prefix,
71082be4
ZK
1083 AC_HELP_STRING([--with-udev-prefix=UPREFIX],
1084 [install udev rule files in UPREFIX [[EPREFIX]]]),
1085 udev_prefix=$withval, udev_prefix='${exec_prefix}')
5d518f1f 1086
78ce7acc 1087AC_ARG_WITH(udevdir,
71082be4
ZK
1088 AC_HELP_STRING([--with-udevdir=DIR],
1089 [udev rules in DIR [[UPREFIX/lib/udev/rules.d]]]),
1090 udevdir=$withval, udevdir='${udev_prefix}/lib/udev/rules.d')
5d518f1f 1091
ad6254c5
AK
1092################################################################################
1093dnl -- Ensure additional headers required
1094if test x$READLINE = xyes; then
1095 AC_CHECK_HEADERS(readline/readline.h readline/history.h,,AC_MSG_ERROR(bailing out))
1096fi
1097
5c7fc7c4 1098if test x$CLVMD != xnone; then
ad6254c5
AK
1099 AC_CHECK_HEADERS(mntent.h netdb.h netinet/in.h pthread.h search.h sys/mount.h sys/socket.h sys/uio.h sys/un.h utmpx.h,,AC_MSG_ERROR(bailing out))
1100 AC_CHECK_FUNCS(dup2 getmntent memmove select socket,,AC_MSG_ERROR(bailing out))
1101 AC_FUNC_GETMNTENT
ad6254c5
AK
1102 AC_FUNC_SELECT_ARGTYPES
1103fi
1104
ad6254c5
AK
1105if test x$CLUSTER != xnone; then
1106 AC_CHECK_HEADERS(sys/socket.h sys/un.h,,AC_MSG_ERROR(bailing out))
1107 AC_CHECK_FUNCS(socket,,AC_MSG_ERROR(bailing out))
1108fi
1109
d911ec67
AK
1110if test x$DMEVENTD = xyes; then
1111 AC_CHECK_HEADERS(arpa/inet.h,,AC_MSG_ERROR(bailing out))
1112fi
1113
ad6254c5
AK
1114if test x$HAVE_LIBDL = xyes; then
1115 AC_CHECK_HEADERS(dlfcn.h,,AC_MSG_ERROR(bailing out))
1116fi
1117
1118if test x$INTL = xyes; then
1119 AC_CHECK_HEADERS(libintl.h,,AC_MSG_ERROR(bailing out))
1120fi
1121
5d518f1f
AK
1122if test x$UDEV_SYNC = xyes; then
1123 AC_CHECK_HEADERS(sys/ipc.h sys/sem.h,,AC_MSG_ERROR(bailing out))
1124fi
1125
a653923f
AK
1126################################################################################
1127AC_PATH_PROG(MODPROBE_CMD, modprobe)
1128
1129if test x$MODPROBE_CMD != x; then
72b2cb61 1130 AC_DEFINE_UNQUOTED([MODPROBE_CMD], ["$MODPROBE_CMD"], [The path to 'modprobe', if available.])
a653923f
AK
1131fi
1132
a9b601e2
ZK
1133
1134lvm_exec_prefix=$exec_prefix
1135test "$lvm_exec_prefix" = NONE && lvm_exec_prefix=$prefix
1136test "$lvm_exec_prefix" = NONE && lvm_exec_prefix=$ac_default_prefix
1137AC_DEFINE_UNQUOTED(LVM_PATH, ["$lvm_exec_prefix/sbin/lvm"], [Path to lvm binary.])
b5c2529b
ZK
1138
1139if test "$CLVMD" != none; then
1140 clvmd_prefix=$ac_default_prefix
1141 test "$prefix" != NONE && clvmd_prefix=$prefix
71082be4
ZK
1142 AC_DEFINE_UNQUOTED(CLVMD_PATH, ["$clvmd_prefix/sbin/clvmd"],
1143 [Path to clvmd binary.])
b5c2529b
ZK
1144fi
1145
80992638 1146################################################################################
f6fc418d 1147dnl -- dmeventd pidfile and executable path
f6fc418d
AK
1148if test "$BUILD_DMEVENTD" = yes; then
1149 AC_ARG_WITH(dmeventd-pidfile,
71082be4
ZK
1150 AC_HELP_STRING([--with-dmeventd-pidfile=PATH],
1151 [dmeventd pidfile [[/var/run/dmeventd.pid]]]),
1152 DMEVENTD_PIDFILE=$withval,
1153 DMEVENTD_PIDFILE="/var/run/dmeventd.pid")
1154 AC_DEFINE_UNQUOTED(DMEVENTD_PIDFILE, ["$DMEVENTD_PIDFILE"],
1155 [Path to dmeventd pidfile.])
f6fc418d
AK
1156fi
1157
f6fc418d 1158if test "$BUILD_DMEVENTD" = yes; then
f6fc418d 1159 AC_ARG_WITH(dmeventd-path,
71082be4
ZK
1160 AC_HELP_STRING([--with-dmeventd-path=PATH],
1161 [dmeventd path [[EPREFIX/sbin/dmeventd]]]),
1162 DMEVENTD_PATH=$withval,
1163 DMEVENTD_PATH="$lvm_exec_prefix/sbin/dmeventd")
1164 AC_DEFINE_UNQUOTED(DMEVENTD_PATH, ["$DMEVENTD_PATH"],
1165 [Path to dmeventd binary.])
f6fc418d
AK
1166fi
1167
8bae0a1e
AK
1168AH_TEMPLATE(DEFAULT_RUN_DIR, [Name of default run directory.])
1169AC_ARG_WITH(default-run-dir,
1170 [ --with-default-run-dir=DIR Default run directory [[/var/run/lvm]] ],
1171 [ DEFAULT_RUN_DIR="$withval" ],
1172 [ DEFAULT_RUN_DIR="/var/run/lvm" ])
1173AC_DEFINE_UNQUOTED(DEFAULT_RUN_DIR,["$DEFAULT_RUN_DIR"] )
1174
3399ae32
AK
1175################################################################################
1176dnl -- various defaults
3399ae32 1177AC_ARG_WITH(default-system-dir,
71082be4
ZK
1178 AC_HELP_STRING([--with-default-system-dir=DIR],
1179 [default LVM system directory [[/etc/lvm]]]),
1180 DEFAULT_SYS_DIR=$withval, DEFAULT_SYS_DIR="/etc/lvm")
1181AC_DEFINE_UNQUOTED(DEFAULT_SYS_DIR, ["$DEFAULT_SYS_DIR"],
1182 [Path to LVM system directory.])
3399ae32 1183
3399ae32 1184AC_ARG_WITH(default-archive-subdir,
71082be4
ZK
1185 AC_HELP_STRING([--with-default-archive-subdir=SUBDIR],
1186 [default metadata archive subdir [[archive]]]),
1187 DEFAULT_ARCHIVE_SUBDIR=$withval, DEFAULT_ARCHIVE_SUBDIR=archive)
1188AC_DEFINE_UNQUOTED(DEFAULT_ARCHIVE_SUBDIR, ["$DEFAULT_ARCHIVE_SUBDIR"],
1189 [Name of default metadata archive subdirectory.])
3399ae32 1190
3399ae32 1191AC_ARG_WITH(default-backup-subdir,
71082be4
ZK
1192 AC_HELP_STRING([--with-default-backup-subdir=SUBDIR],
1193 [default metadata backup subdir [[backup]]]),
1194 DEFAULT_BACKUP_SUBDIR=$withval, DEFAULT_BACKUP_SUBDIR=backup)
1195AC_DEFINE_UNQUOTED(DEFAULT_BACKUP_SUBDIR, ["$DEFAULT_BACKUP_SUBDIR"],
1196 [Name of default metadata backup subdirectory.])
3399ae32 1197
3399ae32 1198AC_ARG_WITH(default-cache-subdir,
71082be4
ZK
1199 AC_HELP_STRING([--with-default-cache-subdir=SUBDIR],
1200 [default metadata cache subdir [[cache]]]),
1201 DEFAULT_CACHE_SUBDIR=$withval, DEFAULT_CACHE_SUBDIR=cache)
1202AC_DEFINE_UNQUOTED(DEFAULT_CACHE_SUBDIR, ["$DEFAULT_CACHE_SUBDIR"],
1203 [Name of default metadata cache subdirectory.])
3399ae32 1204
3399ae32 1205AC_ARG_WITH(default-locking-dir,
71082be4
ZK
1206 AC_HELP_STRING([--with-default-locking-dir=DIR],
1207 [default locking directory [[/var/lock/lvm]]]),
1208 DEFAULT_LOCK_DIR=$withval, DEFAULT_LOCK_DIR="/var/lock/lvm")
1209AC_DEFINE_UNQUOTED(DEFAULT_LOCK_DIR, ["$DEFAULT_LOCK_DIR"],
1210 [Name of default locking directory.])
3399ae32 1211
7063efe1
MS
1212################################################################################
1213dnl -- Setup default data alignment
1214AC_ARG_WITH(default-data-alignment,
1215 AC_HELP_STRING([--with-default-data-alignment=NUM],
1216 [set the default data alignment in MiB [[1]]]),
1217 DEFAULT_DATA_ALIGNMENT=$withval, DEFAULT_DATA_ALIGNMENT=1)
1218AC_DEFINE_UNQUOTED(DEFAULT_DATA_ALIGNMENT, [$DEFAULT_DATA_ALIGNMENT],
1219 [Default data alignment.])
1220
f6fc418d
AK
1221################################################################################
1222dnl -- which kernel interface to use (ioctl only)
1223AC_MSG_CHECKING(for kernel interface choice)
1224AC_ARG_WITH(interface,
71082be4
ZK
1225 AC_HELP_STRING([--with-interface=IFACE],
1226 [choose kernel interface (ioctl) [[ioctl]]]),
1227 interface=$withval, interface=ioctl)
f6fc418d
AK
1228if [[ "x$interface" != xioctl ]];
1229then
1230 AC_MSG_ERROR(--with-interface=ioctl required. fs no longer supported.)
1231fi
1232AC_MSG_RESULT($interface)
1233
1234################################################################################
db8b5af9 1235DM_LIB_VERSION="\"`cat "$srcdir"/VERSION_DM 2>/dev/null || echo Unknown`\""
f58b35b5
AK
1236AC_DEFINE_UNQUOTED(DM_LIB_VERSION, $DM_LIB_VERSION, [Library version])
1237
db8b5af9 1238DM_LIB_PATCHLEVEL=`cat "$srcdir"/VERSION_DM | $AWK -F '[[-. ]]' '{printf "%s.%s.%s",$1,$2,$3}'`
597c3f8e 1239
db8b5af9 1240LVM_VERSION="\"`cat "$srcdir"/VERSION 2>/dev/null || echo Unknown`\""
fae0c576 1241
db8b5af9 1242VER=`cat "$srcdir"/VERSION`
bf456146 1243LVM_RELEASE_DATE="\"`echo $VER | $SED 's/.* (//;s/).*//'`\""
ec6a6fbe
AK
1244VER=`echo "$VER" | $AWK '{print $1}'`
1245LVM_RELEASE="\"`echo "$VER" | $AWK -F '-' '{print $2}'`\""
1246VER=`echo "$VER" | $AWK -F '-' '{print $1}'`
1247LVM_MAJOR=`echo "$VER" | $AWK -F '.' '{print $1}'`
1248LVM_MINOR=`echo "$VER" | $AWK -F '.' '{print $2}'`
bf456146
AK
1249LVM_PATCHLEVEL=`echo "$VER" | $AWK -F '[[(.]]' '{print $3}'`
1250LVM_LIBAPI=`echo "$VER" | $AWK -F '[[()]]' '{print $2}'`
ec6a6fbe 1251
80992638 1252################################################################################
572fefeb 1253AC_SUBST(APPLIB)
aaa2e046 1254AC_SUBST(AWK)
66fd4529 1255AC_SUBST(BUILD_CMIRRORD)
d0191583 1256AC_SUBST(BUILD_DMEVENTD)
a946372e
AK
1257AC_SUBST(CCS_CFLAGS)
1258AC_SUBST(CCS_LIBS)
b896caa1 1259AC_SUBST(CFLAGS)
d0191583 1260AC_SUBST(CFLOW_CMD)
8106cdd5 1261AC_SUBST(CLDFLAGS)
8106cdd5 1262AC_SUBST(CLDNOWHOLEARCHIVE)
d0191583
JM
1263AC_SUBST(CLDWHOLEARCHIVE)
1264AC_SUBST(CLUSTER)
1265AC_SUBST(CLVMD)
34b6075d 1266AC_SUBST(CLVMD_CMANAGERS)
a946372e
AK
1267AC_SUBST(CMAN_CFLAGS)
1268AC_SUBST(CMAN_LIBS)
d0191583 1269AC_SUBST(CMDLIB)
edf47283
AK
1270AC_SUBST(CONFDB_CFLAGS)
1271AC_SUBST(CONFDB_LIBS)
1272AC_SUBST(CONFDIR)
d0191583 1273AC_SUBST(COPTIMISE_FLAG)
edf47283
AK
1274AC_SUBST(CPG_CFLAGS)
1275AC_SUBST(CPG_LIBS)
d0191583 1276AC_SUBST(CSCOPE_CMD)
8ef2b021 1277AC_SUBST(DEBUG)
3399ae32
AK
1278AC_SUBST(DEFAULT_SYS_DIR)
1279AC_SUBST(DEFAULT_ARCHIVE_SUBDIR)
1280AC_SUBST(DEFAULT_BACKUP_SUBDIR)
1281AC_SUBST(DEFAULT_CACHE_SUBDIR)
7063efe1 1282AC_SUBST(DEFAULT_DATA_ALIGNMENT)
3399ae32 1283AC_SUBST(DEFAULT_LOCK_DIR)
b1f08e51 1284AC_SUBST(DEFAULT_RUN_DIR)
199e490e 1285AC_SUBST(DEVMAPPER)
a946372e
AK
1286AC_SUBST(DLM_CFLAGS)
1287AC_SUBST(DLM_LIBS)
19a2c6e0 1288AC_SUBST(DL_LIBS)
d0191583 1289AC_SUBST(DMEVENTD)
d1e8046f 1290AC_SUBST(DMEVENTD_PATH)
d0191583
JM
1291AC_SUBST(DM_COMPAT)
1292AC_SUBST(DM_DEVICE_GID)
1293AC_SUBST(DM_DEVICE_MODE)
1294AC_SUBST(DM_DEVICE_UID)
1295AC_SUBST(DM_IOCTLS)
1296AC_SUBST(DM_LIB_VERSION)
597c3f8e 1297AC_SUBST(DM_LIB_PATCHLEVEL)
d0191583 1298AC_SUBST(FSADM)
a946372e
AK
1299AC_SUBST(GULM_CFLAGS)
1300AC_SUBST(GULM_LIBS)
26e7f2e0 1301AC_SUBST(HAVE_LIBDL)
8b1a3214 1302AC_SUBST(HAVE_REALTIME)
d0191583
JM
1303AC_SUBST(INTL)
1304AC_SUBST(INTL_PACKAGE)
1305AC_SUBST(JOBS)
1306AC_SUBST(LDDEPS)
1307AC_SUBST(LIBS)
1308AC_SUBST(LIB_SUFFIX)
69792976 1309AC_SUBST(LOCALEDIR)
d0191583
JM
1310AC_SUBST(LVM1)
1311AC_SUBST(LVM1_FALLBACK)
d0191583 1312AC_SUBST(LVM_VERSION)
bf456146 1313AC_SUBST(LVM_LIBAPI)
ec6a6fbe
AK
1314AC_SUBST(LVM_MAJOR)
1315AC_SUBST(LVM_MINOR)
1316AC_SUBST(LVM_PATCHLEVEL)
1317AC_SUBST(LVM_RELEASE)
1318AC_SUBST(LVM_RELEASE_DATE)
d0191583 1319AC_SUBST(MIRRORS)
8fea97b7 1320AC_SUBST(REPLICATORS)
d0191583 1321AC_SUBST(MSGFMT)
d0191583
JM
1322AC_SUBST(PKGCONFIG)
1323AC_SUBST(POOL)
f30875db 1324AC_SUBST(PTHREAD_LIBS)
edf47283
AK
1325AC_SUBST(QUORUM_CFLAGS)
1326AC_SUBST(QUORUM_LIBS)
539f4a77 1327AC_SUBST(READLINE_LIBS)
90c80887
AK
1328AC_SUBST(SACKPT_CFLAGS)
1329AC_SUBST(SACKPT_LIBS)
a946372e
AK
1330AC_SUBST(SALCK_CFLAGS)
1331AC_SUBST(SALCK_LIBS)
e1b8a236 1332AC_SUBST(SELINUX_LIBS)
f7f0854e 1333AC_SUBST(SELINUX_PC)
d0191583 1334AC_SUBST(SNAPSHOTS)
0a62c911 1335AC_SUBST(STATICDIR)
d0191583 1336AC_SUBST(STATIC_LINK)
1033d120 1337AC_SUBST(TESTING)
db724a44 1338AC_SUBST(UDEV_LIBS)
f7f0854e 1339AC_SUBST(UDEV_PC)
5d518f1f 1340AC_SUBST(UDEV_RULES)
4df024c4 1341AC_SUBST(UDEV_SYNC)
23b059e7 1342AC_SUBST(WRITE_INSTALL)
f6fc418d
AK
1343AC_SUBST(interface)
1344AC_SUBST(kerneldir)
1345AC_SUBST(missingkernel)
1346AC_SUBST(kernelvsn)
1347AC_SUBST(tmpdir)
5d518f1f
AK
1348AC_SUBST(udev_prefix)
1349AC_SUBST(udevdir)
68f2de6d
AK
1350AC_SUBST(usrlibdir)
1351AC_SUBST(usrsbindir)
8106cdd5 1352
80992638 1353################################################################################
d3a356b4 1354dnl -- First and last lines should not contain files to generate in order to
8ce0cbda 1355dnl -- keep utility scripts running properly
d3a356b4
JM
1356AC_CONFIG_FILES([
1357Makefile
1358make.tmpl
1359daemons/Makefile
1360daemons/clvmd/Makefile
5d311afb 1361daemons/cmirrord/Makefile
f6fc418d
AK
1362daemons/dmeventd/Makefile
1363daemons/dmeventd/libdevmapper-event.pc
b7edb5bf 1364daemons/dmeventd/plugins/Makefile
d3d98fdc 1365daemons/dmeventd/plugins/lvm2/Makefile
f6fc418d
AK
1366daemons/dmeventd/plugins/mirror/Makefile
1367daemons/dmeventd/plugins/snapshot/Makefile
d3a356b4 1368doc/Makefile
da05c479 1369doc/example.conf
db8b5af9 1370include/.symlinks
f6fc418d
AK
1371include/Makefile
1372lib/Makefile
d3a356b4
JM
1373lib/format1/Makefile
1374lib/format_pool/Makefile
1375lib/locking/Makefile
1376lib/mirror/Makefile
8fea97b7 1377lib/replicator/Makefile
ec6a6fbe 1378lib/misc/lvm-version.h
d3a356b4 1379lib/snapshot/Makefile
f6fc418d
AK
1380libdm/Makefile
1381libdm/libdevmapper.pc
e0c64c6c 1382liblvm/Makefile
70046623 1383liblvm/liblvm2app.pc
f6fc418d
AK
1384man/Makefile
1385po/Makefile
2de38033 1386scripts/clvmd_init_red_hat
81410c8f 1387scripts/cmirrord_init_red_hat
595eaf92 1388scripts/lvm2_monitoring_init_red_hat
d3a356b4 1389scripts/Makefile
f6fc418d 1390test/Makefile
c7e363f9 1391test/api/Makefile
d3a356b4 1392tools/Makefile
5d518f1f 1393udev/Makefile
66392e66 1394unit-tests/datastruct/Makefile
15106c50 1395unit-tests/regex/Makefile
52e1564f 1396unit-tests/mm/Makefile
7a197a62
AK
1397])
1398AC_OUTPUT
2dc95e1c
AK
1399
1400if test x$ODIRECT != xyes; then
ad6254c5 1401 AC_MSG_WARN(Warning: O_DIRECT disabled: low-memory pvmove may lock up)
2dc95e1c 1402fi
This page took 0.246314 seconds and 5 git commands to generate.