]> sourceware.org Git - lvm2.git/blob - configure.in
Add liblvm2app Makefile installation targets.
[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.57)
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 REALTIME=yes
44 CLUSTER=internal
45 FSADM=yes
46 ;;
47 darwin*)
48 CFLAGS="$CFLAGS -no-cpp-precomp -fno-common"
49 COPTIMISE_FLAG="-O2"
50 CLDFLAGS="$CLDFLAGS"
51 CLDWHOLEARCHIVE="-all_load"
52 CLDNOWHOLEARCHIVE=
53 LIB_SUFFIX=dylib
54 DEVMAPPER=yes
55 ODIRECT=no
56 DM_IOCTLS=no
57 SELINUX=no
58 REALTIME=no
59 CLUSTER=none
60 FSADM=no
61 ;;
62 esac
63
64 ################################################################################
65 dnl -- Checks for programs.
66 AC_PROG_SED
67 AC_PROG_AWK
68 AC_PROG_CC
69
70 dnl probably no longer needed in 2008, but...
71 AC_PROG_GCC_TRADITIONAL
72 AC_PROG_INSTALL
73 AC_PROG_LN_S
74 AC_PROG_MAKE_SET
75 AC_PROG_MKDIR_P
76 AC_PROG_RANLIB
77 AC_PATH_PROG(CFLOW_CMD, cflow)
78 AC_PATH_PROG(CSCOPE_CMD, cscope)
79
80 ################################################################################
81 dnl -- Check for header files.
82 AC_HEADER_DIRENT
83 AC_HEADER_STDC
84 AC_HEADER_SYS_WAIT
85 AC_HEADER_TIME
86
87 AC_CHECK_HEADERS([locale.h stddef.h syslog.h sys/file.h sys/time.h assert.h \
88 libgen.h signal.h sys/mman.h sys/resource.h sys/utsname.h sys/wait.h time.h], ,
89 [AC_MSG_ERROR(bailing out)])
90
91 case "$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)) ;;
96 esac
97
98 AC_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)])
101 AC_CHECK_HEADERS(termios.h sys/statvfs.h)
102
103 ################################################################################
104 dnl -- Check for typedefs, structures, and compiler characteristics.
105 AC_C_CONST
106 AC_C_INLINE
107 AC_CHECK_MEMBERS([struct stat.st_rdev])
108 AC_TYPE_OFF_T
109 AC_TYPE_PID_T
110 AC_TYPE_SIGNAL
111 AC_TYPE_SIZE_T
112 AC_TYPE_MODE_T
113 AC_CHECK_MEMBERS([struct stat.st_rdev])
114 AC_STRUCT_TM
115
116 ################################################################################
117 dnl -- Check for functions
118 AC_CHECK_FUNCS([gethostname getpagesize memset mkdir rmdir munmap setlocale \
119 strcasecmp strchr strdup strncasecmp strerror strrchr strstr strtol strtoul \
120 uname], , [AC_MSG_ERROR(bailing out)])
121 AC_FUNC_ALLOCA
122 AC_FUNC_CLOSEDIR_VOID
123 AC_FUNC_FORK
124 AC_FUNC_LSTAT
125 AC_FUNC_MALLOC
126 AC_FUNC_MEMCMP
127 AC_FUNC_MMAP
128 AC_FUNC_STAT
129 AC_FUNC_STRTOD
130 AC_FUNC_VPRINTF
131
132 ################################################################################
133 dnl -- Enables statically-linked tools
134 AC_MSG_CHECKING(whether to use static linking)
135 AC_ARG_ENABLE(static_link,
136 [ --enable-static_link Use this to link the tools to their libraries
137 statically. Default is dynamic linking],
138 STATIC_LINK=$enableval, STATIC_LINK=no)
139 AC_MSG_RESULT($STATIC_LINK)
140
141 ################################################################################
142 dnl -- Prefix is /usr by default, the exec_prefix default is setup later
143 AC_PREFIX_DEFAULT(/usr)
144
145 ################################################################################
146 dnl -- Setup the ownership of the files
147 AC_MSG_CHECKING(file owner)
148 OWNER="root"
149
150 AC_ARG_WITH(user,
151 [ --with-user=USER Set the owner of installed files [[USER=root]] ],
152 [ OWNER="$withval" ])
153 AC_MSG_RESULT($OWNER)
154
155 if test x$OWNER != x; then
156 OWNER="-o $OWNER"
157 fi
158
159 ################################################################################
160 dnl -- Setup the group ownership of the files
161 AC_MSG_CHECKING(group owner)
162 GROUP="root"
163 AC_ARG_WITH(group,
164 [ --with-group=GROUP Set the group owner of installed files [[GROUP=root]] ],
165 [ GROUP="$withval" ])
166 AC_MSG_RESULT($GROUP)
167
168 if test x$GROUP != x; then
169 GROUP="-g $GROUP"
170 fi
171
172 ################################################################################
173 dnl -- Setup device node ownership
174 AC_MSG_CHECKING(device node uid)
175
176 AC_ARG_WITH(device-uid,
177 [ --with-device-uid=UID Set the owner used for new device nodes [[UID=0]] ],
178 [ DM_DEVICE_UID="$withval" ], [ DM_DEVICE_UID="0" ] )
179 AC_MSG_RESULT($DM_DEVICE_UID)
180
181 ################################################################################
182 dnl -- Setup device group ownership
183 AC_MSG_CHECKING(device node gid)
184
185 AC_ARG_WITH(device-gid,
186 [ --with-device-gid=UID Set the group used for new device nodes [[GID=0]] ],
187 [ DM_DEVICE_GID="$withval" ], [ DM_DEVICE_GID="0" ] )
188 AC_MSG_RESULT($DM_DEVICE_GID)
189
190 ################################################################################
191 dnl -- Setup device mode
192 AC_MSG_CHECKING(device node mode)
193
194 AC_ARG_WITH(device-mode,
195 [ --with-device-mode=MODE Set the mode used for new device nodes [[MODE=0600]] ],
196 [ DM_DEVICE_MODE="$withval" ], [ DM_DEVICE_MODE="0600" ] )
197 AC_MSG_RESULT($DM_DEVICE_MODE)
198
199 ################################################################################
200 dnl -- LVM1 tool fallback option
201 AC_MSG_CHECKING(whether to enable lvm1 fallback)
202 AC_ARG_ENABLE(lvm1_fallback, [ --enable-lvm1_fallback Use this to fall back and use LVM1 binaries if
203 device-mapper is missing from the kernel], LVM1_FALLBACK=$enableval, LVM1_FALLBACK=no)
204 AC_MSG_RESULT($LVM1_FALLBACK)
205
206 if test x$LVM1_FALLBACK = xyes; then
207 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])
208 fi
209
210 ################################################################################
211 dnl -- format1 inclusion type
212 AC_MSG_CHECKING(whether to include support for lvm1 metadata)
213 AC_ARG_WITH(lvm1,
214 [ --with-lvm1=TYPE LVM1 metadata support: internal/shared/none
215 [TYPE=internal] ],
216 [ LVM1="$withval" ],
217 [ LVM1="internal" ])
218 AC_MSG_RESULT($LVM1)
219
220 if [[ "x$LVM1" != xnone -a "x$LVM1" != xinternal -a "x$LVM1" != xshared ]];
221 then AC_MSG_ERROR(
222 --with-lvm1 parameter invalid
223 )
224 fi;
225
226 if test x$LVM1 = xinternal; then
227 AC_DEFINE([LVM1_INTERNAL], 1, [Define to 1 to include built-in support for LVM1 metadata.])
228 fi
229
230 ################################################################################
231 dnl -- format_pool inclusion type
232 AC_MSG_CHECKING(whether to include support for GFS pool metadata)
233 AC_ARG_WITH(pool,
234 [ --with-pool=TYPE GFS pool read-only support: internal/shared/none
235 [TYPE=internal] ],
236 [ POOL="$withval" ],
237 [ POOL="internal" ])
238 AC_MSG_RESULT($POOL)
239
240 if [[ "x$POOL" != xnone -a "x$POOL" != xinternal -a "x$POOL" != xshared ]];
241 then AC_MSG_ERROR(
242 --with-pool parameter invalid
243 )
244 fi;
245
246 if test x$POOL = xinternal; then
247 AC_DEFINE([POOL_INTERNAL], 1, [Define to 1 to include built-in support for GFS pool metadata.])
248 fi
249
250 ################################################################################
251 dnl -- cluster_locking inclusion type
252 AC_MSG_CHECKING(whether to include support for cluster locking)
253 AC_ARG_WITH(cluster,
254 [ --with-cluster=TYPE Cluster LVM locking support: internal/shared/none
255 [TYPE=internal] ],
256 [ CLUSTER="$withval" ])
257 AC_MSG_RESULT($CLUSTER)
258
259 if [[ "x$CLUSTER" != xnone -a "x$CLUSTER" != xinternal -a "x$CLUSTER" != xshared ]];
260 then AC_MSG_ERROR(
261 --with-cluster parameter invalid
262 )
263 fi;
264
265 if test x$CLUSTER = xinternal; then
266 AC_DEFINE([CLUSTER_LOCKING_INTERNAL], 1, [Define to 1 to include built-in support for clustered LVM locking.])
267 fi
268
269 ################################################################################
270 dnl -- snapshots inclusion type
271 AC_MSG_CHECKING(whether to include snapshots)
272 AC_ARG_WITH(snapshots,
273 [ --with-snapshots=TYPE Snapshot support: internal/shared/none
274 [TYPE=internal] ],
275 [ SNAPSHOTS="$withval" ],
276 [ SNAPSHOTS="internal" ])
277 AC_MSG_RESULT($SNAPSHOTS)
278
279 if [[ "x$SNAPSHOTS" != xnone -a "x$SNAPSHOTS" != xinternal -a "x$SNAPSHOTS" != xshared ]];
280 then AC_MSG_ERROR(
281 --with-snapshots parameter invalid
282 )
283 fi;
284
285 if test x$SNAPSHOTS = xinternal; then
286 AC_DEFINE([SNAPSHOT_INTERNAL], 1, [Define to 1 to include built-in support for snapshots.])
287 fi
288
289 ################################################################################
290 dnl -- mirrors inclusion type
291 AC_MSG_CHECKING(whether to include mirrors)
292 AC_ARG_WITH(mirrors,
293 [ --with-mirrors=TYPE Mirror support: internal/shared/none
294 [TYPE=internal] ],
295 [ MIRRORS="$withval" ],
296 [ MIRRORS="internal" ])
297 AC_MSG_RESULT($MIRRORS)
298
299 if [[ "x$MIRRORS" != xnone -a "x$MIRRORS" != xinternal -a "x$MIRRORS" != xshared ]];
300 then AC_MSG_ERROR(
301 --with-mirrors parameter invalid
302 )
303 fi;
304
305 if test x$MIRRORS = xinternal; then
306 AC_DEFINE([MIRRORED_INTERNAL], 1, [Define to 1 to include built-in support for mirrors.])
307 fi
308
309 ################################################################################
310 dnl -- Disable readline
311 AC_MSG_CHECKING(whether to enable readline)
312 AC_ARG_ENABLE([readline],
313 [ --disable-readline Disable readline support],
314 [READLINE=$enableval], [READLINE=maybe])
315 AC_MSG_RESULT($READLINE)
316
317 ################################################################################
318 dnl -- Disable realtime clock support
319 AC_MSG_CHECKING(whether to enable realtime support)
320 AC_ARG_ENABLE(realtime, [ --disable-realtime Disable realtime clock support],
321 REALTIME=$enableval)
322 AC_MSG_RESULT($REALTIME)
323
324 ################################################################################
325 dnl -- Build cluster LVM daemon
326 AC_MSG_CHECKING(whether to build cluster LVM daemon)
327 AC_ARG_WITH(clvmd,
328 [ --with-clvmd=TYPE Build cluster LVM Daemon: cman/gulm/corosync/none/all
329 [TYPE=none] ],
330 [ CLVMD="$withval" ],
331 [ CLVMD="none" ])
332 if test x$CLVMD = xyes; then
333 CLVMD=all
334 fi
335 AC_MSG_RESULT($CLVMD)
336
337 dnl -- If clvmd enabled without cluster locking, automagically include it
338 if test x$CLVMD != xnone && test x$CLUSTER = xnone; then
339 CLUSTER=internal
340 fi
341
342 dnl -- Look for corosync libraries if required.
343 if [[ "x$CLVMD" = xcorosync -o "x$CLVMD" = xall ]]; then
344 PKG_CHECK_MODULES(QUORUM, libquorum, [],
345 [AC_MSG_RESULT([no pkg for quorum library, using -lquorum]);
346 QUORUM_LIBS="-lquorum"])
347 PKG_CHECK_MODULES(CONFDB, libconfdb, [],
348 [AC_MSG_RESULT([no pkg for confdb library, using -lconfdb]);
349 CONFDB_LIBS="-lconfdb"])
350 PKG_CHECK_MODULES(CPG, libcpg, [],
351 [AC_MSG_RESULT([no pkg for libcpg library, using -lcpg]);
352 CPG_LIBS="-lcpg"])
353 fi
354
355 ################################################################################
356 dnl -- Enable debugging
357 AC_MSG_CHECKING(whether to enable debugging)
358 AC_ARG_ENABLE(debug, [ --enable-debug Enable debugging],
359 DEBUG=$enableval, DEBUG=no)
360 AC_MSG_RESULT($DEBUG)
361
362 dnl -- Normally turn off optimisation for debug builds
363 if test x$DEBUG = xyes; then
364 COPTIMISE_FLAG=
365 else
366 CSCOPE_CMD=
367 fi
368
369 ################################################################################
370 dnl -- Override optimisation
371 AC_MSG_CHECKING(for C optimisation flag)
372 AC_ARG_WITH(optimisation,
373 [ --with-optimisation=OPT C optimisation flag [[OPT=-O2]] ],
374 [ COPTIMISE_FLAG="$withval" ])
375 AC_MSG_RESULT($COPTIMISE_FLAG)
376
377 ################################################################################
378 dnl -- Enable profiling
379 AC_MSG_CHECKING(whether to gather gcov profiling data)
380 AC_ARG_ENABLE(profiling,
381 AC_HELP_STRING(--enable-profiling, [Gather gcov profiling data]),
382 PROFILING=$enableval, PROFILING=no)
383 AC_MSG_RESULT($PROFILING)
384
385 if test "x$PROFILING" = xyes; then
386 COPTIMISE_FLAG="$COPTIMISE_FLAG -fprofile-arcs -ftest-coverage"
387 AC_PATH_PROG(LCOV, lcov, no)
388 AC_PATH_PROG(GENHTML, genhtml, no)
389 if test "$LCOV" = no -o "$GENHTML" = no ; then
390 AC_MSG_ERROR([lcov and genhtml are required for profiling])
391 fi
392 fi
393
394 ################################################################################
395 dnl -- Disable devmapper
396 AC_MSG_CHECKING(whether to use device-mapper)
397 AC_ARG_ENABLE(devmapper, [ --disable-devmapper Disable LVM2 device-mapper interaction],
398 DEVMAPPER=$enableval)
399 AC_MSG_RESULT($DEVMAPPER)
400
401 if test x$DEVMAPPER = xyes; then
402 AC_DEFINE([DEVMAPPER_SUPPORT], 1, [Define to 1 to enable LVM2 device-mapper interaction.])
403 fi
404
405 ################################################################################
406 dnl -- Compatibility mode
407 AC_ARG_ENABLE(compat, [ --enable-compat Enable support for old device-mapper versions],
408 DM_COMPAT=$enableval, DM_COMPAT=no)
409
410 ################################################################################
411 dnl -- Disable ioctl
412 AC_ARG_ENABLE(ioctl, [ --disable-driver Disable calls to device-mapper in the kernel],
413 DM_IOCTLS=$enableval)
414
415 ################################################################################
416 dnl -- Disable O_DIRECT
417 AC_MSG_CHECKING(whether to enable O_DIRECT)
418 AC_ARG_ENABLE(o_direct, [ --disable-o_direct Disable O_DIRECT],
419 ODIRECT=$enableval)
420 AC_MSG_RESULT($ODIRECT)
421
422 if test x$ODIRECT = xyes; then
423 AC_DEFINE([O_DIRECT_SUPPORT], 1, [Define to 1 to enable O_DIRECT support.])
424 fi
425
426 ################################################################################
427 dnl -- Enable liblvm2app.so
428 AC_MSG_CHECKING(whether to build liblvm2app.so application library)
429 AC_ARG_ENABLE(applib,
430 [ --enable-applib Build application library],
431 APPLIB=$enableval, APPLIB=no)
432 AC_MSG_RESULT($APPLIB)
433 AC_SUBST([LVM2APP_LIB])
434 test x$APPLIB = xyes \
435 && LVM2APP_LIB=-llvm2app \
436 || LVM2APP_LIB=
437
438 ################################################################################
439 dnl -- Enable cmdlib
440 AC_MSG_CHECKING(whether to compile liblvm2cmd.so)
441 AC_ARG_ENABLE(cmdlib, [ --enable-cmdlib Build shared command library],
442 CMDLIB=$enableval, CMDLIB=no)
443 AC_MSG_RESULT($CMDLIB)
444 AC_SUBST([LVM2CMD_LIB])
445 test x$CMDLIB = xyes \
446 && LVM2CMD_LIB=-llvm2cmd \
447 || LVM2CMD_LIB=
448
449 ################################################################################
450 dnl -- Enable pkg-config
451 AC_ARG_ENABLE(pkgconfig, [ --enable-pkgconfig Install pkgconfig support],
452 PKGCONFIG=$enableval, PKGCONFIG=no)
453
454 ################################################################################
455 dnl -- Enable fsadm
456 AC_MSG_CHECKING(whether to install fsadm)
457 AC_ARG_ENABLE(fsadm, [ --enable-fsadm Enable fsadm],
458 FSADM=$enableval)
459 AC_MSG_RESULT($FSADM)
460
461 ################################################################################
462 dnl -- enable dmeventd handling
463 AC_MSG_CHECKING(whether to use dmeventd)
464 AC_ARG_ENABLE(dmeventd, [ --enable-dmeventd Enable the device-mapper event daemon],
465 DMEVENTD=$enableval)
466 AC_MSG_RESULT($DMEVENTD)
467
468 BUILD_DMEVENTD=$DMEVENTD
469
470 dnl -- dmeventd currently requires internal mirror support
471 if test x$DMEVENTD = xyes; then
472 if test x$MIRRORS != xinternal; then
473 AC_MSG_ERROR(
474 --enable-dmeventd currently requires --with-mirrors=internal
475 )
476 fi
477 if test x$CMDLIB = xno; then
478 AC_MSG_ERROR(
479 --enable-dmeventd requires --enable-cmdlib to be used as well
480 )
481 fi
482 fi
483
484 if test x$DMEVENTD = xyes; then
485 AC_DEFINE([DMEVENTD], 1, [Define to 1 to enable the device-mapper event daemon.])
486 fi
487
488 ################################################################################
489 dnl -- getline included in recent libc
490
491 AC_CHECK_LIB(c, getline, AC_DEFINE([HAVE_GETLINE], 1,
492 [Define to 1 if getline is available.]))
493
494 ################################################################################
495 dnl -- canonicalize_file_name included in recent libc
496
497 AC_CHECK_LIB(c, canonicalize_file_name,
498 AC_DEFINE([HAVE_CANONICALIZE_FILE_NAME], 1,
499 [Define to 1 if canonicalize_file_name is available.]))
500
501 ################################################################################
502 dnl -- Clear default exec_prefix - install into /sbin rather than /usr/sbin
503 if [[ "x$exec_prefix" = xNONE -a "x$prefix" = xNONE ]];
504 then exec_prefix="";
505 fi;
506
507 ################################################################################
508 dnl -- Check for termcap (Shamelessly copied from parted 1.4.17)
509 if test x$READLINE != xno; then
510 AC_SEARCH_LIBS([tgetent], [tinfo ncurses curses termcap termlib],
511 [tg_found=yes], [tg_found=no])
512 test x$READLINE:$tg_found = xyes:no &&
513 AC_MSG_ERROR(
514 termcap could not be found which is required for the
515 --enable-readline option (which is enabled by default). Either disable readline
516 support with --disable-readline or download and install termcap from:
517 ftp.gnu.org/gnu/termcap
518 Note: if you are using precompiled packages you will also need the development
519 package as well (which may be called termcap-devel or something similar).
520 Note: (n)curses also seems to work as a substitute for termcap. This was
521 not found either - but you could try installing that as well.
522 )
523 fi
524
525 ################################################################################
526 dnl -- Check for dlopen
527 AC_CHECK_LIB(dl, dlopen, HAVE_LIBDL=yes, HAVE_LIBDL=no)
528
529 if [[ "x$HAVE_LIBDL" = xyes ]]; then
530 AC_DEFINE([HAVE_LIBDL], 1, [Define to 1 if dynamic libraries are available.])
531 LIBS="-ldl $LIBS"
532 else
533 HAVE_LIBDL=no
534 fi
535
536 ################################################################################
537 dnl -- Check for shared/static conflicts
538 if [[ \( "x$LVM1" = xshared -o "x$POOL" = xshared -o "x$CLUSTER" = xshared \
539 -o "x$SNAPSHOTS" = xshared -o "x$MIRRORS" = xshared \
540 \) -a "x$STATIC_LINK" = xyes ]];
541 then AC_MSG_ERROR(
542 Features cannot be 'shared' when building statically
543 )
544 fi
545
546 ################################################################################
547 dnl -- Disable selinux
548 AC_MSG_CHECKING(whether to enable selinux support)
549 AC_ARG_ENABLE(selinux, [ --disable-selinux Disable selinux support],
550 SELINUX=$enableval)
551 AC_MSG_RESULT($SELINUX)
552
553 ################################################################################
554 dnl -- Check for selinux
555 if test x$SELINUX = xyes; then
556 AC_CHECK_LIB(sepol, sepol_check_context, HAVE_SEPOL=yes, HAVE_SEPOL=no)
557
558 if test x$HAVE_SEPOL = xyes; then
559 AC_DEFINE([HAVE_SEPOL], 1,
560 [Define to 1 if sepol_check_context is available.])
561 LIBS="-lsepol $LIBS"
562 fi
563
564 AC_CHECK_LIB(selinux, is_selinux_enabled, HAVE_SELINUX=yes, HAVE_SELINUX=no)
565
566 if test x$HAVE_SELINUX = xyes; then
567 AC_DEFINE([HAVE_SELINUX], 1, [Define to 1 to include support for selinux.])
568 LIBS="-lselinux $LIBS"
569 else
570 AC_MSG_WARN(Disabling selinux)
571 fi
572
573 # With --enable-static_link and selinux enabled, linking
574 # fails on at least Debian unstable due to unsatisfied references
575 # to pthread_mutex_lock and _unlock. See if we need -lpthread.
576 if test "$STATIC_LINK-$HAVE_SELINUX" = yes-yes; then
577 lvm_saved_libs=$LIBS
578 LIBS="$LIBS -static"
579 AC_SEARCH_LIBS([pthread_mutex_lock], [pthread],
580 [test "$ac_cv_search_pthread_mutex_lock" = "none required" ||
581 LIB_PTHREAD=-lpthread])
582 LIBS=$lvm_saved_libs
583 fi
584 fi
585
586 ################################################################################
587 dnl -- Check for realtime clock support
588 if test x$REALTIME = xyes; then
589 AC_CHECK_LIB(rt, clock_gettime, HAVE_REALTIME=yes, HAVE_REALTIME=no)
590
591 if test x$HAVE_REALTIME = xyes; then
592 AC_DEFINE([HAVE_REALTIME], 1, [Define to 1 to include support for realtime clock.])
593 LIBS="-lrt $LIBS"
594 else
595 AC_MSG_WARN(Disabling realtime clock)
596 fi
597 fi
598
599 ################################################################################
600 dnl -- Check for getopt
601 AC_CHECK_HEADERS(getopt.h, AC_DEFINE([HAVE_GETOPTLONG], 1, [Define to 1 if getopt_long is available.]))
602
603 ################################################################################
604 dnl -- Check for readline (Shamelessly copied from parted 1.4.17)
605 if test x$READLINE != xno; then
606 rl_found=yes
607 AC_CHECK_LIB([readline], [readline], , [rl_found=no])
608 test x$READLINE:$rl_found = xyes:no &&
609 AC_MSG_ERROR(
610 GNU Readline could not be found which is required for the
611 --enable-readline option (which is enabled by default). Either disable readline
612 support with --disable-readline or download and install readline from:
613 ftp.gnu.org/gnu/readline
614 Note: if you are using precompiled packages you will also need the development
615 package as well (which may be called readline-devel or something similar).
616 )
617 if test $rl_found = yes; then
618 AC_CHECK_FUNCS([rl_completion_matches])
619 AC_DEFINE([READLINE_SUPPORT], 1,
620 [Define to 1 to include the LVM readline shell.])
621 fi
622 fi
623
624 ################################################################################
625 dnl -- Internationalisation stuff
626 AC_MSG_CHECKING(whether to enable internationalisation)
627 AC_ARG_ENABLE(nls, [ --enable-nls Enable Native Language Support],
628 INTL=$enableval, INTL=no)
629 AC_MSG_RESULT($INTL)
630
631 if test x$INTL = xyes; then
632 # FIXME - Move this - can be device-mapper too
633 INTL_PACKAGE="lvm2"
634 AC_PATH_PROG(MSGFMT, msgfmt)
635 if [[ "x$MSGFMT" == x ]];
636 then AC_MSG_ERROR(
637 msgfmt not found in path $PATH
638 )
639 fi;
640
641 AC_ARG_WITH(localedir,
642 [ --with-localedir=DIR Translation files in DIR [[PREFIX/share/locale]] ],
643 [ LOCALEDIR="$withval" ],
644 [ LOCALEDIR='${prefix}/share/locale' ])
645 fi
646
647 ################################################################################
648 AC_ARG_WITH(confdir,
649 [ --with-confdir=DIR Configuration files in DIR [/etc]],
650 [ CONFDIR="$withval" ],
651 [ CONFDIR='/etc' ])
652
653 AC_ARG_WITH(staticdir,
654 [ --with-staticdir=DIR Static binary in DIR [EXEC_PREFIX/sbin]],
655 [ STATICDIR="$withval" ],
656 [ STATICDIR='${exec_prefix}/sbin' ])
657
658 AC_ARG_WITH(usrlibdir,
659 [ --with-usrlibdir=DIR],
660 [ usrlibdir="$withval"],
661 [ usrlibdir='${prefix}/lib' ])
662
663 AC_ARG_WITH(usrsbindir,
664 [ --with-usrsbindir=DIR],
665 [ usrsbindir="$withval"],
666 [ usrsbindir='${prefix}/sbin' ])
667
668 ################################################################################
669 dnl -- Ensure additional headers required
670 if test x$READLINE = xyes; then
671 AC_CHECK_HEADERS(readline/readline.h readline/history.h,,AC_MSG_ERROR(bailing out))
672 fi
673
674 if test x$CLVMD != xnone; then
675 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))
676 AC_CHECK_FUNCS(dup2 getmntent memmove select socket,,AC_MSG_ERROR(bailing out))
677 AC_FUNC_GETMNTENT
678 # AC_FUNC_REALLOC
679 AC_FUNC_SELECT_ARGTYPES
680 fi
681
682 if test x$CLUSTER != xnone; then
683 AC_CHECK_HEADERS(sys/socket.h sys/un.h,,AC_MSG_ERROR(bailing out))
684 AC_CHECK_FUNCS(socket,,AC_MSG_ERROR(bailing out))
685 fi
686
687 if test x$HAVE_LIBDL = xyes; then
688 AC_CHECK_HEADERS(dlfcn.h,,AC_MSG_ERROR(bailing out))
689 fi
690
691 if test x$INTL = xyes; then
692 AC_CHECK_HEADERS(libintl.h,,AC_MSG_ERROR(bailing out))
693 fi
694
695 if test x$HAVE_SELINUX = xyes; then
696 AC_CHECK_HEADERS(selinux/selinux.h,,AC_MSG_ERROR(bailing out))
697 fi
698
699 ################################################################################
700 AC_PATH_PROG(MODPROBE_CMD, modprobe)
701
702 if test x$MODPROBE_CMD != x; then
703 AC_DEFINE_UNQUOTED([MODPROBE_CMD], ["$MODPROBE_CMD"], [The path to 'modprobe', if available.])
704 fi
705
706 ################################################################################
707 dnl -- dmeventd pidfile and executable path
708 AH_TEMPLATE(DMEVENTD_PIDFILE, [Path to dmeventd pidfile.])
709 if test "$BUILD_DMEVENTD" = yes; then
710 AC_ARG_WITH(dmeventd-pidfile,
711 [ --with-dmeventd-pidfile=PATH dmeventd pidfile [[/var/run/dmeventd.pid]] ],
712 [ AC_DEFINE_UNQUOTED(DMEVENTD_PIDFILE,"$withval") ],
713 [ AC_DEFINE_UNQUOTED(DMEVENTD_PIDFILE,"/var/run/dmeventd.pid") ])
714 fi
715
716 AH_TEMPLATE(DMEVENTD_PATH, [Path to dmeventd binary.])
717 if test "$BUILD_DMEVENTD" = yes; then
718 dmeventd_prefix="$exec_prefix"
719 if test "x$dmeventd_prefix" = "xNONE"; then
720 dmeventd_prefix="$prefix"
721 fi
722 if test "x$dmeventd_prefix" = "xNONE"; then
723 dmeventd_prefix=""
724 fi
725 AC_ARG_WITH(dmeventd-path,
726 [ --with-dmeventd-path=PATH dmeventd path [[${exec_prefix}/sbin/dmeventd]] ],
727 [ AC_DEFINE_UNQUOTED(DMEVENTD_PATH,"$withval") ],
728 [ AC_DEFINE_UNQUOTED(DMEVENTD_PATH,"$dmeventd_prefix/sbin/dmeventd") ])
729 fi
730
731 ################################################################################
732 dnl -- which kernel interface to use (ioctl only)
733 AC_MSG_CHECKING(for kernel interface choice)
734 AC_ARG_WITH(interface,
735 [ --with-interface=IFACE Choose kernel interface (ioctl) [[ioctl]] ],
736 [ interface="$withval" ],
737 [ interface=ioctl ])
738 if [[ "x$interface" != xioctl ]];
739 then
740 AC_MSG_ERROR(--with-interface=ioctl required. fs no longer supported.)
741 fi
742 AC_MSG_RESULT($interface)
743
744 ################################################################################
745 DM_LIB_VERSION="\"`cat VERSION_DM 2>/dev/null || echo Unknown`\""
746 AC_DEFINE_UNQUOTED(DM_LIB_VERSION, $DM_LIB_VERSION, [Library version])
747
748 DM_LIB_PATCHLEVEL=`cat VERSION_DM | $AWK -F '[[-. ]]' '{printf "%s.%s.%s",$1,$2,$3}'`
749
750 LVM_VERSION="\"`cat VERSION 2>/dev/null || echo Unknown`\""
751
752 VER=`cat VERSION`
753 LVM_RELEASE_DATE="\"`echo $VER | $SED 's/.* (//;s/).*//'`\""
754 VER=`echo "$VER" | $AWK '{print $1}'`
755 LVM_RELEASE="\"`echo "$VER" | $AWK -F '-' '{print $2}'`\""
756 VER=`echo "$VER" | $AWK -F '-' '{print $1}'`
757 LVM_MAJOR=`echo "$VER" | $AWK -F '.' '{print $1}'`
758 LVM_MINOR=`echo "$VER" | $AWK -F '.' '{print $2}'`
759 LVM_PATCHLEVEL=`echo "$VER" | $AWK -F '[[(.]]' '{print $3}'`
760 LVM_LIBAPI=`echo "$VER" | $AWK -F '[[()]]' '{print $2}'`
761
762 ################################################################################
763 AC_SUBST(APPLIB)
764 AC_SUBST(BUILD_DMEVENTD)
765 AC_SUBST(CFLAGS)
766 AC_SUBST(CFLOW_CMD)
767 AC_SUBST(CLDFLAGS)
768 AC_SUBST(CLDNOWHOLEARCHIVE)
769 AC_SUBST(CLDWHOLEARCHIVE)
770 AC_SUBST(CLUSTER)
771 AC_SUBST(CLVMD)
772 AC_SUBST(CMDLIB)
773 AC_SUBST(CONFDB_CFLAGS)
774 AC_SUBST(CONFDB_LIBS)
775 AC_SUBST(CONFDIR)
776 AC_SUBST(COPTIMISE_FLAG)
777 AC_SUBST(CPG_CFLAGS)
778 AC_SUBST(CPG_LIBS)
779 AC_SUBST(CSCOPE_CMD)
780 AC_SUBST(DEBUG)
781 AC_SUBST(DEVMAPPER)
782 AC_SUBST(DMEVENTD)
783 AC_SUBST(DM_COMPAT)
784 AC_SUBST(DM_DEVICE_GID)
785 AC_SUBST(DM_DEVICE_MODE)
786 AC_SUBST(DM_DEVICE_UID)
787 AC_SUBST(DM_IOCTLS)
788 AC_SUBST(DM_LIB_VERSION)
789 AC_SUBST(DM_LIB_PATCHLEVEL)
790 AC_SUBST(FSADM)
791 AC_SUBST(GROUP)
792 AC_SUBST(HAVE_LIBDL)
793 AC_SUBST(HAVE_REALTIME)
794 AC_SUBST(HAVE_SELINUX)
795 AC_SUBST(INTL)
796 AC_SUBST(INTL_PACKAGE)
797 AC_SUBST(JOBS)
798 AC_SUBST(LDDEPS)
799 AC_SUBST(LIBS)
800 AC_SUBST(LIB_SUFFIX)
801 AC_SUBST(LOCALEDIR)
802 AC_SUBST(LVM1)
803 AC_SUBST(LVM1_FALLBACK)
804 AC_SUBST(LVM_VERSION)
805 AC_SUBST(LVM_LIBAPI)
806 AC_SUBST(LVM_MAJOR)
807 AC_SUBST(LVM_MINOR)
808 AC_SUBST(LVM_PATCHLEVEL)
809 AC_SUBST(LVM_RELEASE)
810 AC_SUBST(LVM_RELEASE_DATE)
811 AC_SUBST(MIRRORS)
812 AC_SUBST(MSGFMT)
813 AC_SUBST(OWNER)
814 AC_SUBST(PKGCONFIG)
815 AC_SUBST(POOL)
816 AC_SUBST(QUORUM_CFLAGS)
817 AC_SUBST(QUORUM_LIBS)
818 AC_SUBST(SNAPSHOTS)
819 AC_SUBST(STATICDIR)
820 AC_SUBST(STATIC_LINK)
821 AC_SUBST([LIB_PTHREAD])
822 AC_SUBST(interface)
823 AC_SUBST(kerneldir)
824 AC_SUBST(missingkernel)
825 AC_SUBST(kernelvsn)
826 AC_SUBST(tmpdir)
827 AC_SUBST(usrlibdir)
828 AC_SUBST(usrsbindir)
829
830 ################################################################################
831 dnl -- First and last lines should not contain files to generate in order to
832 dnl -- keep utility scripts running properly
833 AC_CONFIG_FILES([
834 Makefile
835 make.tmpl
836 daemons/Makefile
837 daemons/clvmd/Makefile
838 daemons/dmeventd/Makefile
839 daemons/dmeventd/libdevmapper-event.pc
840 daemons/dmeventd/plugins/Makefile
841 daemons/dmeventd/plugins/mirror/Makefile
842 daemons/dmeventd/plugins/snapshot/Makefile
843 doc/Makefile
844 include/Makefile
845 lib/Makefile
846 lib/format1/Makefile
847 lib/format_pool/Makefile
848 lib/locking/Makefile
849 lib/mirror/Makefile
850 lib/misc/lvm-version.h
851 lib/snapshot/Makefile
852 libdm/Makefile
853 libdm/libdevmapper.pc
854 liblvm/Makefile
855 liblvm/liblvm2app.pc
856 man/Makefile
857 po/Makefile
858 scripts/clvmd_init_red_hat
859 scripts/Makefile
860 test/Makefile
861 test/api/Makefile
862 tools/Makefile
863 ])
864 AC_OUTPUT
865
866 if test x$ODIRECT != xyes; then
867 AC_MSG_WARN(Warning: O_DIRECT disabled: low-memory pvmove may lock up)
868 fi
This page took 0.07305 seconds and 6 git commands to generate.