]> git.proxmox.com Git - mirror_zfs-debian.git/blob - configure.ac
Merge branch 'upstream'
[mirror_zfs-debian.git] / configure.ac
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
33 AC_INIT
34 AC_LANG(C)
35 ZFS_AC_META
36 AC_CONFIG_AUX_DIR([config])
37 AC_CANONICAL_SYSTEM
38 AM_MAINTAINER_MODE
39 AM_SILENT_RULES
40 AM_INIT_AUTOMAKE([$ZFS_META_NAME], [$ZFS_META_VERSION])
41 AC_CONFIG_HEADERS([zfs_config.h], [
42 (mv zfs_config.h zfs_config.h.tmp &&
43 awk -f ${ac_srcdir}/config/config.awk zfs_config.h.tmp >zfs_config.h &&
44 rm zfs_config.h.tmp) || exit 1])
45
46 AC_PROG_INSTALL
47 AC_PROG_CC
48 AC_PROG_LIBTOOL
49 AM_PROG_AS
50
51 ZFS_AC_LICENSE
52 ZFS_AC_PACKAGE
53 ZFS_AC_CONFIG
54 ZFS_AC_DEBUG
55 ZFS_AC_DEBUG_DMU_TX
56
57 AC_CONFIG_FILES([
58 Makefile
59 dracut/Makefile
60 dracut/90zfs/Makefile
61 udev/Makefile
62 udev/rules.d/Makefile
63 etc/Makefile
64 etc/init.d/Makefile
65 etc/zfs/Makefile
66 man/Makefile
67 man/man5/Makefile
68 man/man8/Makefile
69 lib/Makefile
70 lib/libspl/Makefile
71 lib/libspl/asm-generic/Makefile
72 lib/libspl/asm-i386/Makefile
73 lib/libspl/asm-x86_64/Makefile
74 lib/libspl/include/Makefile
75 lib/libspl/include/ia32/Makefile
76 lib/libspl/include/ia32/sys/Makefile
77 lib/libspl/include/rpc/Makefile
78 lib/libspl/include/sys/Makefile
79 lib/libspl/include/sys/sysevent/Makefile
80 lib/libspl/include/sys/dktp/Makefile
81 lib/libspl/include/util/Makefile
82 lib/libavl/Makefile
83 lib/libefi/Makefile
84 lib/libnvpair/Makefile
85 lib/libunicode/Makefile
86 lib/libuutil/Makefile
87 lib/libzpool/Makefile
88 lib/libzfs/Makefile
89 lib/libshare/Makefile
90 cmd/Makefile
91 cmd/zdb/Makefile
92 cmd/zfs/Makefile
93 cmd/zinject/Makefile
94 cmd/zpool/Makefile
95 cmd/zstreamdump/Makefile
96 cmd/ztest/Makefile
97 cmd/zpios/Makefile
98 cmd/mount_zfs/Makefile
99 cmd/zpool_layout/Makefile
100 cmd/zvol_id/Makefile
101 cmd/zpool_id/Makefile
102 cmd/vdev_id/Makefile
103 module/Makefile
104 module/avl/Makefile
105 module/nvpair/Makefile
106 module/unicode/Makefile
107 module/zcommon/Makefile
108 module/zfs/Makefile
109 module/zpios/Makefile
110 include/Makefile
111 include/linux/Makefile
112 include/sys/Makefile
113 include/sys/fs/Makefile
114 include/sys/fm/Makefile
115 include/sys/fm/fs/Makefile
116 scripts/Makefile
117 scripts/zpios-profile/Makefile
118 scripts/zpios-test/Makefile
119 scripts/zpool-config/Makefile
120 scripts/zpool-layout/Makefile
121 scripts/common.sh
122 zfs.spec
123 zfs-modules.spec
124 PKGBUILD-zfs
125 PKGBUILD-zfs-modules
126 zfs-script-config.sh
127 zfs.release
128 dkms.conf
129 ])
130
131 AC_OUTPUT