]> sourceware.org Git - lvm2.git/blame - configure.in
more build fixes
[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
7a197a62 14AC_PREREQ(2.57)
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
AK
80AC_HEADER_DIRENT
81AC_HEADER_STDC
ad6254c5
AK
82AC_HEADER_SYS_WAIT
83AC_HEADER_TIME
84
d0191583
JM
85AC_CHECK_HEADERS([locale.h stddef.h syslog.h sys/file.h sys/time.h assert.h \
86 libgen.h signal.h sys/mman.h sys/resource.h sys/utsname.h sys/wait.h time.h], ,
87 [AC_MSG_ERROR(bailing out)])
ad6254c5
AK
88
89case "$host_os" in
90 linux*)
91 AC_CHECK_HEADERS(asm/byteorder.h linux/fs.h malloc.h,,AC_MSG_ERROR(bailing out)) ;;
92 darwin*)
93 AC_CHECK_HEADERS(machine/endian.h sys/disk.h,,AC_MSG_ERROR(bailing out)) ;;
94esac
80992638 95
d0191583
JM
96AC_CHECK_HEADERS([ctype.h dirent.h errno.h fcntl.h getopt.h inttypes.h limits.h \
97 stdarg.h stdio.h stdlib.h string.h sys/ioctl.h sys/param.h sys/stat.h \
98 sys/types.h unistd.h], , [AC_MSG_ERROR(bailing out)])
99AC_CHECK_HEADERS(termios.h sys/statvfs.h)
100
80992638 101################################################################################
d0191583 102dnl -- Check for typedefs, structures, and compiler characteristics.
80992638
AK
103AC_C_CONST
104AC_C_INLINE
d0191583 105AC_CHECK_MEMBERS([struct stat.st_rdev])
80992638
AK
106AC_TYPE_OFF_T
107AC_TYPE_PID_T
d0191583 108AC_TYPE_SIGNAL
80992638 109AC_TYPE_SIZE_T
ad6254c5 110AC_TYPE_MODE_T
7a197a62 111AC_CHECK_MEMBERS([struct stat.st_rdev])
ad6254c5
AK
112AC_STRUCT_TM
113
114################################################################################
115dnl -- Check for functions
d0191583
JM
116AC_CHECK_FUNCS([gethostname getpagesize memset mkdir rmdir munmap setlocale \
117 strcasecmp strchr strdup strncasecmp strerror strrchr strstr strtol strtoul \
118 uname], , [AC_MSG_ERROR(bailing out)])
a0f9708e 119AC_CHECK_FUNCS(siginterrupt)
ad6254c5
AK
120AC_FUNC_ALLOCA
121AC_FUNC_CLOSEDIR_VOID
122AC_FUNC_FORK
123AC_FUNC_LSTAT
124AC_FUNC_MALLOC
125AC_FUNC_MEMCMP
126AC_FUNC_MMAP
127AC_FUNC_STAT
128AC_FUNC_STRTOD
d0191583 129AC_FUNC_VPRINTF
80992638 130
9c961554
MB
131################################################################################
132dnl -- Enables statically-linked tools
133AC_MSG_CHECKING(whether to use static linking)
134AC_ARG_ENABLE(static_link,
135 [ --enable-static_link Use this to link the tools to their libraries
136 statically. Default is dynamic linking],
137 STATIC_LINK=$enableval, STATIC_LINK=no)
138AC_MSG_RESULT($STATIC_LINK)
139
80992638 140################################################################################
8ce0cbda 141dnl -- Prefix is /usr by default, the exec_prefix default is setup later
795ca3e5
AK
142AC_PREFIX_DEFAULT(/usr)
143
80992638 144################################################################################
8ce0cbda 145dnl -- Setup the ownership of the files
ad6254c5 146AC_MSG_CHECKING(file owner)
39dabc84 147OWNER=""
80992638 148
795ca3e5 149AC_ARG_WITH(user,
39dabc84 150 [ --with-user=USER Set the owner of installed files [[USER=]] ],
a38df97f 151 [ OWNER="$withval" ])
ad6254c5 152AC_MSG_RESULT($OWNER)
a38df97f
AK
153
154if test x$OWNER != x; then
155 OWNER="-o $OWNER"
156fi
795ca3e5 157
80992638 158################################################################################
8ce0cbda 159dnl -- Setup the group ownership of the files
ad6254c5 160AC_MSG_CHECKING(group owner)
39dabc84 161GROUP=""
795ca3e5 162AC_ARG_WITH(group,
39dabc84 163 [ --with-group=GROUP Set the group owner of installed files [[GROUP=]] ],
a38df97f 164 [ GROUP="$withval" ])
ad6254c5 165AC_MSG_RESULT($GROUP)
a38df97f
AK
166
167if test x$GROUP != x; then
168 GROUP="-g $GROUP"
169fi
795ca3e5 170
0782ad50
AK
171################################################################################
172dnl -- Setup device node ownership
173AC_MSG_CHECKING(device node uid)
174
175AC_ARG_WITH(device-uid,
176 [ --with-device-uid=UID Set the owner used for new device nodes [[UID=0]] ],
177 [ DM_DEVICE_UID="$withval" ], [ DM_DEVICE_UID="0" ] )
178AC_MSG_RESULT($DM_DEVICE_UID)
179
180################################################################################
181dnl -- Setup device group ownership
182AC_MSG_CHECKING(device node gid)
183
184AC_ARG_WITH(device-gid,
185 [ --with-device-gid=UID Set the group used for new device nodes [[GID=0]] ],
186 [ DM_DEVICE_GID="$withval" ], [ DM_DEVICE_GID="0" ] )
187AC_MSG_RESULT($DM_DEVICE_GID)
188
f6fc418d
AK
189################################################################################
190dnl -- Setup device mode
191AC_MSG_CHECKING(device node mode)
192
193AC_ARG_WITH(device-mode,
194 [ --with-device-mode=MODE Set the mode used for new device nodes [[MODE=0600]] ],
195 [ DM_DEVICE_MODE="$withval" ], [ DM_DEVICE_MODE="0600" ] )
196AC_MSG_RESULT($DM_DEVICE_MODE)
197
80992638 198################################################################################
7d1552c9 199dnl -- LVM1 tool fallback option
ad6254c5 200AC_MSG_CHECKING(whether to enable lvm1 fallback)
7d1552c9
AK
201AC_ARG_ENABLE(lvm1_fallback, [ --enable-lvm1_fallback Use this to fall back and use LVM1 binaries if
202 device-mapper is missing from the kernel], LVM1_FALLBACK=$enableval, LVM1_FALLBACK=no)
ad6254c5 203AC_MSG_RESULT($LVM1_FALLBACK)
7d1552c9
AK
204
205if test x$LVM1_FALLBACK = xyes; then
72b2cb61 206 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
207fi
208
80992638 209################################################################################
5a52dca9 210dnl -- format1 inclusion type
ad6254c5 211AC_MSG_CHECKING(whether to include support for lvm1 metadata)
5a52dca9
AK
212AC_ARG_WITH(lvm1,
213 [ --with-lvm1=TYPE LVM1 metadata support: internal/shared/none
214 [TYPE=internal] ],
215 [ LVM1="$withval" ],
216 [ LVM1="internal" ])
ad6254c5 217AC_MSG_RESULT($LVM1)
5a52dca9
AK
218
219if [[ "x$LVM1" != xnone -a "x$LVM1" != xinternal -a "x$LVM1" != xshared ]];
220 then AC_MSG_ERROR(
221--with-lvm1 parameter invalid
222)
5a52dca9
AK
223fi;
224
b896caa1 225if test x$LVM1 = xinternal; then
72b2cb61 226 AC_DEFINE([LVM1_INTERNAL], 1, [Define to 1 to include built-in support for LVM1 metadata.])
b896caa1
AK
227fi
228
80992638 229################################################################################
d8ac0fbc 230dnl -- format_pool inclusion type
ad6254c5 231AC_MSG_CHECKING(whether to include support for GFS pool metadata)
d8ac0fbc 232AC_ARG_WITH(pool,
60329273 233 [ --with-pool=TYPE GFS pool read-only support: internal/shared/none
d8ac0fbc
AK
234 [TYPE=internal] ],
235 [ POOL="$withval" ],
236 [ POOL="internal" ])
ad6254c5 237AC_MSG_RESULT($POOL)
d8ac0fbc
AK
238
239if [[ "x$POOL" != xnone -a "x$POOL" != xinternal -a "x$POOL" != xshared ]];
240 then AC_MSG_ERROR(
241--with-pool parameter invalid
242)
d8ac0fbc
AK
243fi;
244
245if test x$POOL = xinternal; then
72b2cb61 246 AC_DEFINE([POOL_INTERNAL], 1, [Define to 1 to include built-in support for GFS pool metadata.])
d8ac0fbc
AK
247fi
248
80992638 249################################################################################
d3c8211f 250dnl -- cluster_locking inclusion type
ad6254c5 251AC_MSG_CHECKING(whether to include support for cluster locking)
d3c8211f
AK
252AC_ARG_WITH(cluster,
253 [ --with-cluster=TYPE Cluster LVM locking support: internal/shared/none
254 [TYPE=internal] ],
255 [ CLUSTER="$withval" ])
ad6254c5 256AC_MSG_RESULT($CLUSTER)
d3c8211f
AK
257
258if [[ "x$CLUSTER" != xnone -a "x$CLUSTER" != xinternal -a "x$CLUSTER" != xshared ]];
259 then AC_MSG_ERROR(
260--with-cluster parameter invalid
261)
d3c8211f
AK
262fi;
263
264if test x$CLUSTER = xinternal; then
72b2cb61 265 AC_DEFINE([CLUSTER_LOCKING_INTERNAL], 1, [Define to 1 to include built-in support for clustered LVM locking.])
d3c8211f 266fi
d8ac0fbc 267
80992638 268################################################################################
4922197a 269dnl -- snapshots inclusion type
ad6254c5 270AC_MSG_CHECKING(whether to include snapshots)
4922197a
AK
271AC_ARG_WITH(snapshots,
272 [ --with-snapshots=TYPE Snapshot support: internal/shared/none
273 [TYPE=internal] ],
274 [ SNAPSHOTS="$withval" ],
275 [ SNAPSHOTS="internal" ])
ad6254c5 276AC_MSG_RESULT($SNAPSHOTS)
4922197a
AK
277
278if [[ "x$SNAPSHOTS" != xnone -a "x$SNAPSHOTS" != xinternal -a "x$SNAPSHOTS" != xshared ]];
279 then AC_MSG_ERROR(
280--with-snapshots parameter invalid
281)
4922197a
AK
282fi;
283
284if test x$SNAPSHOTS = xinternal; then
72b2cb61 285 AC_DEFINE([SNAPSHOT_INTERNAL], 1, [Define to 1 to include built-in support for snapshots.])
4922197a
AK
286fi
287
80992638 288################################################################################
4922197a 289dnl -- mirrors inclusion type
ad6254c5 290AC_MSG_CHECKING(whether to include mirrors)
4922197a
AK
291AC_ARG_WITH(mirrors,
292 [ --with-mirrors=TYPE Mirror support: internal/shared/none
293 [TYPE=internal] ],
294 [ MIRRORS="$withval" ],
295 [ MIRRORS="internal" ])
ad6254c5 296AC_MSG_RESULT($MIRRORS)
4922197a
AK
297
298if [[ "x$MIRRORS" != xnone -a "x$MIRRORS" != xinternal -a "x$MIRRORS" != xshared ]];
299 then AC_MSG_ERROR(
300--with-mirrors parameter invalid
301)
4922197a
AK
302fi;
303
304if test x$MIRRORS = xinternal; then
72b2cb61 305 AC_DEFINE([MIRRORED_INTERNAL], 1, [Define to 1 to include built-in support for mirrors.])
4922197a
AK
306fi
307
80992638 308################################################################################
1b523347 309dnl -- Disable readline
ad6254c5 310AC_MSG_CHECKING(whether to enable readline)
2c189a57 311AC_ARG_ENABLE([readline],
1b523347 312 [ --disable-readline Disable readline support],
ea7cfb00 313 [READLINE=$enableval], [READLINE=maybe])
ad6254c5 314AC_MSG_RESULT($READLINE)
795ca3e5 315
8b1a3214
AK
316################################################################################
317dnl -- Disable realtime clock support
318AC_MSG_CHECKING(whether to enable realtime support)
89044bc0 319AC_ARG_ENABLE(realtime, [ --enable-realtime Enable realtime clock support],
8b1a3214
AK
320REALTIME=$enableval)
321AC_MSG_RESULT($REALTIME)
322
90c80887
AK
323################################################################################
324dnl -- Init pkg-config with dummy invokation:
325dnl -- this is required because PKG_CHECK_MODULES macro is expanded
326dnl -- to initialize the pkg-config environment only at the first invokation,
327dnl -- that would be conditional in this configure.in.
328pkg_config_init() {
329 PKG_CHECK_MODULES(PKGCONFIGINIT, pkgconfiginit, [],
330 [AC_MSG_RESULT([pkg-config initialized])])
331 PKGCONFIG_INIT=1
332}
333
80992638 334################################################################################
8ce0cbda 335dnl -- Build cluster LVM daemon
ad6254c5 336AC_MSG_CHECKING(whether to build cluster LVM daemon)
a266258f 337AC_ARG_WITH(clvmd,
a946372e 338 [ --with-clvmd=TYPE Build cluster LVM Daemon.
8c222979 339 The following cluster manager combinations are valid:
a946372e
AK
340 * cman,gulm (RHEL4 or equivalent)
341 * cman (RHEL5 or equivalent)
342 * cman,corosync,openais (or selection of them)
343 * all (autodetect)
344 * none (disable build)
a266258f
AK
345 [TYPE=none] ],
346 [ CLVMD="$withval" ],
347 [ CLVMD="none" ])
348if test x$CLVMD = xyes; then
5c7fc7c4 349 CLVMD=all
b1098701 350fi
ad6254c5 351AC_MSG_RESULT($CLVMD)
80992638 352
8ce0cbda 353dnl -- If clvmd enabled without cluster locking, automagically include it
a266258f 354if test x$CLVMD != xnone && test x$CLUSTER = xnone; then
d3c8211f
AK
355 CLUSTER=internal
356fi
d3c8211f 357
90c80887
AK
358dnl -- init pkgconfig if required
359if test x$CLVMD != xnone && test x$PKGCONFIG_INIT != x1; then
360 pkg_config_init
361fi
362
363
a946372e
AK
364dnl -- define build types
365if [[ `expr x"$CLVMD" : '.*gulm.*'` != 0 ]]; then
366 BUILDGULM=yes
367fi
368if [[ `expr x"$CLVMD" : '.*corosync.*'` != 0 ]]; then
369 BUILDCOROSYNC=yes
370fi
371if [[ `expr x"$CLVMD" : '.*openais.*'` != 0 ]]; then
372 BUILDOPENAIS=yes
373fi
374if [[ `expr x"$CLVMD" : '.*cman.*'` != 0 ]]; then
375 BUILDCMAN=yes
376fi
377
378dnl -- sanity check around user selection
379if test x$BUILDGULM = xyes; then
380 if test x$BUILDCOROSYNC = xyes || \
381 test x$BUILDOPENAIS = xyes; then
382 AC_MSG_ERROR([requested clvmd configuration is not valid])
383 fi
384fi
385
a946372e
AK
386dnl -- define a soft bailout if we are autodetecting
387soft_bailout() {
388 NOTFOUND=1
389}
390
391hard_bailout() {
392 AC_MSG_ERROR([bailing out])
393}
394
395dnl -- if clvmd=all then set soft_bailout (we don't want to error)
396dnl -- and set all builds to yes. We need to do this here
397dnl -- to skip the gulm + openais|corosync sanity check above.
398if test x$CLVMD = xall; then
399 bailout=soft_bailout
400 BUILDGULM=yes
401 BUILDCMAN=yes
402 BUILDCOROSYNC=yes
403 BUILDOPENAIS=yes
404else
405 bailout=hard_bailout
406fi
407
408dnl -- helper macro to check libs without adding them to LIBS
409check_lib_no_libs() {
410 lib_no_libs_arg1=$1
411 shift
412 lib_no_libs_arg2=$1
413 shift
414 lib_no_libs_args=$@
415 AC_CHECK_LIB([$lib_no_libs_arg1],
416 [$lib_no_libs_arg2],,
417 [$bailout],
418 [$lib_no_libs_args])
419 LIBS=$ac_check_lib_save_LIBS
420}
421
422dnl -- Look for gulm libraries if required.
423if test x$BUILDGULM = xyes; then
424 PKG_CHECK_MODULES(CCS, libccs, [HAVE_CCS=yes],
425 [NOTFOUND=0
426 AC_CHECK_HEADERS(ccs.h,,$bailout)
427 check_lib_no_libs ccs ccs_connect
428 if test $NOTFOUND = 0; then
429 AC_MSG_RESULT([no pkg for libccs, using -lccs])
430 CCS_LIBS="-lccs"
431 HAVE_CCS=yes
432 fi])
433 PKG_CHECK_MODULES(GULM, libgulm, [HAVE_GULM=yes],
434 [NOTFOUND=0
435 AC_CHECK_HEADERS(libgulm.h,,$bailout)
436 check_lib_no_libs gulm lg_core_login
437 if test $NOTFOUND = 0; then
438 AC_MSG_RESULT([no pkg for libgulm, using -lgulm])
439 GULM_LIBS="-lgulm"
440 HAVE_GULM=yes
441 fi])
442fi
443
444dnl -- Look for cman libraries if required.
445if test x$BUILDCMAN = xyes; then
446 PKG_CHECK_MODULES(CMAN, libcman, [HAVE_CMAN=yes],
447 [NOTFOUND=0
448 AC_CHECK_HEADERS(libcman.h,,$bailout)
449 check_lib_no_libs cman cman_init
450 if test $NOTFOUND = 0; then
451 AC_MSG_RESULT([no pkg for libcman, using -lcman])
452 CMAN_LIBS="-lcman"
453 HAVE_CMAN=yes
454 fi])
455 CHECKCONFDB=yes
456 CHECKDLM=yes
457fi
458
459dnl -- Look for corosync that's required also for openais build
460dnl -- only enough recent version of corosync ship pkg-config files.
461dnl -- We can safely rely on that to detect the correct bits.
462if test x$BUILDCOROSYNC = xyes || \
463 test x$BUILDOPENAIS = xyes; then
464 PKG_CHECK_MODULES(COROSYNC, corosync, [HAVE_COROSYNC=yes], $bailout)
465 CHECKCONFDB=yes
466fi
467
edf47283 468dnl -- Look for corosync libraries if required.
a946372e
AK
469if test x$BUILDCOROSYNC = xyes; then
470 PKG_CHECK_MODULES(QUORUM, libquorum, [HAVE_QUORUM=yes], $bailout)
471 CHECKCPG=yes
472 CHECKDLM=yes
473fi
474
475dnl -- Look for openais libraries if required.
476if test x$BUILDOPENAIS = xyes; then
477 PKG_CHECK_MODULES(SALCK, libSaLck, [HAVE_SALCK=yes], $bailout)
478 CHECKCPG=yes
479fi
480
481dnl -- Below are checks for libraries common to more than one build.
482
483dnl -- Check confdb library.
484dnl -- mandatory for corosync build.
485dnl -- optional for openais/cman build.
486
487if test x$CHECKCONFDB = xyes; then
488 PKG_CHECK_MODULES(CONFDB, libconfdb,
489 [HAVE_CONFDB=yes],
490 [HAVE_CONFDB=no])
491
492 AC_CHECK_HEADERS(corosync/confdb.h,
493 [HAVE_CONFDB_H=yes],
494 [HAVE_CONFDB_H=no])
495
496 if test x$HAVE_CONFDB != xyes && \
497 test x$HAVE_CONFDB_H = xyes; then
498 check_lib_no_libs confdb confdb_initialize
499 AC_MSG_RESULT([no pkg for confdb, using -lconfdb])
500 CONFDB_LIBS="-lconfdb"
501 HAVE_CONFDB=yes
502 fi
503
504 if test x$BUILDCOROSYNC = xyes && \
505 test x$HAVE_CONFDB != xyes &&
506 test x$CLVMD != xall; then
507 AC_MSG_ERROR([bailing out... confdb library is required])
508 fi
509fi
510
511dnl -- Check cpg library.
512if test x$CHECKCPG = xyes; then
513 PKG_CHECK_MODULES(CPG, libcpg, [HAVE_CPG=yes], $bailout)
514fi
515
516dnl -- Check dlm library.
517if test x$CHECKDLM = xyes; then
518 PKG_CHECK_MODULES(DLM, libdlm, [HAVE_DLM=yes],
519 [NOTFOUND=0
520 AC_CHECK_HEADERS(libdlm.h,,$bailout)
521 check_lib_no_libs dlm dlm_lock -lpthread
522 if test $NOTFOUND = 0; then
523 AC_MSG_RESULT([no pkg for libdlm, using -ldlm])
524 DLM_LIBS="-ldlm -lpthread"
525 HAVE_DLM=yes
526 fi])
527fi
528
529dnl -- If we are autodetecting, we need to re-create
530dnl -- the depedencies checks and set a proper CLVMD.
531if test x$CLVMD = xall; then
8c222979 532 CLVMD=none
a946372e
AK
533 if test x$HAVE_CCS = xyes && \
534 test x$HAVE_GULM = xyes; then
8c222979
FDN
535 AC_MSG_RESULT([Enabling clvmd gulm cluster manager])
536 CLVMD="$CLVMD,gulm"
a946372e
AK
537 fi
538 if test x$HAVE_CMAN = xyes && \
539 test x$HAVE_DLM = xyes; then
8c222979
FDN
540 AC_MSG_RESULT([Enabling clvmd cman cluster manager])
541 CLVMD="$CLVMD,cman"
a946372e
AK
542 fi
543 if test x$HAVE_COROSYNC = xyes && \
544 test x$HAVE_QUORUM = xyes && \
545 test x$HAVE_CPG = xyes && \
546 test x$HAVE_DLM = xyes && \
547 test x$HAVE_CONFDB = xyes; then
8c222979
FDN
548 AC_MSG_RESULT([Enabling clvmd corosync cluster manager])
549 CLVMD="$CLVMD,corosync"
a946372e
AK
550 fi
551 if test x$HAVE_COROSYNC = xyes && \
552 test x$HAVE_CPG = xyes && \
553 test x$HAVE_SALCK = xyes; then
8c222979
FDN
554 AC_MSG_RESULT([Enabling clvmd openais cluster manager])
555 CLVMD="$CLVMD,openais"
556 fi
557 if test x$CLVMD = xnone; then
558 AC_MSG_RESULT([Disabling clvmd build. No cluster manager detected.])
a946372e 559 fi
edf47283
AK
560fi
561
3c14bcca 562################################################################################
66fd4529
AK
563dnl -- Build cluster mirror log daemon
564AC_MSG_CHECKING(whether to build cluster mirror log daemon)
565AC_ARG_ENABLE(cmirrord, [ --enable-cmirrord Enable the cluster mirror log daemon],
566CMIRRORD=$enableval, CMIRRORD=no)
567AC_MSG_RESULT($CMIRRORD)
3c14bcca 568
66fd4529
AK
569BUILD_CMIRRORD=$CMIRRORD
570
571################################################################################
572dnl -- cmirrord pidfile
573AH_TEMPLATE(CMIRRORD_PIDFILE, [Path to cmirrord pidfile.])
574if test "x$BUILD_CMIRRORD" = xyes; then
575 AC_ARG_WITH(cmirrord-pidfile,
576 [ --with-cmirrord-pidfile=PATH cmirrord pidfile [[/var/run/cmirrord.pid]] ],
577 [ AC_DEFINE_UNQUOTED(CMIRRORD_PIDFILE,"$withval") ],
578 [ AC_DEFINE_UNQUOTED(CMIRRORD_PIDFILE,"/var/run/cmirrord.pid") ])
579fi
580
581################################################################################
3c14bcca 582dnl -- Look for corosync libraries if required.
66fd4529 583if [[ "x$BUILD_CMIRRORD" = xyes ]]; then
90c80887
AK
584 dnl -- init pkgconfig if required
585 if test x$PKGCONFIG_INIT != x1; then
586 pkg_config_init
587 fi
588 PKG_CHECK_MODULES(SACKPT, libSaCkpt)
589 if test x$HAVE_CPG != xyes; then
590 PKG_CHECK_MODULES(CPG, libcpg)
591 fi
3c14bcca
JEB
592fi
593
80992638 594################################################################################
8ce0cbda 595dnl -- Enable debugging
ad6254c5
AK
596AC_MSG_CHECKING(whether to enable debugging)
597AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging],
d0191583 598 DEBUG=$enableval, DEBUG=no)
ad6254c5 599AC_MSG_RESULT($DEBUG)
8ef2b021 600
8ce0cbda
AK
601dnl -- Normally turn off optimisation for debug builds
602if test x$DEBUG = xyes; then
603 COPTIMISE_FLAG=
8a2fc586
AK
604else
605 CSCOPE_CMD=
8ce0cbda
AK
606fi
607
608################################################################################
609dnl -- Override optimisation
ad6254c5 610AC_MSG_CHECKING(for C optimisation flag)
8ce0cbda 611AC_ARG_WITH(optimisation,
d0191583 612 [ --with-optimisation=OPT C optimisation flag [[OPT=-O2]] ],
8ce0cbda 613 [ COPTIMISE_FLAG="$withval" ])
ad6254c5 614AC_MSG_RESULT($COPTIMISE_FLAG)
8ce0cbda 615
fddafd51
ZK
616################################################################################
617dnl -- Enable profiling
5556819a 618AC_MSG_CHECKING(whether to gather gcov profiling data)
fddafd51 619AC_ARG_ENABLE(profiling,
5556819a
AK
620 AC_HELP_STRING(--enable-profiling, [Gather gcov profiling data]),
621 PROFILING=$enableval, PROFILING=no)
622AC_MSG_RESULT($PROFILING)
623
624if test "x$PROFILING" = xyes; then
625 COPTIMISE_FLAG="$COPTIMISE_FLAG -fprofile-arcs -ftest-coverage"
b145d876
ZK
626 AC_PATH_PROG(LCOV, lcov, no)
627 AC_PATH_PROG(GENHTML, genhtml, no)
628 if test "$LCOV" = no -o "$GENHTML" = no ; then
629 AC_MSG_ERROR([lcov and genhtml are required for profiling])
630 fi
5556819a 631fi
fddafd51 632
80992638 633################################################################################
8ce0cbda 634dnl -- Disable devmapper
ad6254c5 635AC_MSG_CHECKING(whether to use device-mapper)
f6fc418d 636AC_ARG_ENABLE(devmapper, [ --disable-devmapper Disable LVM2 device-mapper interaction],
ad6254c5
AK
637DEVMAPPER=$enableval)
638AC_MSG_RESULT($DEVMAPPER)
199e490e 639
b896caa1 640if test x$DEVMAPPER = xyes; then
f6fc418d 641 AC_DEFINE([DEVMAPPER_SUPPORT], 1, [Define to 1 to enable LVM2 device-mapper interaction.])
b896caa1
AK
642fi
643
5d518f1f
AK
644################################################################################
645dnl -- Enable udev synchronisation
646AC_MSG_CHECKING(whether to enable synchronisation with udev processing)
647AC_ARG_ENABLE(udev_sync, [ --enable-udev_sync Enable synchronisation with udev processing],
648UDEV_SYNC=$enableval, UDEV_SYNC=no)
649AC_MSG_RESULT($UDEV_SYNC)
650
651if test x$UDEV_SYNC = xyes; then
652 AC_DEFINE([UDEV_SYNC_SUPPORT], 1, [Define to 1 to enable synchronisation with udev processing.])
653fi
654
655dnl -- Enable udev rules
656AC_MSG_CHECKING(whether to enable installation of udev rules required for synchronisation)
657AC_ARG_ENABLE(udev_rules, [ --enable-udev_rules Install rule files needed for udev synchronisation],
658UDEV_RULES=$enableval, UDEV_RULES=$UDEV_SYNC)
659AC_MSG_RESULT($UDEV_RULES)
660
fd856332
PR
661################################################################################
662dnl -- Check for libudev's udev_queue_get_udev_is_active function when udev synchronisation is enabled
663
664if test x$UDEV_SYNC = xyes; then
665 AC_CHECK_LIB(udev, udev_queue_get_udev_is_active, HAVE_UDEV_QUEUE_GET_UDEV_IS_ACTIVE=yes,
666 HAVE_UDEV_QUEUE_GET_UDEV_IS_ACTIVE=no)
667
668 if test x$HAVE_UDEV_QUEUE_GET_UDEV_IS_ACTIVE = xyes; then
669 AC_DEFINE([HAVE_UDEV_QUEUE_GET_UDEV_IS_ACTIVE], 1,
670 [Define to 1 if libudev's udev_queue_get_udev_is_active function is available.])
671 LIBS="-ludev $LIBS"
55313cb6
PR
672 else
673 AC_MSG_WARN(It won't be possible to get udev state. We will assume that udev is not running.)
fd856332
PR
674 fi
675fi
676
f6fc418d
AK
677################################################################################
678dnl -- Compatibility mode
679AC_ARG_ENABLE(compat, [ --enable-compat Enable support for old device-mapper versions],
680 DM_COMPAT=$enableval, DM_COMPAT=no)
681
95eaa683
AK
682################################################################################
683dnl -- Compatible units suffix mode
684AC_ARG_ENABLE(units-compat,
685 [ --enable-units-compat Enable output compatibility with old versions that
686 that don't use KiB-style unit suffixes],
687 UNITS_COMPAT=$enableval, UNITS_COMPAT=no)
688
689if test x$UNITS_COMPAT = xyes; then
690 AC_DEFINE([DEFAULT_SI_UNIT_CONSISTENCY], 0, [Define to 0 to reinstate the pre-2.02.54 handling of unit suffixes.])
691fi
692
f6fc418d
AK
693################################################################################
694dnl -- Disable ioctl
695AC_ARG_ENABLE(ioctl, [ --disable-driver Disable calls to device-mapper in the kernel],
696 DM_IOCTLS=$enableval)
697
80992638 698################################################################################
8ce0cbda 699dnl -- Disable O_DIRECT
ad6254c5
AK
700AC_MSG_CHECKING(whether to enable O_DIRECT)
701AC_ARG_ENABLE(o_direct, [ --disable-o_direct Disable O_DIRECT],
702ODIRECT=$enableval)
703AC_MSG_RESULT($ODIRECT)
2dc95e1c
AK
704
705if test x$ODIRECT = xyes; then
72b2cb61 706 AC_DEFINE([O_DIRECT_SUPPORT], 1, [Define to 1 to enable O_DIRECT support.])
2dc95e1c
AK
707fi
708
572fefeb
AK
709################################################################################
710dnl -- Enable liblvm2app.so
711AC_MSG_CHECKING(whether to build liblvm2app.so application library)
712AC_ARG_ENABLE(applib,
713 [ --enable-applib Build application library],
714 APPLIB=$enableval, APPLIB=no)
715AC_MSG_RESULT($APPLIB)
716AC_SUBST([LVM2APP_LIB])
717test x$APPLIB = xyes \
718 && LVM2APP_LIB=-llvm2app \
719 || LVM2APP_LIB=
720
80992638 721################################################################################
8ce0cbda 722dnl -- Enable cmdlib
ad6254c5
AK
723AC_MSG_CHECKING(whether to compile liblvm2cmd.so)
724AC_ARG_ENABLE(cmdlib, [ --enable-cmdlib Build shared command library],
725CMDLIB=$enableval, CMDLIB=no)
726AC_MSG_RESULT($CMDLIB)
aa4d1e31 727AC_SUBST([LVM2CMD_LIB])
2a9a80c9 728test x$CMDLIB = xyes \
aa4d1e31
JM
729 && LVM2CMD_LIB=-llvm2cmd \
730 || LVM2CMD_LIB=
8106cdd5 731
f6fc418d
AK
732################################################################################
733dnl -- Enable pkg-config
734AC_ARG_ENABLE(pkgconfig, [ --enable-pkgconfig Install pkgconfig support],
735 PKGCONFIG=$enableval, PKGCONFIG=no)
2a9a80c9 736
80992638 737################################################################################
8ce0cbda 738dnl -- Enable fsadm
1995c9ff 739AC_MSG_CHECKING(whether to install fsadm)
ad6254c5
AK
740AC_ARG_ENABLE(fsadm, [ --enable-fsadm Enable fsadm],
741FSADM=$enableval)
742AC_MSG_RESULT($FSADM)
809fae91 743
06f62ad1
AK
744################################################################################
745dnl -- enable dmeventd handling
746AC_MSG_CHECKING(whether to use dmeventd)
747AC_ARG_ENABLE(dmeventd, [ --enable-dmeventd Enable the device-mapper event daemon],
748DMEVENTD=$enableval)
749AC_MSG_RESULT($DMEVENTD)
750
f6fc418d
AK
751BUILD_DMEVENTD=$DMEVENTD
752
06f62ad1 753dnl -- dmeventd currently requires internal mirror support
2a9a80c9
PR
754if test x$DMEVENTD = xyes; then
755 if test x$MIRRORS != xinternal; then
756 AC_MSG_ERROR(
757 --enable-dmeventd currently requires --with-mirrors=internal
758 )
759 fi
760 if test x$CMDLIB = xno; then
761 AC_MSG_ERROR(
762 --enable-dmeventd requires --enable-cmdlib to be used as well
763 )
764 fi
06f62ad1
AK
765fi
766
15d91f5a 767if test x$DMEVENTD = xyes; then
72b2cb61 768 AC_DEFINE([DMEVENTD], 1, [Define to 1 to enable the device-mapper event daemon.])
15d91f5a 769fi
f6fc418d
AK
770
771################################################################################
772dnl -- getline included in recent libc
773
774AC_CHECK_LIB(c, getline, AC_DEFINE([HAVE_GETLINE], 1,
775 [Define to 1 if getline is available.]))
776
777################################################################################
778dnl -- canonicalize_file_name included in recent libc
779
780AC_CHECK_LIB(c, canonicalize_file_name,
781 AC_DEFINE([HAVE_CANONICALIZE_FILE_NAME], 1,
782 [Define to 1 if canonicalize_file_name is available.]))
783
80992638 784################################################################################
d0191583 785dnl -- Clear default exec_prefix - install into /sbin rather than /usr/sbin
795ca3e5
AK
786if [[ "x$exec_prefix" = xNONE -a "x$prefix" = xNONE ]];
787 then exec_prefix="";
788fi;
789
80992638 790################################################################################
8ce0cbda 791dnl -- Check for termcap (Shamelessly copied from parted 1.4.17)
ea7cfb00 792if test x$READLINE != xno; then
18dcfb69 793 AC_SEARCH_LIBS([tgetent], [tinfo ncurses curses termcap termlib],
ea7cfb00
JM
794 [tg_found=yes], [tg_found=no])
795 test x$READLINE:$tg_found = xyes:no &&
796 AC_MSG_ERROR(
795ca3e5
AK
797termcap could not be found which is required for the
798--enable-readline option (which is enabled by default). Either disable readline
799support with --disable-readline or download and install termcap from:
800 ftp.gnu.org/gnu/termcap
801Note: if you are using precompiled packages you will also need the development
802 package as well (which may be called termcap-devel or something similar).
803Note: (n)curses also seems to work as a substitute for termcap. This was
804 not found either - but you could try installing that as well.
805)
795ca3e5
AK
806fi
807
80992638 808################################################################################
8ce0cbda 809dnl -- Check for dlopen
26e7f2e0
AK
810AC_CHECK_LIB(dl, dlopen, HAVE_LIBDL=yes, HAVE_LIBDL=no)
811
7e9e9502 812if [[ "x$HAVE_LIBDL" = xyes ]]; then
72b2cb61 813 AC_DEFINE([HAVE_LIBDL], 1, [Define to 1 if dynamic libraries are available.])
26e7f2e0 814 LIBS="-ldl $LIBS"
d68a82ec
AK
815else
816 HAVE_LIBDL=no
26e7f2e0
AK
817fi
818
80992638 819################################################################################
8ce0cbda 820dnl -- Check for shared/static conflicts
80992638
AK
821if [[ \( "x$LVM1" = xshared -o "x$POOL" = xshared -o "x$CLUSTER" = xshared \
822 -o "x$SNAPSHOTS" = xshared -o "x$MIRRORS" = xshared \
4922197a 823 \) -a "x$STATIC_LINK" = xyes ]];
d68a82ec 824 then AC_MSG_ERROR(
036f273a 825Features cannot be 'shared' when building statically
d68a82ec 826)
036f273a
AK
827fi
828
d0191583
JM
829################################################################################
830dnl -- Disable selinux
831AC_MSG_CHECKING(whether to enable selinux support)
832AC_ARG_ENABLE(selinux, [ --disable-selinux Disable selinux support],
833 SELINUX=$enableval)
834AC_MSG_RESULT($SELINUX)
835
80992638 836################################################################################
8a2fc586 837dnl -- Check for selinux
80992638 838if test x$SELINUX = xyes; then
8a2fc586 839 AC_CHECK_LIB(sepol, sepol_check_context, HAVE_SEPOL=yes, HAVE_SEPOL=no)
8a2fc586
AK
840
841 if test x$HAVE_SEPOL = xyes; then
d0191583
JM
842 AC_DEFINE([HAVE_SEPOL], 1,
843 [Define to 1 if sepol_check_context is available.])
e1b8a236 844 SELINUX_LIBS="-lsepol $SELINUX_LIBS"
8a2fc586
AK
845 fi
846
80992638
AK
847 AC_CHECK_LIB(selinux, is_selinux_enabled, HAVE_SELINUX=yes, HAVE_SELINUX=no)
848
849 if test x$HAVE_SELINUX = xyes; then
72b2cb61 850 AC_DEFINE([HAVE_SELINUX], 1, [Define to 1 to include support for selinux.])
e1b8a236 851 SELINUX_LIBS="-lselinux $SELINUX_LIBS"
80992638 852 else
ad6254c5 853 AC_MSG_WARN(Disabling selinux)
80992638 854 fi
e1b8a236 855 LIBS="$SELINUX_LIBS $LIBS"
66e941e8 856
d0191583 857 # With --enable-static_link and selinux enabled, linking
66e941e8
JM
858 # fails on at least Debian unstable due to unsatisfied references
859 # to pthread_mutex_lock and _unlock. See if we need -lpthread.
860 if test "$STATIC_LINK-$HAVE_SELINUX" = yes-yes; then
861 lvm_saved_libs=$LIBS
862 LIBS="$LIBS -static"
863 AC_SEARCH_LIBS([pthread_mutex_lock], [pthread],
864 [test "$ac_cv_search_pthread_mutex_lock" = "none required" ||
865 LIB_PTHREAD=-lpthread])
866 LIBS=$lvm_saved_libs
867 fi
036f273a 868fi
d68a82ec 869
8b1a3214
AK
870################################################################################
871dnl -- Check for realtime clock support
872if test x$REALTIME = xyes; then
8b1a3214 873 AC_CHECK_LIB(rt, clock_gettime, HAVE_REALTIME=yes, HAVE_REALTIME=no)
8b1a3214
AK
874
875 if test x$HAVE_REALTIME = xyes; then
876 AC_DEFINE([HAVE_REALTIME], 1, [Define to 1 to include support for realtime clock.])
877 LIBS="-lrt $LIBS"
878 else
879 AC_MSG_WARN(Disabling realtime clock)
880 fi
881fi
882
80992638 883################################################################################
8ce0cbda 884dnl -- Check for getopt
d0191583 885AC_CHECK_HEADERS(getopt.h, AC_DEFINE([HAVE_GETOPTLONG], 1, [Define to 1 if getopt_long is available.]))
b896caa1 886
80992638 887################################################################################
8ce0cbda 888dnl -- Check for readline (Shamelessly copied from parted 1.4.17)
ea7cfb00 889if test x$READLINE != xno; then
0ad6b7e2
JM
890 rl_found=yes
891 AC_CHECK_LIB([readline], [readline], , [rl_found=no])
ea7cfb00
JM
892 test x$READLINE:$rl_found = xyes:no &&
893 AC_MSG_ERROR(
795ca3e5
AK
894GNU Readline could not be found which is required for the
895--enable-readline option (which is enabled by default). Either disable readline
896support with --disable-readline or download and install readline from:
897 ftp.gnu.org/gnu/readline
898Note: if you are using precompiled packages you will also need the development
899package as well (which may be called readline-devel or something similar).
900)
ea7cfb00 901 if test $rl_found = yes; then
0ad6b7e2 902 AC_CHECK_FUNCS([rl_completion_matches])
ea7cfb00
JM
903 AC_DEFINE([READLINE_SUPPORT], 1,
904 [Define to 1 to include the LVM readline shell.])
905 fi
795ca3e5
AK
906fi
907
80992638 908################################################################################
8ce0cbda 909dnl -- Internationalisation stuff
ad6254c5
AK
910AC_MSG_CHECKING(whether to enable internationalisation)
911AC_ARG_ENABLE(nls, [ --enable-nls Enable Native Language Support],
912 INTL=$enableval, INTL=no)
913AC_MSG_RESULT($INTL)
69792976
AK
914
915if test x$INTL = xyes; then
f6fc418d 916# FIXME - Move this - can be device-mapper too
69792976
AK
917 INTL_PACKAGE="lvm2"
918 AC_PATH_PROG(MSGFMT, msgfmt)
919 if [[ "x$MSGFMT" == x ]];
920 then AC_MSG_ERROR(
921 msgfmt not found in path $PATH
922 )
69792976
AK
923 fi;
924
925 AC_ARG_WITH(localedir,
d0191583
JM
926 [ --with-localedir=DIR Translation files in DIR [[PREFIX/share/locale]] ],
927 [ LOCALEDIR="$withval" ],
928 [ LOCALEDIR='${prefix}/share/locale' ])
69792976
AK
929fi
930
80992638 931################################################################################
4a7f3eb2 932AC_ARG_WITH(confdir,
5d518f1f 933 [ --with-confdir=DIR Configuration files in DIR [[/etc]]],
d0191583
JM
934 [ CONFDIR="$withval" ],
935 [ CONFDIR='/etc' ])
0a62c911
AK
936
937AC_ARG_WITH(staticdir,
5d518f1f 938 [ --with-staticdir=DIR Static binary in DIR [[EPREFIX/sbin]]],
d0191583
JM
939 [ STATICDIR="$withval" ],
940 [ STATICDIR='${exec_prefix}/sbin' ])
0a62c911 941
68f2de6d
AK
942AC_ARG_WITH(usrlibdir,
943 [ --with-usrlibdir=DIR],
944 [ usrlibdir="$withval"],
945 [ usrlibdir='${prefix}/lib' ])
946
947AC_ARG_WITH(usrsbindir,
948 [ --with-usrsbindir=DIR],
949 [ usrsbindir="$withval"],
950 [ usrsbindir='${prefix}/sbin' ])
951
5d518f1f
AK
952################################################################################
953AC_ARG_WITH(udev_prefix,
954 [ --with-udev-prefix=UPREFIX Install udev rule files in UPREFIX [[EPREFIX]]],
955 [ udev_prefix="$withval"],
956 [ udev_prefix='${exec_prefix}' ])
957
78ce7acc
AK
958AC_ARG_WITH(udevdir,
959 [ --with-udevdir=DIR udev rules in DIR [[UPREFIX/lib/udev/rules.d]]],
960 [ udevdir="$withval"],
961 [ udevdir='${udev_prefix}/lib/udev/rules.d' ])
5d518f1f 962
ad6254c5
AK
963################################################################################
964dnl -- Ensure additional headers required
965if test x$READLINE = xyes; then
966 AC_CHECK_HEADERS(readline/readline.h readline/history.h,,AC_MSG_ERROR(bailing out))
967fi
968
5c7fc7c4 969if test x$CLVMD != xnone; then
ad6254c5
AK
970 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))
971 AC_CHECK_FUNCS(dup2 getmntent memmove select socket,,AC_MSG_ERROR(bailing out))
972 AC_FUNC_GETMNTENT
973# AC_FUNC_REALLOC
974 AC_FUNC_SELECT_ARGTYPES
975fi
976
ad6254c5
AK
977if test x$CLUSTER != xnone; then
978 AC_CHECK_HEADERS(sys/socket.h sys/un.h,,AC_MSG_ERROR(bailing out))
979 AC_CHECK_FUNCS(socket,,AC_MSG_ERROR(bailing out))
980fi
981
982if test x$HAVE_LIBDL = xyes; then
983 AC_CHECK_HEADERS(dlfcn.h,,AC_MSG_ERROR(bailing out))
984fi
985
986if test x$INTL = xyes; then
987 AC_CHECK_HEADERS(libintl.h,,AC_MSG_ERROR(bailing out))
988fi
989
ad6254c5
AK
990if test x$HAVE_SELINUX = xyes; then
991 AC_CHECK_HEADERS(selinux/selinux.h,,AC_MSG_ERROR(bailing out))
992fi
4a7f3eb2 993
5d518f1f
AK
994if test x$UDEV_SYNC = xyes; then
995 AC_CHECK_HEADERS(sys/ipc.h sys/sem.h,,AC_MSG_ERROR(bailing out))
996fi
997
a653923f
AK
998################################################################################
999AC_PATH_PROG(MODPROBE_CMD, modprobe)
1000
1001if test x$MODPROBE_CMD != x; then
72b2cb61 1002 AC_DEFINE_UNQUOTED([MODPROBE_CMD], ["$MODPROBE_CMD"], [The path to 'modprobe', if available.])
a653923f
AK
1003fi
1004
80992638 1005################################################################################
f6fc418d
AK
1006dnl -- dmeventd pidfile and executable path
1007AH_TEMPLATE(DMEVENTD_PIDFILE, [Path to dmeventd pidfile.])
1008if test "$BUILD_DMEVENTD" = yes; then
1009 AC_ARG_WITH(dmeventd-pidfile,
1010 [ --with-dmeventd-pidfile=PATH dmeventd pidfile [[/var/run/dmeventd.pid]] ],
1011 [ AC_DEFINE_UNQUOTED(DMEVENTD_PIDFILE,"$withval") ],
1012 [ AC_DEFINE_UNQUOTED(DMEVENTD_PIDFILE,"/var/run/dmeventd.pid") ])
1013fi
1014
1015AH_TEMPLATE(DMEVENTD_PATH, [Path to dmeventd binary.])
1016if test "$BUILD_DMEVENTD" = yes; then
1017 dmeventd_prefix="$exec_prefix"
1018 if test "x$dmeventd_prefix" = "xNONE"; then
1019 dmeventd_prefix="$prefix"
1020 fi
1021 if test "x$dmeventd_prefix" = "xNONE"; then
1022 dmeventd_prefix=""
1023 fi
1024 AC_ARG_WITH(dmeventd-path,
5d518f1f 1025 [ --with-dmeventd-path=PATH dmeventd path [[EPREFIX/sbin/dmeventd]] ],
f6fc418d
AK
1026 [ AC_DEFINE_UNQUOTED(DMEVENTD_PATH,"$withval") ],
1027 [ AC_DEFINE_UNQUOTED(DMEVENTD_PATH,"$dmeventd_prefix/sbin/dmeventd") ])
1028fi
1029
1030################################################################################
1031dnl -- which kernel interface to use (ioctl only)
1032AC_MSG_CHECKING(for kernel interface choice)
1033AC_ARG_WITH(interface,
1034 [ --with-interface=IFACE Choose kernel interface (ioctl) [[ioctl]] ],
1035 [ interface="$withval" ],
1036 [ interface=ioctl ])
1037if [[ "x$interface" != xioctl ]];
1038then
1039 AC_MSG_ERROR(--with-interface=ioctl required. fs no longer supported.)
1040fi
1041AC_MSG_RESULT($interface)
1042
1043################################################################################
db8b5af9 1044DM_LIB_VERSION="\"`cat "$srcdir"/VERSION_DM 2>/dev/null || echo Unknown`\""
f58b35b5
AK
1045AC_DEFINE_UNQUOTED(DM_LIB_VERSION, $DM_LIB_VERSION, [Library version])
1046
db8b5af9 1047DM_LIB_PATCHLEVEL=`cat "$srcdir"/VERSION_DM | $AWK -F '[[-. ]]' '{printf "%s.%s.%s",$1,$2,$3}'`
597c3f8e 1048
db8b5af9 1049LVM_VERSION="\"`cat "$srcdir"/VERSION 2>/dev/null || echo Unknown`\""
fae0c576 1050
db8b5af9 1051VER=`cat "$srcdir"/VERSION`
bf456146 1052LVM_RELEASE_DATE="\"`echo $VER | $SED 's/.* (//;s/).*//'`\""
ec6a6fbe
AK
1053VER=`echo "$VER" | $AWK '{print $1}'`
1054LVM_RELEASE="\"`echo "$VER" | $AWK -F '-' '{print $2}'`\""
1055VER=`echo "$VER" | $AWK -F '-' '{print $1}'`
1056LVM_MAJOR=`echo "$VER" | $AWK -F '.' '{print $1}'`
1057LVM_MINOR=`echo "$VER" | $AWK -F '.' '{print $2}'`
bf456146
AK
1058LVM_PATCHLEVEL=`echo "$VER" | $AWK -F '[[(.]]' '{print $3}'`
1059LVM_LIBAPI=`echo "$VER" | $AWK -F '[[()]]' '{print $2}'`
ec6a6fbe 1060
80992638 1061################################################################################
572fefeb 1062AC_SUBST(APPLIB)
66fd4529 1063AC_SUBST(BUILD_CMIRRORD)
d0191583 1064AC_SUBST(BUILD_DMEVENTD)
a946372e
AK
1065AC_SUBST(CCS_CFLAGS)
1066AC_SUBST(CCS_LIBS)
b896caa1 1067AC_SUBST(CFLAGS)
d0191583 1068AC_SUBST(CFLOW_CMD)
8106cdd5 1069AC_SUBST(CLDFLAGS)
8106cdd5 1070AC_SUBST(CLDNOWHOLEARCHIVE)
d0191583
JM
1071AC_SUBST(CLDWHOLEARCHIVE)
1072AC_SUBST(CLUSTER)
1073AC_SUBST(CLVMD)
a946372e
AK
1074AC_SUBST(CMAN_CFLAGS)
1075AC_SUBST(CMAN_LIBS)
d0191583 1076AC_SUBST(CMDLIB)
edf47283
AK
1077AC_SUBST(CONFDB_CFLAGS)
1078AC_SUBST(CONFDB_LIBS)
1079AC_SUBST(CONFDIR)
d0191583 1080AC_SUBST(COPTIMISE_FLAG)
edf47283
AK
1081AC_SUBST(CPG_CFLAGS)
1082AC_SUBST(CPG_LIBS)
d0191583 1083AC_SUBST(CSCOPE_CMD)
8ef2b021 1084AC_SUBST(DEBUG)
199e490e 1085AC_SUBST(DEVMAPPER)
a946372e
AK
1086AC_SUBST(DLM_CFLAGS)
1087AC_SUBST(DLM_LIBS)
d0191583
JM
1088AC_SUBST(DMEVENTD)
1089AC_SUBST(DM_COMPAT)
1090AC_SUBST(DM_DEVICE_GID)
1091AC_SUBST(DM_DEVICE_MODE)
1092AC_SUBST(DM_DEVICE_UID)
1093AC_SUBST(DM_IOCTLS)
1094AC_SUBST(DM_LIB_VERSION)
597c3f8e 1095AC_SUBST(DM_LIB_PATCHLEVEL)
d0191583
JM
1096AC_SUBST(FSADM)
1097AC_SUBST(GROUP)
a946372e
AK
1098AC_SUBST(GULM_CFLAGS)
1099AC_SUBST(GULM_LIBS)
26e7f2e0 1100AC_SUBST(HAVE_LIBDL)
8b1a3214 1101AC_SUBST(HAVE_REALTIME)
d0191583
JM
1102AC_SUBST(HAVE_SELINUX)
1103AC_SUBST(INTL)
1104AC_SUBST(INTL_PACKAGE)
1105AC_SUBST(JOBS)
1106AC_SUBST(LDDEPS)
1107AC_SUBST(LIBS)
1108AC_SUBST(LIB_SUFFIX)
69792976 1109AC_SUBST(LOCALEDIR)
d0191583
JM
1110AC_SUBST(LVM1)
1111AC_SUBST(LVM1_FALLBACK)
d0191583 1112AC_SUBST(LVM_VERSION)
bf456146 1113AC_SUBST(LVM_LIBAPI)
ec6a6fbe
AK
1114AC_SUBST(LVM_MAJOR)
1115AC_SUBST(LVM_MINOR)
1116AC_SUBST(LVM_PATCHLEVEL)
1117AC_SUBST(LVM_RELEASE)
1118AC_SUBST(LVM_RELEASE_DATE)
d0191583
JM
1119AC_SUBST(MIRRORS)
1120AC_SUBST(MSGFMT)
1121AC_SUBST(OWNER)
1122AC_SUBST(PKGCONFIG)
1123AC_SUBST(POOL)
edf47283
AK
1124AC_SUBST(QUORUM_CFLAGS)
1125AC_SUBST(QUORUM_LIBS)
90c80887
AK
1126AC_SUBST(SACKPT_CFLAGS)
1127AC_SUBST(SACKPT_LIBS)
a946372e
AK
1128AC_SUBST(SALCK_CFLAGS)
1129AC_SUBST(SALCK_LIBS)
e1b8a236 1130AC_SUBST(SELINUX_LIBS)
d0191583 1131AC_SUBST(SNAPSHOTS)
0a62c911 1132AC_SUBST(STATICDIR)
d0191583 1133AC_SUBST(STATIC_LINK)
5d518f1f 1134AC_SUBST(UDEV_RULES)
4df024c4 1135AC_SUBST(UDEV_SYNC)
66e941e8 1136AC_SUBST([LIB_PTHREAD])
f6fc418d
AK
1137AC_SUBST(interface)
1138AC_SUBST(kerneldir)
1139AC_SUBST(missingkernel)
1140AC_SUBST(kernelvsn)
1141AC_SUBST(tmpdir)
5d518f1f
AK
1142AC_SUBST(udev_prefix)
1143AC_SUBST(udevdir)
68f2de6d
AK
1144AC_SUBST(usrlibdir)
1145AC_SUBST(usrsbindir)
8106cdd5 1146
80992638 1147################################################################################
d3a356b4 1148dnl -- First and last lines should not contain files to generate in order to
8ce0cbda 1149dnl -- keep utility scripts running properly
d3a356b4
JM
1150AC_CONFIG_FILES([
1151Makefile
1152make.tmpl
1153daemons/Makefile
1154daemons/clvmd/Makefile
5d311afb 1155daemons/cmirrord/Makefile
f6fc418d
AK
1156daemons/dmeventd/Makefile
1157daemons/dmeventd/libdevmapper-event.pc
b7edb5bf 1158daemons/dmeventd/plugins/Makefile
f6fc418d
AK
1159daemons/dmeventd/plugins/mirror/Makefile
1160daemons/dmeventd/plugins/snapshot/Makefile
d3a356b4 1161doc/Makefile
db8b5af9 1162include/.symlinks
f6fc418d
AK
1163include/Makefile
1164lib/Makefile
d3a356b4
JM
1165lib/format1/Makefile
1166lib/format_pool/Makefile
1167lib/locking/Makefile
1168lib/mirror/Makefile
ec6a6fbe 1169lib/misc/lvm-version.h
d3a356b4 1170lib/snapshot/Makefile
f6fc418d
AK
1171libdm/Makefile
1172libdm/libdevmapper.pc
e0c64c6c 1173liblvm/Makefile
70046623 1174liblvm/liblvm2app.pc
f6fc418d
AK
1175man/Makefile
1176po/Makefile
2de38033 1177scripts/clvmd_init_red_hat
595eaf92 1178scripts/lvm2_monitoring_init_red_hat
d3a356b4 1179scripts/Makefile
f6fc418d 1180test/Makefile
c7e363f9 1181test/api/Makefile
d3a356b4 1182tools/Makefile
5d518f1f 1183udev/Makefile
7a197a62
AK
1184])
1185AC_OUTPUT
2dc95e1c
AK
1186
1187if test x$ODIRECT != xyes; then
ad6254c5 1188 AC_MSG_WARN(Warning: O_DIRECT disabled: low-memory pvmove may lock up)
2dc95e1c 1189fi
This page took 0.206403 seconds and 5 git commands to generate.