]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - zfs/configure.ac
KVM: arm64: vgic-v3: Add ICV_EOIR1_EL1 handler
[mirror_ubuntu-zesty-kernel.git] / zfs / configure.ac
CommitLineData
7bdf406d
TG
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
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'))
35AC_LANG(C)
36ZFS_AC_META
37AC_CONFIG_AUX_DIR([config])
38AC_CONFIG_MACRO_DIR([config])
39AC_CANONICAL_SYSTEM
40AM_MAINTAINER_MODE
41m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
0bd31011 42AM_INIT_AUTOMAKE
7bdf406d
TG
43AC_CONFIG_HEADERS([zfs_config.h], [
44 (mv zfs_config.h zfs_config.h.tmp &&
45 awk -f ${ac_srcdir}/config/config.awk zfs_config.h.tmp >zfs_config.h &&
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
57ZFS_AC_DEBUG_DMU_TX
58
0bd31011 59AC_CONFIG_FILES([
7bdf406d 60 Makefile
7bdf406d
TG
61 module/Makefile
62 module/avl/Makefile
63 module/nvpair/Makefile
64 module/unicode/Makefile
65 module/zcommon/Makefile
66 module/zfs/Makefile
67 module/zpios/Makefile
68 include/Makefile
69 include/linux/Makefile
70 include/sys/Makefile
71 include/sys/fs/Makefile
72 include/sys/fm/Makefile
73 include/sys/fm/fs/Makefile
7bdf406d
TG
74 zfs.release
75])
76
77AC_OUTPUT