]> git.proxmox.com Git - mirror_zfs-debian.git/blame - configure.ac
Remove not needed .pc directory
[mirror_zfs-debian.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
23d56208
AX
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])
c06d4368 38AC_CONFIG_MACRO_DIR([config])
c9c0d073
BB
39AC_CANONICAL_SYSTEM
40AM_MAINTAINER_MODE
c06d4368 41m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
23d56208 42AM_INIT_AUTOMAKE
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
52
53ZFS_AC_LICENSE
54ZFS_AC_PACKAGE
55ZFS_AC_CONFIG
56ZFS_AC_DEBUG
1c5de20a 57ZFS_AC_DEBUG_DMU_TX
c9c0d073
BB
58
59AC_CONFIG_FILES([
60 Makefile
12d06bac
KF
61 udev/Makefile
62 udev/rules.d/Makefile
c9c0d073 63 etc/Makefile
01c0e61d
BB
64 etc/init.d/Makefile
65 etc/zfs/Makefile
23d56208
AX
66 etc/systemd/Makefile
67 etc/systemd/system/Makefile
68 etc/modules-load.d/Makefile
c9c0d073 69 man/Makefile
cf2129e6 70 man/man1/Makefile
821b6834 71 man/man5/Makefile
c9c0d073
BB
72 man/man8/Makefile
73 lib/Makefile
a26baf28
BB
74 lib/libspl/Makefile
75 lib/libspl/asm-generic/Makefile
76 lib/libspl/asm-i386/Makefile
77 lib/libspl/asm-x86_64/Makefile
78 lib/libspl/include/Makefile
6283f55e
BB
79 lib/libspl/include/ia32/Makefile
80 lib/libspl/include/ia32/sys/Makefile
81 lib/libspl/include/rpc/Makefile
82 lib/libspl/include/sys/Makefile
83 lib/libspl/include/sys/sysevent/Makefile
84 lib/libspl/include/sys/dktp/Makefile
85 lib/libspl/include/util/Makefile
c9c0d073
BB
86 lib/libavl/Makefile
87 lib/libefi/Makefile
88 lib/libnvpair/Makefile
89 lib/libunicode/Makefile
90 lib/libuutil/Makefile
91 lib/libzpool/Makefile
23d56208
AX
92 lib/libzfs/libzfs.pc
93 lib/libzfs/libzfs_core.pc
c9c0d073 94 lib/libzfs/Makefile
23d56208 95 lib/libzfs_core/Makefile
46e18b3f 96 lib/libshare/Makefile
c9c0d073
BB
97 cmd/Makefile
98 cmd/zdb/Makefile
9ae529ec 99 cmd/zhack/Makefile
c9c0d073
BB
100 cmd/zfs/Makefile
101 cmd/zinject/Makefile
102 cmd/zpool/Makefile
b79fc3fe 103 cmd/zstreamdump/Makefile
c9c0d073 104 cmd/ztest/Makefile
302ef151 105 cmd/zpios/Makefile
d53368f6 106 cmd/mount_zfs/Makefile
a1e147ee 107 cmd/fsck_zfs/Makefile
4c0d8e50 108 cmd/zvol_id/Makefile
821b6834 109 cmd/vdev_id/Makefile
c06d4368 110 cmd/arcstat/Makefile
23d56208
AX
111 cmd/dbufstat/Makefile
112 cmd/arc_summary/Makefile
113 cmd/zed/Makefile
114 contrib/Makefile
115 contrib/bash_completion.d/Makefile
116 contrib/dracut/Makefile
117 contrib/dracut/90zfs/Makefile
118 contrib/initramfs/Makefile
c9c0d073
BB
119 module/Makefile
120 module/avl/Makefile
121 module/nvpair/Makefile
122 module/unicode/Makefile
123 module/zcommon/Makefile
124 module/zfs/Makefile
302ef151 125 module/zpios/Makefile
6283f55e 126 include/Makefile
8299a1f4 127 include/linux/Makefile
6283f55e
BB
128 include/sys/Makefile
129 include/sys/fs/Makefile
130 include/sys/fm/Makefile
131 include/sys/fm/fs/Makefile
c9c0d073 132 scripts/Makefile
6283f55e
BB
133 scripts/zpios-profile/Makefile
134 scripts/zpios-test/Makefile
135 scripts/zpool-config/Makefile
c9c0d073 136 scripts/common.sh
f3757573 137 rpm/Makefile
23d56208
AX
138 rpm/redhat/Makefile
139 rpm/redhat/zfs.spec
140 rpm/redhat/zfs-kmod.spec
141 rpm/redhat/zfs-dkms.spec
f3757573
BB
142 rpm/generic/Makefile
143 rpm/generic/zfs.spec
144 rpm/generic/zfs-kmod.spec
145 rpm/generic/zfs-dkms.spec
6283f55e 146 zfs-script-config.sh
fb7eb3e3 147 zfs.release
c9c0d073
BB
148])
149
150AC_OUTPUT