]> sourceware.org Git - lvm2.git/blob - configure.in
Use DL_LIBS, remove -ldl from global LIBS and link -ldl only when needed.
[lvm2.git] / configure.in
1 ###############################################################################
2 ## Copyright (C) 2000-2004 Sistina Software, Inc. All rights reserved.
3 ## Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved.
4 ##
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.
8 ##
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
12 ################################################################################
13
14 AC_PREREQ(2.61)
15 ################################################################################
16 dnl -- Process this file with autoconf to produce a configure script.
17 AC_INIT
18 AC_CONFIG_SRCDIR([lib/device/dev-cache.h])
19 AC_CONFIG_HEADERS([lib/misc/configure.h])
20
21 ################################################################################
22 dnl -- Setup the directory where autoconf has auxilary files
23 AC_CONFIG_AUX_DIR(autoconf)
24
25 ################################################################################
26 dnl -- Get system type
27 AC_CANONICAL_TARGET([])
28
29 case "$host_os" in
30 linux*)
31 CFLAGS="$CFLAGS"
32 COPTIMISE_FLAG="-O2"
33 CLDFLAGS="$CLDFLAGS -Wl,--version-script,.export.sym"
34 CLDWHOLEARCHIVE="-Wl,-whole-archive"
35 CLDNOWHOLEARCHIVE="-Wl,-no-whole-archive"
36 LDDEPS="$LDDEPS .export.sym"
37 LDFLAGS="$LDFLAGS -Wl,--export-dynamic"
38 LIB_SUFFIX=so
39 DEVMAPPER=yes
40 ODIRECT=yes
41 DM_IOCTLS=yes
42 SELINUX=yes
43 CLUSTER=internal
44 FSADM=yes
45 ;;
46 darwin*)
47 CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
48 COPTIMISE_FLAG="-O2"
49 CLDFLAGS="$CLDFLAGS"
50 CLDWHOLEARCHIVE="-all_load"
51 CLDNOWHOLEARCHIVE=
52 LIB_SUFFIX=dylib
53 DEVMAPPER=yes
54 ODIRECT=no
55 DM_IOCTLS=no
56 SELINUX=no
57 CLUSTER=none
58 FSADM=no
59 ;;
60 esac
61
62 ################################################################################
63 dnl -- Checks for programs.
64 AC_PROG_SED
65 AC_PROG_AWK
66 AC_PROG_CC
67
68 dnl probably no longer needed in 2008, but...
69 AC_PROG_GCC_TRADITIONAL
70 AC_PROG_INSTALL
71 AC_PROG_LN_S
72 AC_PROG_MAKE_SET
73 AC_PROG_MKDIR_P
74 AC_PROG_RANLIB
75 AC_PATH_PROG(CFLOW_CMD, cflow)
76 AC_PATH_PROG(CSCOPE_CMD, cscope)
77
78 ################################################################################
79 dnl -- Check for header files.
80 AC_HEADER_DIRENT
81 AC_HEADER_STDC
82 AC_HEADER_SYS_WAIT
83 AC_HEADER_TIME
84
85 AC_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)])
88
89 case "$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)) ;;
94 esac
95
96 AC_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)])
99 AC_CHECK_HEADERS(termios.h sys/statvfs.h)
100
101 ################################################################################
102 dnl -- Check for typedefs, structures, and compiler characteristics.
103 AC_C_CONST
104 AC_C_INLINE
105 AC_CHECK_MEMBERS([struct stat.st_rdev])
106 AC_TYPE_OFF_T
107 AC_TYPE_PID_T
108 AC_TYPE_SIGNAL
109 AC_TYPE_SIZE_T
110 AC_TYPE_MODE_T
111 AC_CHECK_MEMBERS([struct stat.st_rdev])
112 AC_STRUCT_TM
113
114 ################################################################################
115 dnl -- Check for functions
116 AC_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)])
119 AC_CHECK_FUNCS(siginterrupt)
120 AC_FUNC_ALLOCA
121 AC_FUNC_CLOSEDIR_VOID
122 AC_FUNC_FORK
123 AC_FUNC_LSTAT
124 AC_FUNC_MALLOC
125 AC_FUNC_MEMCMP
126 AC_FUNC_MMAP
127 AC_FUNC_STAT
128 AC_FUNC_STRTOD
129 AC_FUNC_VPRINTF
130
131 ################################################################################
132 dnl -- Enables statically-linked tools
133 AC_MSG_CHECKING(whether to use static linking)
134 AC_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)
138 AC_MSG_RESULT($STATIC_LINK)
139
140 ################################################################################
141 dnl -- Prefix is /usr by default, the exec_prefix default is setup later
142 AC_PREFIX_DEFAULT(/usr)
143
144 ################################################################################
145 dnl -- Setup the ownership of the files
146 AC_MSG_CHECKING(file owner)
147 OWNER=""
148
149 AC_ARG_WITH(user,
150 [ --with-user=USER Set the owner of installed files [[USER=]] ],
151 [ OWNER="$withval" ])
152 AC_MSG_RESULT($OWNER)
153
154 if test x$OWNER != x; then
155 OWNER="-o $OWNER"
156 fi
157
158 ################################################################################
159 dnl -- Setup the group ownership of the files
160 AC_MSG_CHECKING(group owner)
161 GROUP=""
162 AC_ARG_WITH(group,
163 [ --with-group=GROUP Set the group owner of installed files [[GROUP=]] ],
164 [ GROUP="$withval" ])
165 AC_MSG_RESULT($GROUP)
166
167 if test x$GROUP != x; then
168 GROUP="-g $GROUP"
169 fi
170
171 ################################################################################
172 dnl -- Setup device node ownership
173 AC_MSG_CHECKING(device node uid)
174
175 AC_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" ] )
178 AC_MSG_RESULT($DM_DEVICE_UID)
179
180 ################################################################################
181 dnl -- Setup device group ownership
182 AC_MSG_CHECKING(device node gid)
183
184 AC_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" ] )
187 AC_MSG_RESULT($DM_DEVICE_GID)
188
189 ################################################################################
190 dnl -- Setup device mode
191 AC_MSG_CHECKING(device node mode)
192
193 AC_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" ] )
196 AC_MSG_RESULT($DM_DEVICE_MODE)
197
198 ################################################################################
199 dnl -- LVM1 tool fallback option
200 AC_MSG_CHECKING(whether to enable lvm1 fallback)
201 AC_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)
203 AC_MSG_RESULT($LVM1_FALLBACK)
204
205 if test x$LVM1_FALLBACK = xyes; then
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])
207 fi
208
209 ################################################################################
210 dnl -- format1 inclusion type
211 AC_MSG_CHECKING(whether to include support for lvm1 metadata)
212 AC_ARG_WITH(lvm1,
213 [ --with-lvm1=TYPE LVM1 metadata support: internal/shared/none
214 [TYPE=internal] ],
215 [ LVM1="$withval" ],
216 [ LVM1="internal" ])
217 AC_MSG_RESULT($LVM1)
218
219 if [[ "x$LVM1" != xnone -a "x$LVM1" != xinternal -a "x$LVM1" != xshared ]];
220 then AC_MSG_ERROR(
221 --with-lvm1 parameter invalid
222 )
223 fi;
224
225 if test x$LVM1 = xinternal; then
226 AC_DEFINE([LVM1_INTERNAL], 1, [Define to 1 to include built-in support for LVM1 metadata.])
227 fi
228
229 ################################################################################
230 dnl -- format_pool inclusion type
231 AC_MSG_CHECKING(whether to include support for GFS pool metadata)
232 AC_ARG_WITH(pool,
233 [ --with-pool=TYPE GFS pool read-only support: internal/shared/none
234 [TYPE=internal] ],
235 [ POOL="$withval" ],
236 [ POOL="internal" ])
237 AC_MSG_RESULT($POOL)
238
239 if [[ "x$POOL" != xnone -a "x$POOL" != xinternal -a "x$POOL" != xshared ]];
240 then AC_MSG_ERROR(
241 --with-pool parameter invalid
242 )
243 fi;
244
245 if test x$POOL = xinternal; then
246 AC_DEFINE([POOL_INTERNAL], 1, [Define to 1 to include built-in support for GFS pool metadata.])
247 fi
248
249 ################################################################################
250 dnl -- cluster_locking inclusion type
251 AC_MSG_CHECKING(whether to include support for cluster locking)
252 AC_ARG_WITH(cluster,
253 [ --with-cluster=TYPE Cluster LVM locking support: internal/shared/none
254 [TYPE=internal] ],
255 [ CLUSTER="$withval" ])
256 AC_MSG_RESULT($CLUSTER)
257
258 if [[ "x$CLUSTER" != xnone -a "x$CLUSTER" != xinternal -a "x$CLUSTER" != xshared ]];
259 then AC_MSG_ERROR(
260 --with-cluster parameter invalid
261 )
262 fi;
263
264 if test x$CLUSTER = xinternal; then
265 AC_DEFINE([CLUSTER_LOCKING_INTERNAL], 1, [Define to 1 to include built-in support for clustered LVM locking.])
266 fi
267
268 ################################################################################
269 dnl -- snapshots inclusion type
270 AC_MSG_CHECKING(whether to include snapshots)
271 AC_ARG_WITH(snapshots,
272 [ --with-snapshots=TYPE Snapshot support: internal/shared/none
273 [TYPE=internal] ],
274 [ SNAPSHOTS="$withval" ],
275 [ SNAPSHOTS="internal" ])
276 AC_MSG_RESULT($SNAPSHOTS)
277
278 if [[ "x$SNAPSHOTS" != xnone -a "x$SNAPSHOTS" != xinternal -a "x$SNAPSHOTS" != xshared ]];
279 then AC_MSG_ERROR(
280 --with-snapshots parameter invalid
281 )
282 fi;
283
284 if test x$SNAPSHOTS = xinternal; then
285 AC_DEFINE([SNAPSHOT_INTERNAL], 1, [Define to 1 to include built-in support for snapshots.])
286 fi
287
288 ################################################################################
289 dnl -- mirrors inclusion type
290 AC_MSG_CHECKING(whether to include mirrors)
291 AC_ARG_WITH(mirrors,
292 [ --with-mirrors=TYPE Mirror support: internal/shared/none
293 [TYPE=internal] ],
294 [ MIRRORS="$withval" ],
295 [ MIRRORS="internal" ])
296 AC_MSG_RESULT($MIRRORS)
297
298 if [[ "x$MIRRORS" != xnone -a "x$MIRRORS" != xinternal -a "x$MIRRORS" != xshared ]];
299 then AC_MSG_ERROR(
300 --with-mirrors parameter invalid
301 )
302 fi;
303
304 if test x$MIRRORS = xinternal; then
305 AC_DEFINE([MIRRORED_INTERNAL], 1, [Define to 1 to include built-in support for mirrors.])
306 fi
307
308 ################################################################################
309 dnl -- Disable readline
310 AC_MSG_CHECKING(whether to enable readline)
311 AC_ARG_ENABLE([readline],
312 [ --disable-readline Disable readline support],
313 [READLINE=$enableval], [READLINE=maybe])
314 AC_MSG_RESULT($READLINE)
315
316 ################################################################################
317 dnl -- Disable realtime clock support
318 AC_MSG_CHECKING(whether to enable realtime support)
319 AC_ARG_ENABLE(realtime, [ --enable-realtime Enable realtime clock support],
320 REALTIME=$enableval)
321 AC_MSG_RESULT($REALTIME)
322
323 ################################################################################
324 dnl -- Init pkg-config with dummy invokation:
325 dnl -- this is required because PKG_CHECK_MODULES macro is expanded
326 dnl -- to initialize the pkg-config environment only at the first invokation,
327 dnl -- that would be conditional in this configure.in.
328 pkg_config_init() {
329 PKG_CHECK_MODULES(PKGCONFIGINIT, pkgconfiginit, [],
330 [AC_MSG_RESULT([pkg-config initialized])])
331 PKGCONFIG_INIT=1
332 }
333
334 ################################################################################
335 dnl -- Build cluster LVM daemon
336 AC_MSG_CHECKING(whether to build cluster LVM daemon)
337 AC_ARG_WITH(clvmd,
338 [ --with-clvmd=TYPE Build cluster LVM Daemon.
339 The following cluster manager combinations are valid:
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)
345 [TYPE=none] ],
346 [ CLVMD="$withval" ],
347 [ CLVMD="none" ])
348 if test x$CLVMD = xyes; then
349 CLVMD=all
350 fi
351 AC_MSG_RESULT($CLVMD)
352
353 dnl -- If clvmd enabled without cluster locking, automagically include it
354 if test x$CLVMD != xnone && test x$CLUSTER = xnone; then
355 CLUSTER=internal
356 fi
357
358 dnl -- init pkgconfig if required
359 if test x$CLVMD != xnone && test x$PKGCONFIG_INIT != x1; then
360 pkg_config_init
361 fi
362
363
364 dnl -- define build types
365 if [[ `expr x"$CLVMD" : '.*gulm.*'` != 0 ]]; then
366 BUILDGULM=yes
367 fi
368 if [[ `expr x"$CLVMD" : '.*corosync.*'` != 0 ]]; then
369 BUILDCOROSYNC=yes
370 fi
371 if [[ `expr x"$CLVMD" : '.*openais.*'` != 0 ]]; then
372 BUILDOPENAIS=yes
373 fi
374 if [[ `expr x"$CLVMD" : '.*cman.*'` != 0 ]]; then
375 BUILDCMAN=yes
376 fi
377
378 dnl -- sanity check around user selection
379 if 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
384 fi
385
386 dnl -- define a soft bailout if we are autodetecting
387 soft_bailout() {
388 NOTFOUND=1
389 }
390
391 hard_bailout() {
392 AC_MSG_ERROR([bailing out])
393 }
394
395 dnl -- if clvmd=all then set soft_bailout (we don't want to error)
396 dnl -- and set all builds to yes. We need to do this here
397 dnl -- to skip the gulm + openais|corosync sanity check above.
398 if test x$CLVMD = xall; then
399 bailout=soft_bailout
400 BUILDGULM=yes
401 BUILDCMAN=yes
402 BUILDCOROSYNC=yes
403 BUILDOPENAIS=yes
404 else
405 bailout=hard_bailout
406 fi
407
408 dnl -- helper macro to check libs without adding them to LIBS
409 check_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
422 dnl -- Look for gulm libraries if required.
423 if 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])
442 fi
443
444 dnl -- Look for cman libraries if required.
445 if 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
457 fi
458
459 dnl -- Look for corosync that's required also for openais build
460 dnl -- only enough recent version of corosync ship pkg-config files.
461 dnl -- We can safely rely on that to detect the correct bits.
462 if test x$BUILDCOROSYNC = xyes || \
463 test x$BUILDOPENAIS = xyes; then
464 PKG_CHECK_MODULES(COROSYNC, corosync, [HAVE_COROSYNC=yes], $bailout)
465 CHECKCONFDB=yes
466 fi
467
468 dnl -- Look for corosync libraries if required.
469 if test x$BUILDCOROSYNC = xyes; then
470 PKG_CHECK_MODULES(QUORUM, libquorum, [HAVE_QUORUM=yes], $bailout)
471 CHECKCPG=yes
472 CHECKDLM=yes
473 fi
474
475 dnl -- Look for openais libraries if required.
476 if test x$BUILDOPENAIS = xyes; then
477 PKG_CHECK_MODULES(SALCK, libSaLck, [HAVE_SALCK=yes], $bailout)
478 CHECKCPG=yes
479 fi
480
481 dnl -- Below are checks for libraries common to more than one build.
482
483 dnl -- Check confdb library.
484 dnl -- mandatory for corosync build.
485 dnl -- optional for openais/cman build.
486
487 if 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
509 fi
510
511 dnl -- Check cpg library.
512 if test x$CHECKCPG = xyes; then
513 PKG_CHECK_MODULES(CPG, libcpg, [HAVE_CPG=yes], $bailout)
514 fi
515
516 dnl -- Check dlm library.
517 if 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])
527 fi
528
529 dnl -- If we are autodetecting, we need to re-create
530 dnl -- the depedencies checks and set a proper CLVMD.
531 if test x$CLVMD = xall; then
532 CLVMD=none
533 if test x$HAVE_CCS = xyes && \
534 test x$HAVE_GULM = xyes; then
535 AC_MSG_RESULT([Enabling clvmd gulm cluster manager])
536 CLVMD="$CLVMD,gulm"
537 fi
538 if test x$HAVE_CMAN = xyes && \
539 test x$HAVE_DLM = xyes; then
540 AC_MSG_RESULT([Enabling clvmd cman cluster manager])
541 CLVMD="$CLVMD,cman"
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
548 AC_MSG_RESULT([Enabling clvmd corosync cluster manager])
549 CLVMD="$CLVMD,corosync"
550 fi
551 if test x$HAVE_COROSYNC = xyes && \
552 test x$HAVE_CPG = xyes && \
553 test x$HAVE_SALCK = xyes; then
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.])
559 fi
560 fi
561
562 ################################################################################
563 dnl -- Build cluster mirror log daemon
564 AC_MSG_CHECKING(whether to build cluster mirror log daemon)
565 AC_ARG_ENABLE(cmirrord, [ --enable-cmirrord Enable the cluster mirror log daemon],
566 CMIRRORD=$enableval, CMIRRORD=no)
567 AC_MSG_RESULT($CMIRRORD)
568
569 BUILD_CMIRRORD=$CMIRRORD
570
571 ################################################################################
572 dnl -- cmirrord pidfile
573 AH_TEMPLATE(CMIRRORD_PIDFILE, [Path to cmirrord pidfile.])
574 if 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") ])
579 fi
580
581 ################################################################################
582 dnl -- Look for corosync libraries if required.
583 if [[ "x$BUILD_CMIRRORD" = xyes ]]; then
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
592 fi
593
594 ################################################################################
595 dnl -- Enable debugging
596 AC_MSG_CHECKING(whether to enable debugging)
597 AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging],
598 DEBUG=$enableval, DEBUG=no)
599 AC_MSG_RESULT($DEBUG)
600
601 dnl -- Normally turn off optimisation for debug builds
602 if test x$DEBUG = xyes; then
603 COPTIMISE_FLAG=
604 else
605 CSCOPE_CMD=
606 fi
607
608 ################################################################################
609 dnl -- Override optimisation
610 AC_MSG_CHECKING(for C optimisation flag)
611 AC_ARG_WITH(optimisation,
612 [ --with-optimisation=OPT C optimisation flag [[OPT=-O2]] ],
613 [ COPTIMISE_FLAG="$withval" ])
614 AC_MSG_RESULT($COPTIMISE_FLAG)
615
616 ################################################################################
617 dnl -- Enable profiling
618 AC_MSG_CHECKING(whether to gather gcov profiling data)
619 AC_ARG_ENABLE(profiling,
620 AC_HELP_STRING(--enable-profiling, [Gather gcov profiling data]),
621 PROFILING=$enableval, PROFILING=no)
622 AC_MSG_RESULT($PROFILING)
623
624 if test "x$PROFILING" = xyes; then
625 COPTIMISE_FLAG="$COPTIMISE_FLAG -fprofile-arcs -ftest-coverage"
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
631 fi
632
633 ################################################################################
634 dnl -- Disable devmapper
635 AC_MSG_CHECKING(whether to use device-mapper)
636 AC_ARG_ENABLE(devmapper, [ --disable-devmapper Disable LVM2 device-mapper interaction],
637 DEVMAPPER=$enableval)
638 AC_MSG_RESULT($DEVMAPPER)
639
640 if test x$DEVMAPPER = xyes; then
641 AC_DEFINE([DEVMAPPER_SUPPORT], 1, [Define to 1 to enable LVM2 device-mapper interaction.])
642 fi
643
644 ################################################################################
645 dnl -- Enable udev synchronisation
646 AC_MSG_CHECKING(whether to enable synchronisation with udev processing)
647 AC_ARG_ENABLE(udev_sync, [ --enable-udev_sync Enable synchronisation with udev processing],
648 UDEV_SYNC=$enableval, UDEV_SYNC=no)
649 AC_MSG_RESULT($UDEV_SYNC)
650
651 if test x$UDEV_SYNC = xyes; then
652 AC_DEFINE([UDEV_SYNC_SUPPORT], 1, [Define to 1 to enable synchronisation with udev processing.])
653 fi
654
655 dnl -- Enable udev rules
656 AC_MSG_CHECKING(whether to enable installation of udev rules required for synchronisation)
657 AC_ARG_ENABLE(udev_rules, [ --enable-udev_rules Install rule files needed for udev synchronisation],
658 UDEV_RULES=$enableval, UDEV_RULES=$UDEV_SYNC)
659 AC_MSG_RESULT($UDEV_RULES)
660
661 ################################################################################
662 dnl -- Check for libudev's udev_queue_get_udev_is_active function when udev synchronisation is enabled
663
664 if 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"
672 else
673 AC_MSG_WARN(It won't be possible to get udev state. We will assume that udev is not running.)
674 fi
675 fi
676
677 ################################################################################
678 dnl -- Compatibility mode
679 AC_ARG_ENABLE(compat, [ --enable-compat Enable support for old device-mapper versions],
680 DM_COMPAT=$enableval, DM_COMPAT=no)
681
682 ################################################################################
683 dnl -- Compatible units suffix mode
684 AC_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
689 if 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.])
691 fi
692
693 ################################################################################
694 dnl -- Disable ioctl
695 AC_ARG_ENABLE(ioctl, [ --disable-driver Disable calls to device-mapper in the kernel],
696 DM_IOCTLS=$enableval)
697
698 ################################################################################
699 dnl -- Disable O_DIRECT
700 AC_MSG_CHECKING(whether to enable O_DIRECT)
701 AC_ARG_ENABLE(o_direct, [ --disable-o_direct Disable O_DIRECT],
702 ODIRECT=$enableval)
703 AC_MSG_RESULT($ODIRECT)
704
705 if test x$ODIRECT = xyes; then
706 AC_DEFINE([O_DIRECT_SUPPORT], 1, [Define to 1 to enable O_DIRECT support.])
707 fi
708
709 ################################################################################
710 dnl -- Enable liblvm2app.so
711 AC_MSG_CHECKING(whether to build liblvm2app.so application library)
712 AC_ARG_ENABLE(applib,
713 [ --enable-applib Build application library],
714 APPLIB=$enableval, APPLIB=no)
715 AC_MSG_RESULT($APPLIB)
716 AC_SUBST([LVM2APP_LIB])
717 test x$APPLIB = xyes \
718 && LVM2APP_LIB=-llvm2app \
719 || LVM2APP_LIB=
720
721 ################################################################################
722 dnl -- Enable cmdlib
723 AC_MSG_CHECKING(whether to compile liblvm2cmd.so)
724 AC_ARG_ENABLE(cmdlib, [ --enable-cmdlib Build shared command library],
725 CMDLIB=$enableval, CMDLIB=no)
726 AC_MSG_RESULT($CMDLIB)
727 AC_SUBST([LVM2CMD_LIB])
728 test x$CMDLIB = xyes \
729 && LVM2CMD_LIB=-llvm2cmd \
730 || LVM2CMD_LIB=
731
732 ################################################################################
733 dnl -- Enable pkg-config
734 AC_ARG_ENABLE(pkgconfig, [ --enable-pkgconfig Install pkgconfig support],
735 PKGCONFIG=$enableval, PKGCONFIG=no)
736
737 ################################################################################
738 dnl -- Enable fsadm
739 AC_MSG_CHECKING(whether to install fsadm)
740 AC_ARG_ENABLE(fsadm, [AC_HELP_STRING([--disable-fsadm], [Disable fsadm])],
741 FSADM=$enableval)
742 AC_MSG_RESULT($FSADM)
743
744 ################################################################################
745 dnl -- enable dmeventd handling
746 AC_MSG_CHECKING(whether to use dmeventd)
747 AC_ARG_ENABLE(dmeventd, [ --enable-dmeventd Enable the device-mapper event daemon],
748 DMEVENTD=$enableval)
749 AC_MSG_RESULT($DMEVENTD)
750
751 BUILD_DMEVENTD=$DMEVENTD
752
753 dnl -- dmeventd currently requires internal mirror support
754 if 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
765 fi
766
767 if test x$DMEVENTD = xyes; then
768 AC_DEFINE([DMEVENTD], 1, [Define to 1 to enable the device-mapper event daemon.])
769 fi
770
771 ################################################################################
772 dnl -- getline included in recent libc
773
774 AC_CHECK_LIB(c, getline, AC_DEFINE([HAVE_GETLINE], 1,
775 [Define to 1 if getline is available.]))
776
777 ################################################################################
778 dnl -- canonicalize_file_name included in recent libc
779
780 AC_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
784 ################################################################################
785 dnl -- Clear default exec_prefix - install into /sbin rather than /usr/sbin
786 if [[ "x$exec_prefix" = xNONE -a "x$prefix" = xNONE ]];
787 then exec_prefix="";
788 fi;
789
790 ################################################################################
791 dnl -- Check for dlopen
792 AC_CHECK_LIB(dl, dlopen, [
793 AC_DEFINE([HAVE_LIBDL], 1, [Define to 1 if dynamic libraries are available.])
794 DL_LIBS="-ldl"
795 HAVE_LIBDL=yes ], [
796 DL_LIBS=
797 HAVE_LIBDL=no ])
798
799 ################################################################################
800 dnl -- Check for shared/static conflicts
801 if [[ \( "x$LVM1" = xshared -o "x$POOL" = xshared -o "x$CLUSTER" = xshared \
802 -o "x$SNAPSHOTS" = xshared -o "x$MIRRORS" = xshared \
803 \) -a "x$STATIC_LINK" = xyes ]];
804 then AC_MSG_ERROR(
805 Features cannot be 'shared' when building statically
806 )
807 fi
808
809 ################################################################################
810 if [[ "$DMEVENTD" = yes -o "$CLVMD" != none ]] ; then
811 AC_CHECK_LIB([pthread], [pthread_mutex_lock],
812 [PTHREAD_LIBS="-lpthread"], hard_bailout)
813 fi
814
815 ################################################################################
816 dnl -- Disable selinux
817 AC_MSG_CHECKING(whether to enable selinux support)
818 AC_ARG_ENABLE(selinux, [ --disable-selinux Disable selinux support],
819 SELINUX=$enableval)
820 AC_MSG_RESULT($SELINUX)
821
822 ################################################################################
823 dnl -- Check for selinux
824 if test x$SELINUX = xyes; then
825 AC_CHECK_LIB([sepol], [sepol_check_context], [
826 AC_DEFINE([HAVE_SEPOL], 1, [Define to 1 if sepol_check_context is available.])
827 SELINUX_LIBS="-lsepol"])
828
829 AC_CHECK_LIB([selinux], [is_selinux_enabled], [
830 AC_CHECK_HEADERS([selinux/selinux.h],, hard_bailout)
831 AC_DEFINE([HAVE_SELINUX], 1, [Define to 1 to include support for selinux.])
832 SELINUX_LIBS="-lselinux $SELINUX_LIBS"
833 HAVE_SELINUX=yes ], [
834 AC_MSG_WARN(Disabling selinux)
835 SELINUX_LIBS=
836 HAVE_SELINUX=no ])
837 fi
838
839 ################################################################################
840 dnl -- Check for realtime clock support
841 if test x$REALTIME = xyes; then
842 AC_CHECK_LIB(rt, clock_gettime, HAVE_REALTIME=yes, HAVE_REALTIME=no)
843
844 if test x$HAVE_REALTIME = xyes; then
845 AC_DEFINE([HAVE_REALTIME], 1, [Define to 1 to include support for realtime clock.])
846 LIBS="-lrt $LIBS"
847 else
848 AC_MSG_WARN(Disabling realtime clock)
849 fi
850 fi
851
852 ################################################################################
853 dnl -- Check for getopt
854 AC_CHECK_HEADERS(getopt.h, AC_DEFINE([HAVE_GETOPTLONG], 1, [Define to 1 if getopt_long is available.]))
855
856 ################################################################################
857 dnl -- Check for readline (Shamelessly copied from parted 1.4.17)
858 if test x$READLINE != xno; then
859 lvm_saved_libs=$LIBS
860 AC_SEARCH_LIBS([tgetent], [tinfo ncurses curses termcap termlib],
861 READLINE_LIBS=$ac_cv_search_tgetent, [
862 if test "$READLINE" = yes; then
863 AC_MSG_ERROR(
864 [termcap could not be found which is required for the
865 --enable-readline option (which is enabled by default). Either disable readline
866 support with --disable-readline or download and install termcap from:
867 ftp.gnu.org/gnu/termcap
868 Note: if you are using precompiled packages you will also need the development
869 package as well (which may be called termcap-devel or something similar).
870 Note: (n)curses also seems to work as a substitute for termcap. This was
871 not found either - but you could try installing that as well.])
872 fi])
873 dnl -- Old systems may need extra termcap dependency explicitly in LIBS
874 AC_CHECK_LIB([readline], [readline], [
875 AC_DEFINE([READLINE_SUPPORT], 1,
876 [Define to 1 to include the LVM readline shell.])
877 dnl -- Try only with -lreadline and check for different symbol
878 LIBS=$lvm_saved_libs
879 AC_CHECK_LIB([readline], [rl_line_buffer],
880 [ READLINE_LIBS="-lreadline" ], [
881 AC_MSG_RESULT([linking -lreadline with $READLINE_LIBS needed])
882 READLINE_LIBS="-lreadline $READLINE_LIBS"
883 ]) ], [
884 READLINE_LIBS=
885 if test "$READLINE" = yes; then
886 AC_MSG_ERROR(
887 [GNU Readline could not be found which is required for the
888 --enable-readline option (which is enabled by default). Either disable readline
889 support with --disable-readline or download and install readline from:
890 ftp.gnu.org/gnu/readline
891 Note: if you are using precompiled packages you will also need the development
892 package as well (which may be called readline-devel or something similar).])
893 fi ])
894 LIBS="$READLINE_LIBS $lvm_saved_libs"
895 AC_CHECK_FUNCS([rl_completion_matches])
896 LIBS=$lvm_saved_libs
897 fi
898
899 ################################################################################
900 dnl -- Internationalisation stuff
901 AC_MSG_CHECKING(whether to enable internationalisation)
902 AC_ARG_ENABLE(nls, [ --enable-nls Enable Native Language Support],
903 INTL=$enableval, INTL=no)
904 AC_MSG_RESULT($INTL)
905
906 if test x$INTL = xyes; then
907 # FIXME - Move this - can be device-mapper too
908 INTL_PACKAGE="lvm2"
909 AC_PATH_PROG(MSGFMT, msgfmt)
910 if [[ "x$MSGFMT" == x ]];
911 then AC_MSG_ERROR(
912 msgfmt not found in path $PATH
913 )
914 fi;
915
916 AC_ARG_WITH(localedir,
917 [ --with-localedir=DIR Translation files in DIR [[PREFIX/share/locale]] ],
918 [ LOCALEDIR="$withval" ],
919 [ LOCALEDIR='${prefix}/share/locale' ])
920 fi
921
922 ################################################################################
923 AC_ARG_WITH(confdir,
924 [ --with-confdir=DIR Configuration files in DIR [[/etc]]],
925 [ CONFDIR="$withval" ],
926 [ CONFDIR='/etc' ])
927
928 AC_ARG_WITH(staticdir,
929 [ --with-staticdir=DIR Static binary in DIR [[EPREFIX/sbin]]],
930 [ STATICDIR="$withval" ],
931 [ STATICDIR='${exec_prefix}/sbin' ])
932
933 AC_ARG_WITH(usrlibdir,
934 [ --with-usrlibdir=DIR],
935 [ usrlibdir="$withval"],
936 [ usrlibdir='${prefix}/lib' ])
937
938 AC_ARG_WITH(usrsbindir,
939 [ --with-usrsbindir=DIR],
940 [ usrsbindir="$withval"],
941 [ usrsbindir='${prefix}/sbin' ])
942
943 ################################################################################
944 AC_ARG_WITH(udev_prefix,
945 [ --with-udev-prefix=UPREFIX Install udev rule files in UPREFIX [[EPREFIX]]],
946 [ udev_prefix="$withval"],
947 [ udev_prefix='${exec_prefix}' ])
948
949 AC_ARG_WITH(udevdir,
950 [ --with-udevdir=DIR udev rules in DIR [[UPREFIX/lib/udev/rules.d]]],
951 [ udevdir="$withval"],
952 [ udevdir='${udev_prefix}/lib/udev/rules.d' ])
953
954 ################################################################################
955 dnl -- Ensure additional headers required
956 if test x$READLINE = xyes; then
957 AC_CHECK_HEADERS(readline/readline.h readline/history.h,,AC_MSG_ERROR(bailing out))
958 fi
959
960 if test x$CLVMD != xnone; then
961 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))
962 AC_CHECK_FUNCS(dup2 getmntent memmove select socket,,AC_MSG_ERROR(bailing out))
963 AC_FUNC_GETMNTENT
964 # AC_FUNC_REALLOC
965 AC_FUNC_SELECT_ARGTYPES
966 fi
967
968 if test x$CLUSTER != xnone; then
969 AC_CHECK_HEADERS(sys/socket.h sys/un.h,,AC_MSG_ERROR(bailing out))
970 AC_CHECK_FUNCS(socket,,AC_MSG_ERROR(bailing out))
971 fi
972
973 if test x$HAVE_LIBDL = xyes; then
974 AC_CHECK_HEADERS(dlfcn.h,,AC_MSG_ERROR(bailing out))
975 fi
976
977 if test x$INTL = xyes; then
978 AC_CHECK_HEADERS(libintl.h,,AC_MSG_ERROR(bailing out))
979 fi
980
981 if test x$UDEV_SYNC = xyes; then
982 AC_CHECK_HEADERS(sys/ipc.h sys/sem.h,,AC_MSG_ERROR(bailing out))
983 fi
984
985 ################################################################################
986 AC_PATH_PROG(MODPROBE_CMD, modprobe)
987
988 if test x$MODPROBE_CMD != x; then
989 AC_DEFINE_UNQUOTED([MODPROBE_CMD], ["$MODPROBE_CMD"], [The path to 'modprobe', if available.])
990 fi
991
992 ################################################################################
993 dnl -- dmeventd pidfile and executable path
994 AH_TEMPLATE(DMEVENTD_PIDFILE, [Path to dmeventd pidfile.])
995 if test "$BUILD_DMEVENTD" = yes; then
996 AC_ARG_WITH(dmeventd-pidfile,
997 [ --with-dmeventd-pidfile=PATH dmeventd pidfile [[/var/run/dmeventd.pid]] ],
998 [ AC_DEFINE_UNQUOTED(DMEVENTD_PIDFILE,"$withval") ],
999 [ AC_DEFINE_UNQUOTED(DMEVENTD_PIDFILE,"/var/run/dmeventd.pid") ])
1000 fi
1001
1002 AH_TEMPLATE(DMEVENTD_PATH, [Path to dmeventd binary.])
1003 if test "$BUILD_DMEVENTD" = yes; then
1004 dmeventd_prefix="$exec_prefix"
1005 if test "x$dmeventd_prefix" = "xNONE"; then
1006 dmeventd_prefix="$prefix"
1007 fi
1008 if test "x$dmeventd_prefix" = "xNONE"; then
1009 dmeventd_prefix=""
1010 fi
1011 AC_ARG_WITH(dmeventd-path,
1012 [ --with-dmeventd-path=PATH dmeventd path [[EPREFIX/sbin/dmeventd]] ],
1013 [ AC_DEFINE_UNQUOTED(DMEVENTD_PATH,"$withval") ],
1014 [ AC_DEFINE_UNQUOTED(DMEVENTD_PATH,"$dmeventd_prefix/sbin/dmeventd") ])
1015 fi
1016
1017 ################################################################################
1018 dnl -- which kernel interface to use (ioctl only)
1019 AC_MSG_CHECKING(for kernel interface choice)
1020 AC_ARG_WITH(interface,
1021 [ --with-interface=IFACE Choose kernel interface (ioctl) [[ioctl]] ],
1022 [ interface="$withval" ],
1023 [ interface=ioctl ])
1024 if [[ "x$interface" != xioctl ]];
1025 then
1026 AC_MSG_ERROR(--with-interface=ioctl required. fs no longer supported.)
1027 fi
1028 AC_MSG_RESULT($interface)
1029
1030 ################################################################################
1031 DM_LIB_VERSION="\"`cat "$srcdir"/VERSION_DM 2>/dev/null || echo Unknown`\""
1032 AC_DEFINE_UNQUOTED(DM_LIB_VERSION, $DM_LIB_VERSION, [Library version])
1033
1034 DM_LIB_PATCHLEVEL=`cat "$srcdir"/VERSION_DM | $AWK -F '[[-. ]]' '{printf "%s.%s.%s",$1,$2,$3}'`
1035
1036 LVM_VERSION="\"`cat "$srcdir"/VERSION 2>/dev/null || echo Unknown`\""
1037
1038 VER=`cat "$srcdir"/VERSION`
1039 LVM_RELEASE_DATE="\"`echo $VER | $SED 's/.* (//;s/).*//'`\""
1040 VER=`echo "$VER" | $AWK '{print $1}'`
1041 LVM_RELEASE="\"`echo "$VER" | $AWK -F '-' '{print $2}'`\""
1042 VER=`echo "$VER" | $AWK -F '-' '{print $1}'`
1043 LVM_MAJOR=`echo "$VER" | $AWK -F '.' '{print $1}'`
1044 LVM_MINOR=`echo "$VER" | $AWK -F '.' '{print $2}'`
1045 LVM_PATCHLEVEL=`echo "$VER" | $AWK -F '[[(.]]' '{print $3}'`
1046 LVM_LIBAPI=`echo "$VER" | $AWK -F '[[()]]' '{print $2}'`
1047
1048 ################################################################################
1049 AC_SUBST(APPLIB)
1050 AC_SUBST(BUILD_CMIRRORD)
1051 AC_SUBST(BUILD_DMEVENTD)
1052 AC_SUBST(CCS_CFLAGS)
1053 AC_SUBST(CCS_LIBS)
1054 AC_SUBST(CFLAGS)
1055 AC_SUBST(CFLOW_CMD)
1056 AC_SUBST(CLDFLAGS)
1057 AC_SUBST(CLDNOWHOLEARCHIVE)
1058 AC_SUBST(CLDWHOLEARCHIVE)
1059 AC_SUBST(CLUSTER)
1060 AC_SUBST(CLVMD)
1061 AC_SUBST(CMAN_CFLAGS)
1062 AC_SUBST(CMAN_LIBS)
1063 AC_SUBST(CMDLIB)
1064 AC_SUBST(CONFDB_CFLAGS)
1065 AC_SUBST(CONFDB_LIBS)
1066 AC_SUBST(CONFDIR)
1067 AC_SUBST(COPTIMISE_FLAG)
1068 AC_SUBST(CPG_CFLAGS)
1069 AC_SUBST(CPG_LIBS)
1070 AC_SUBST(CSCOPE_CMD)
1071 AC_SUBST(DEBUG)
1072 AC_SUBST(DEVMAPPER)
1073 AC_SUBST(DLM_CFLAGS)
1074 AC_SUBST(DLM_LIBS)
1075 AC_SUBST(DL_LIBS)
1076 AC_SUBST(DMEVENTD)
1077 AC_SUBST(DM_COMPAT)
1078 AC_SUBST(DM_DEVICE_GID)
1079 AC_SUBST(DM_DEVICE_MODE)
1080 AC_SUBST(DM_DEVICE_UID)
1081 AC_SUBST(DM_IOCTLS)
1082 AC_SUBST(DM_LIB_VERSION)
1083 AC_SUBST(DM_LIB_PATCHLEVEL)
1084 AC_SUBST(FSADM)
1085 AC_SUBST(GROUP)
1086 AC_SUBST(GULM_CFLAGS)
1087 AC_SUBST(GULM_LIBS)
1088 AC_SUBST(HAVE_LIBDL)
1089 AC_SUBST(HAVE_REALTIME)
1090 AC_SUBST(INTL)
1091 AC_SUBST(INTL_PACKAGE)
1092 AC_SUBST(JOBS)
1093 AC_SUBST(LDDEPS)
1094 AC_SUBST(LIBS)
1095 AC_SUBST(LIB_SUFFIX)
1096 AC_SUBST(LOCALEDIR)
1097 AC_SUBST(LVM1)
1098 AC_SUBST(LVM1_FALLBACK)
1099 AC_SUBST(LVM_VERSION)
1100 AC_SUBST(LVM_LIBAPI)
1101 AC_SUBST(LVM_MAJOR)
1102 AC_SUBST(LVM_MINOR)
1103 AC_SUBST(LVM_PATCHLEVEL)
1104 AC_SUBST(LVM_RELEASE)
1105 AC_SUBST(LVM_RELEASE_DATE)
1106 AC_SUBST(MIRRORS)
1107 AC_SUBST(MSGFMT)
1108 AC_SUBST(OWNER)
1109 AC_SUBST(PKGCONFIG)
1110 AC_SUBST(POOL)
1111 AC_SUBST(PTHREAD_LIBS)
1112 AC_SUBST(QUORUM_CFLAGS)
1113 AC_SUBST(QUORUM_LIBS)
1114 AC_SUBST(READLINE_LIBS)
1115 AC_SUBST(SACKPT_CFLAGS)
1116 AC_SUBST(SACKPT_LIBS)
1117 AC_SUBST(SALCK_CFLAGS)
1118 AC_SUBST(SALCK_LIBS)
1119 AC_SUBST(SELINUX_LIBS)
1120 AC_SUBST(SNAPSHOTS)
1121 AC_SUBST(STATICDIR)
1122 AC_SUBST(STATIC_LINK)
1123 AC_SUBST(UDEV_RULES)
1124 AC_SUBST(UDEV_SYNC)
1125 AC_SUBST(interface)
1126 AC_SUBST(kerneldir)
1127 AC_SUBST(missingkernel)
1128 AC_SUBST(kernelvsn)
1129 AC_SUBST(tmpdir)
1130 AC_SUBST(udev_prefix)
1131 AC_SUBST(udevdir)
1132 AC_SUBST(usrlibdir)
1133 AC_SUBST(usrsbindir)
1134
1135 ################################################################################
1136 dnl -- First and last lines should not contain files to generate in order to
1137 dnl -- keep utility scripts running properly
1138 AC_CONFIG_FILES([
1139 Makefile
1140 make.tmpl
1141 daemons/Makefile
1142 daemons/clvmd/Makefile
1143 daemons/cmirrord/Makefile
1144 daemons/dmeventd/Makefile
1145 daemons/dmeventd/libdevmapper-event.pc
1146 daemons/dmeventd/plugins/Makefile
1147 daemons/dmeventd/plugins/lvm2/Makefile
1148 daemons/dmeventd/plugins/mirror/Makefile
1149 daemons/dmeventd/plugins/snapshot/Makefile
1150 doc/Makefile
1151 include/.symlinks
1152 include/Makefile
1153 lib/Makefile
1154 lib/format1/Makefile
1155 lib/format_pool/Makefile
1156 lib/locking/Makefile
1157 lib/mirror/Makefile
1158 lib/misc/lvm-version.h
1159 lib/snapshot/Makefile
1160 libdm/Makefile
1161 libdm/libdevmapper.pc
1162 liblvm/Makefile
1163 liblvm/liblvm2app.pc
1164 man/Makefile
1165 po/Makefile
1166 scripts/clvmd_init_red_hat
1167 scripts/cmirrord_init_red_hat
1168 scripts/lvm2_monitoring_init_red_hat
1169 scripts/Makefile
1170 test/Makefile
1171 test/api/Makefile
1172 tools/Makefile
1173 udev/Makefile
1174 ])
1175 AC_OUTPUT
1176
1177 if test x$ODIRECT != xyes; then
1178 AC_MSG_WARN(Warning: O_DIRECT disabled: low-memory pvmove may lock up)
1179 fi
This page took 0.090473 seconds and 6 git commands to generate.