]> git.proxmox.com Git - mirror_zfs.git/blame - configure.ac
zfs(8): fix dedup omission during mdoc overhaul
[mirror_zfs.git] / configure.ac
CommitLineData
c9c0d073
BB
1/*
2 * This file is part of the ZFS Linux port.
3 *
4 * Copyright (c) 2009 Lawrence Livermore National Security, LLC.
5 * Produced at Lawrence Livermore National Laboratory
6 * Written by:
7 * Brian Behlendorf <behlendorf1@llnl.gov>,
8 * Herb Wartens <wartens2@llnl.gov>,
9 * Jim Garlick <garlick@llnl.gov>
10 * LLNL-CODE-403049
11 *
12 * CDDL HEADER START
13 *
14 * The contents of this file are subject to the terms of the
15 * Common Development and Distribution License, Version 1.0 only
16 * (the "License"). You may not use this file except in compliance
17 * with the License.
18 *
19 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
20 * or http://www.opensolaris.org/os/licensing.
21 * See the License for the specific language governing permissions
22 * and limitations under the License.
23 *
24 * When distributing Covered Code, include this CDDL HEADER in each
25 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
26 * If applicable, add the following below this CDDL HEADER, with the
27 * fields enclosed by brackets "[]" replaced with your own identifying
28 * information: Portions Copyright [yyyy] [name of copyright owner]
29 *
30 * CDDL HEADER END
31 */
32
a1d3450e
HM
33AC_INIT(m4_esyscmd(grep Name META | cut -d ':' -f 2 | tr -d ' \n'),
34 m4_esyscmd(grep Version META | cut -d ':' -f 2 | tr -d ' \n'))
c9c0d073
BB
35AC_LANG(C)
36ZFS_AC_META
37AC_CONFIG_AUX_DIR([config])
8c392629 38AC_CONFIG_MACRO_DIR([config])
c9c0d073
BB
39AC_CANONICAL_SYSTEM
40AM_MAINTAINER_MODE
5b5a65b0 41m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
0b04990a 42AM_INIT_AUTOMAKE([subdir-objects])
c9c0d073
BB
43AC_CONFIG_HEADERS([zfs_config.h], [
44 (mv zfs_config.h zfs_config.h.tmp &&
6283f55e 45 awk -f ${ac_srcdir}/config/config.awk zfs_config.h.tmp >zfs_config.h &&
c9c0d073
BB
46 rm zfs_config.h.tmp) || exit 1])
47
48AC_PROG_INSTALL
49AC_PROG_CC
50AC_PROG_LIBTOOL
51AM_PROG_AS
3c67d83a 52AM_PROG_CC_C_O
acf04442 53AX_CODE_COVERAGE
c9c0d073
BB
54
55ZFS_AC_LICENSE
56ZFS_AC_PACKAGE
57ZFS_AC_CONFIG
58ZFS_AC_DEBUG
0d3980ac 59ZFS_AC_DEBUGINFO
c9c0d073 60
6bb24f4d 61AC_CONFIG_FILES([
c9c0d073 62 Makefile
12d06bac
KF
63 udev/Makefile
64 udev/rules.d/Makefile
c9c0d073 65 etc/Makefile
01c0e61d
BB
66 etc/init.d/Makefile
67 etc/zfs/Makefile
881f45c6
RE
68 etc/systemd/Makefile
69 etc/systemd/system/Makefile
55d80e65 70 etc/systemd/system-generators/Makefile
099700d9 71 etc/sudoers.d/Makefile
881f45c6 72 etc/modules-load.d/Makefile
c9c0d073 73 man/Makefile
cf2129e6 74 man/man1/Makefile
821b6834 75 man/man5/Makefile
c9c0d073
BB
76 man/man8/Makefile
77 lib/Makefile
a26baf28
BB
78 lib/libspl/Makefile
79 lib/libspl/asm-generic/Makefile
80 lib/libspl/asm-i386/Makefile
81 lib/libspl/asm-x86_64/Makefile
82 lib/libspl/include/Makefile
6283f55e
BB
83 lib/libspl/include/ia32/Makefile
84 lib/libspl/include/ia32/sys/Makefile
85 lib/libspl/include/rpc/Makefile
86 lib/libspl/include/sys/Makefile
6283f55e
BB
87 lib/libspl/include/sys/dktp/Makefile
88 lib/libspl/include/util/Makefile
c9c0d073
BB
89 lib/libavl/Makefile
90 lib/libefi/Makefile
0b04990a 91 lib/libicp/Makefile
c9c0d073 92 lib/libnvpair/Makefile
46364cb2 93 lib/libtpool/Makefile
c9c0d073
BB
94 lib/libunicode/Makefile
95 lib/libuutil/Makefile
96 lib/libzpool/Makefile
c3f8dc2a
TF
97 lib/libzfs/libzfs.pc
98 lib/libzfs/libzfs_core.pc
c9c0d073 99 lib/libzfs/Makefile
6f1ffb06 100 lib/libzfs_core/Makefile
46e18b3f 101 lib/libshare/Makefile
c9c0d073
BB
102 cmd/Makefile
103 cmd/zdb/Makefile
9ae529ec 104 cmd/zhack/Makefile
c9c0d073
BB
105 cmd/zfs/Makefile
106 cmd/zinject/Makefile
107 cmd/zpool/Makefile
b79fc3fe 108 cmd/zstreamdump/Makefile
c9c0d073 109 cmd/ztest/Makefile
d53368f6 110 cmd/mount_zfs/Makefile
a1e147ee 111 cmd/fsck_zfs/Makefile
4c0d8e50 112 cmd/zvol_id/Makefile
821b6834 113 cmd/vdev_id/Makefile
fb02fabf 114 cmd/arcstat/Makefile
d738d34d 115 cmd/dbufstat/Makefile
02bd676d 116 cmd/arc_summary/Makefile
9e246ac3 117 cmd/zed/Makefile
ab9f4b0b 118 cmd/raidz_test/Makefile
b9373170 119 cmd/zgenhostid/Makefile
1ffe90c5
TF
120 contrib/Makefile
121 contrib/bash_completion.d/Makefile
cc492505 122 contrib/dracut/Makefile
a5a37022 123 contrib/dracut/02zfsexpandknowledge/Makefile
cc492505 124 contrib/dracut/90zfs/Makefile
2cac7f5f 125 contrib/initramfs/Makefile
cb3b0419 126 contrib/initramfs/hooks/Makefile
127 contrib/initramfs/scripts/Makefile
128 contrib/initramfs/scripts/local-top/Makefile
c9c0d073
BB
129 module/Makefile
130 module/avl/Makefile
131 module/nvpair/Makefile
132 module/unicode/Makefile
133 module/zcommon/Makefile
134 module/zfs/Makefile
d99a0153 135 module/lua/Makefile
0b04990a 136 module/icp/Makefile
6283f55e 137 include/Makefile
8299a1f4 138 include/linux/Makefile
6283f55e
BB
139 include/sys/Makefile
140 include/sys/fs/Makefile
141 include/sys/fm/Makefile
142 include/sys/fm/fs/Makefile
0b04990a 143 include/sys/crypto/Makefile
fb390aaf 144 include/sys/sysevent/Makefile
d99a0153 145 include/sys/lua/Makefile
c9c0d073 146 scripts/Makefile
6bb24f4d
BB
147 tests/Makefile
148 tests/test-runner/Makefile
c8f9061f 149 tests/test-runner/bin/Makefile
6bb24f4d
BB
150 tests/test-runner/include/Makefile
151 tests/test-runner/man/Makefile
152 tests/runfiles/Makefile
153 tests/zfs-tests/Makefile
00481e7d 154 tests/zfs-tests/callbacks/Makefile
6bb24f4d
BB
155 tests/zfs-tests/cmd/Makefile
156 tests/zfs-tests/cmd/chg_usr_exec/Makefile
0e85048f 157 tests/zfs-tests/cmd/user_ns_exec/Makefile
6bb24f4d
BB
158 tests/zfs-tests/cmd/devname2devid/Makefile
159 tests/zfs-tests/cmd/dir_rd_update/Makefile
160 tests/zfs-tests/cmd/file_check/Makefile
161 tests/zfs-tests/cmd/file_trunc/Makefile
162 tests/zfs-tests/cmd/file_write/Makefile
163 tests/zfs-tests/cmd/largest_file/Makefile
164 tests/zfs-tests/cmd/mkbusy/Makefile
165 tests/zfs-tests/cmd/mkfile/Makefile
166 tests/zfs-tests/cmd/mkfiles/Makefile
167 tests/zfs-tests/cmd/mktree/Makefile
168 tests/zfs-tests/cmd/mmap_exec/Makefile
b2ab468d 169 tests/zfs-tests/cmd/mmap_libaio/Makefile
6bb24f4d 170 tests/zfs-tests/cmd/mmapwrite/Makefile
d99a0153 171 tests/zfs-tests/cmd/nvlist_to_lua/Makefile
6bb24f4d
BB
172 tests/zfs-tests/cmd/randfree_file/Makefile
173 tests/zfs-tests/cmd/readmmap/Makefile
174 tests/zfs-tests/cmd/rename_dir/Makefile
175 tests/zfs-tests/cmd/rm_lnkcnt_zero_file/Makefile
176 tests/zfs-tests/cmd/threadsappend/Makefile
177 tests/zfs-tests/cmd/xattrtest/Makefile
178 tests/zfs-tests/include/Makefile
3f03fc8d 179 tests/zfs-tests/include/default.cfg
6bb24f4d
BB
180 tests/zfs-tests/tests/Makefile
181 tests/zfs-tests/tests/functional/Makefile
182 tests/zfs-tests/tests/functional/acl/Makefile
183 tests/zfs-tests/tests/functional/acl/posix/Makefile
5e021f56 184 tests/zfs-tests/tests/functional/arc/Makefile
6bb24f4d
BB
185 tests/zfs-tests/tests/functional/atime/Makefile
186 tests/zfs-tests/tests/functional/bootfs/Makefile
187 tests/zfs-tests/tests/functional/cache/Makefile
188 tests/zfs-tests/tests/functional/cachefile/Makefile
189 tests/zfs-tests/tests/functional/casenorm/Makefile
3c67d83a 190 tests/zfs-tests/tests/functional/checksum/Makefile
d99a0153
CW
191 tests/zfs-tests/tests/functional/channel_program/Makefile
192 tests/zfs-tests/tests/functional/channel_program/lua_core/Makefile
193 tests/zfs-tests/tests/functional/channel_program/synctask_core/Makefile
b4d8e2be 194 tests/zfs-tests/tests/functional/chattr/Makefile
6bb24f4d
BB
195 tests/zfs-tests/tests/functional/clean_mirror/Makefile
196 tests/zfs-tests/tests/functional/cli_root/Makefile
197 tests/zfs-tests/tests/functional/cli_root/zdb/Makefile
3fd3e56c 198 tests/zfs-tests/tests/functional/cli_root/zfs_bookmark/Makefile
b5256303 199 tests/zfs-tests/tests/functional/cli_root/zfs_change-key/Makefile
6bb24f4d
BB
200 tests/zfs-tests/tests/functional/cli_root/zfs_clone/Makefile
201 tests/zfs-tests/tests/functional/cli_root/zfs_copies/Makefile
202 tests/zfs-tests/tests/functional/cli_root/zfs_create/Makefile
203 tests/zfs-tests/tests/functional/cli_root/zfs_destroy/Makefile
b59b2297 204 tests/zfs-tests/tests/functional/cli_root/zfs_diff/Makefile
6bb24f4d
BB
205 tests/zfs-tests/tests/functional/cli_root/zfs_get/Makefile
206 tests/zfs-tests/tests/functional/cli_root/zfs_inherit/Makefile
b5256303 207 tests/zfs-tests/tests/functional/cli_root/zfs_load-key/Makefile
6bb24f4d
BB
208 tests/zfs-tests/tests/functional/cli_root/zfs/Makefile
209 tests/zfs-tests/tests/functional/cli_root/zfs_mount/Makefile
272b5d73 210 tests/zfs-tests/tests/functional/cli_root/zfs_program/Makefile
6bb24f4d
BB
211 tests/zfs-tests/tests/functional/cli_root/zfs_promote/Makefile
212 tests/zfs-tests/tests/functional/cli_root/zfs_property/Makefile
213 tests/zfs-tests/tests/functional/cli_root/zfs_receive/Makefile
214 tests/zfs-tests/tests/functional/cli_root/zfs_rename/Makefile
215 tests/zfs-tests/tests/functional/cli_root/zfs_reservation/Makefile
216 tests/zfs-tests/tests/functional/cli_root/zfs_rollback/Makefile
217 tests/zfs-tests/tests/functional/cli_root/zfs_send/Makefile
218 tests/zfs-tests/tests/functional/cli_root/zfs_set/Makefile
219 tests/zfs-tests/tests/functional/cli_root/zfs_share/Makefile
220 tests/zfs-tests/tests/functional/cli_root/zfs_snapshot/Makefile
b5256303 221 tests/zfs-tests/tests/functional/cli_root/zfs_unload-key/Makefile
6bb24f4d
BB
222 tests/zfs-tests/tests/functional/cli_root/zfs_unmount/Makefile
223 tests/zfs-tests/tests/functional/cli_root/zfs_unshare/Makefile
224 tests/zfs-tests/tests/functional/cli_root/zfs_upgrade/Makefile
225 tests/zfs-tests/tests/functional/cli_root/zpool_add/Makefile
226 tests/zfs-tests/tests/functional/cli_root/zpool_attach/Makefile
227 tests/zfs-tests/tests/functional/cli_root/zpool_clear/Makefile
228 tests/zfs-tests/tests/functional/cli_root/zpool_create/Makefile
229 tests/zfs-tests/tests/functional/cli_root/zpool_destroy/Makefile
230 tests/zfs-tests/tests/functional/cli_root/zpool_detach/Makefile
88f9c939 231 tests/zfs-tests/tests/functional/cli_root/zpool_events/Makefile
6bb24f4d
BB
232 tests/zfs-tests/tests/functional/cli_root/zpool_expand/Makefile
233 tests/zfs-tests/tests/functional/cli_root/zpool_export/Makefile
234 tests/zfs-tests/tests/functional/cli_root/zpool_get/Makefile
235 tests/zfs-tests/tests/functional/cli_root/zpool_history/Makefile
236 tests/zfs-tests/tests/functional/cli_root/zpool_import/Makefile
dbb38f66 237 tests/zfs-tests/tests/functional/cli_root/zpool_labelclear/Makefile
6bb24f4d
BB
238 tests/zfs-tests/tests/functional/cli_root/zpool/Makefile
239 tests/zfs-tests/tests/functional/cli_root/zpool_offline/Makefile
240 tests/zfs-tests/tests/functional/cli_root/zpool_online/Makefile
241 tests/zfs-tests/tests/functional/cli_root/zpool_remove/Makefile
d3f2cd7e 242 tests/zfs-tests/tests/functional/cli_root/zpool_reopen/Makefile
6bb24f4d
BB
243 tests/zfs-tests/tests/functional/cli_root/zpool_replace/Makefile
244 tests/zfs-tests/tests/functional/cli_root/zpool_scrub/Makefile
245 tests/zfs-tests/tests/functional/cli_root/zpool_set/Makefile
246 tests/zfs-tests/tests/functional/cli_root/zpool_status/Makefile
bec1067d 247 tests/zfs-tests/tests/functional/cli_root/zpool_sync/Makefile
6bb24f4d
BB
248 tests/zfs-tests/tests/functional/cli_root/zpool_upgrade/Makefile
249 tests/zfs-tests/tests/functional/cli_user/Makefile
250 tests/zfs-tests/tests/functional/cli_user/misc/Makefile
251 tests/zfs-tests/tests/functional/cli_user/zfs_list/Makefile
252 tests/zfs-tests/tests/functional/cli_user/zpool_iostat/Makefile
253 tests/zfs-tests/tests/functional/cli_user/zpool_list/Makefile
254 tests/zfs-tests/tests/functional/compression/Makefile
255 tests/zfs-tests/tests/functional/ctime/Makefile
8fb1ede1 256 tests/zfs-tests/tests/functional/deadman/Makefile
6bb24f4d
BB
257 tests/zfs-tests/tests/functional/delegate/Makefile
258 tests/zfs-tests/tests/functional/devices/Makefile
3f03fc8d 259 tests/zfs-tests/tests/functional/events/Makefile
6bb24f4d 260 tests/zfs-tests/tests/functional/exec/Makefile
ec0e24c2 261 tests/zfs-tests/tests/functional/fault/Makefile
6bb24f4d 262 tests/zfs-tests/tests/functional/features/async_destroy/Makefile
50c957f7 263 tests/zfs-tests/tests/functional/features/large_dnode/Makefile
6bb24f4d
BB
264 tests/zfs-tests/tests/functional/features/Makefile
265 tests/zfs-tests/tests/functional/grow_pool/Makefile
266 tests/zfs-tests/tests/functional/grow_replicas/Makefile
267 tests/zfs-tests/tests/functional/history/Makefile
4807c0ba 268 tests/zfs-tests/tests/functional/hkdf/Makefile
6bb24f4d
BB
269 tests/zfs-tests/tests/functional/inheritance/Makefile
270 tests/zfs-tests/tests/functional/inuse/Makefile
271 tests/zfs-tests/tests/functional/large_files/Makefile
272 tests/zfs-tests/tests/functional/largest_pool/Makefile
273 tests/zfs-tests/tests/functional/link_count/Makefile
449705db 274 tests/zfs-tests/tests/functional/libzfs/Makefile
6bb24f4d
BB
275 tests/zfs-tests/tests/functional/migration/Makefile
276 tests/zfs-tests/tests/functional/mmap/Makefile
379ca9cf 277 tests/zfs-tests/tests/functional/mmp/Makefile
6bb24f4d
BB
278 tests/zfs-tests/tests/functional/mount/Makefile
279 tests/zfs-tests/tests/functional/mv_files/Makefile
280 tests/zfs-tests/tests/functional/nestedfs/Makefile
281 tests/zfs-tests/tests/functional/no_space/Makefile
282 tests/zfs-tests/tests/functional/nopwrite/Makefile
283 tests/zfs-tests/tests/functional/online_offline/Makefile
284 tests/zfs-tests/tests/functional/pool_names/Makefile
285 tests/zfs-tests/tests/functional/poolversion/Makefile
286 tests/zfs-tests/tests/functional/privilege/Makefile
9c5167d1 287 tests/zfs-tests/tests/functional/projectquota/Makefile
6bb24f4d 288 tests/zfs-tests/tests/functional/quota/Makefile
ab9f4b0b 289 tests/zfs-tests/tests/functional/raidz/Makefile
6bb24f4d
BB
290 tests/zfs-tests/tests/functional/redundancy/Makefile
291 tests/zfs-tests/tests/functional/refquota/Makefile
292 tests/zfs-tests/tests/functional/refreserv/Makefile
293 tests/zfs-tests/tests/functional/rename_dirs/Makefile
294 tests/zfs-tests/tests/functional/replacement/Makefile
295 tests/zfs-tests/tests/functional/reservation/Makefile
296 tests/zfs-tests/tests/functional/rootpool/Makefile
297 tests/zfs-tests/tests/functional/rsend/Makefile
298 tests/zfs-tests/tests/functional/scrub_mirror/Makefile
299 tests/zfs-tests/tests/functional/slog/Makefile
300 tests/zfs-tests/tests/functional/snapshot/Makefile
301 tests/zfs-tests/tests/functional/snapused/Makefile
302 tests/zfs-tests/tests/functional/sparse/Makefile
303 tests/zfs-tests/tests/functional/threadsappend/Makefile
ace1eae8 304 tests/zfs-tests/tests/functional/tmpfile/Makefile
6bb24f4d 305 tests/zfs-tests/tests/functional/truncate/Makefile
0e85048f 306 tests/zfs-tests/tests/functional/user_namespace/Makefile
6bb24f4d 307 tests/zfs-tests/tests/functional/userquota/Makefile
1de321e6 308 tests/zfs-tests/tests/functional/upgrade/Makefile
e0ab3ab5 309 tests/zfs-tests/tests/functional/vdev_zaps/Makefile
6bb24f4d
BB
310 tests/zfs-tests/tests/functional/write_dirs/Makefile
311 tests/zfs-tests/tests/functional/xattr/Makefile
312 tests/zfs-tests/tests/functional/zvol/Makefile
313 tests/zfs-tests/tests/functional/zvol/zvol_cli/Makefile
314 tests/zfs-tests/tests/functional/zvol/zvol_ENOSPC/Makefile
315 tests/zfs-tests/tests/functional/zvol/zvol_misc/Makefile
316 tests/zfs-tests/tests/functional/zvol/zvol_swap/Makefile
679d73e9
JWK
317 tests/zfs-tests/tests/perf/Makefile
318 tests/zfs-tests/tests/perf/fio/Makefile
319 tests/zfs-tests/tests/perf/regression/Makefile
320 tests/zfs-tests/tests/perf/scripts/Makefile
6bb24f4d 321 tests/zfs-tests/tests/stress/Makefile
f3757573 322 rpm/Makefile
ee2ca1db
BB
323 rpm/redhat/Makefile
324 rpm/redhat/zfs.spec
325 rpm/redhat/zfs-kmod.spec
326 rpm/redhat/zfs-dkms.spec
f3757573
BB
327 rpm/generic/Makefile
328 rpm/generic/zfs.spec
329 rpm/generic/zfs-kmod.spec
330 rpm/generic/zfs-dkms.spec
fb7eb3e3 331 zfs.release
c9c0d073
BB
332])
333
6078881a 334
c9c0d073 335AC_OUTPUT