2010-08-27 02:22:58 +08:00
|
|
|
/*
|
|
|
|
* This file is part of the ZFS Linux port.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 Lawrence Livermore National Security, LLC.
|
|
|
|
* Produced at Lawrence Livermore National Laboratory
|
|
|
|
* Written by:
|
|
|
|
* Brian Behlendorf <behlendorf1@llnl.gov>,
|
|
|
|
* Herb Wartens <wartens2@llnl.gov>,
|
|
|
|
* Jim Garlick <garlick@llnl.gov>
|
|
|
|
* LLNL-CODE-403049
|
|
|
|
*
|
|
|
|
* CDDL HEADER START
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the terms of the
|
|
|
|
* Common Development and Distribution License, Version 1.0 only
|
|
|
|
* (the "License"). You may not use this file except in compliance
|
|
|
|
* with the License.
|
|
|
|
*
|
|
|
|
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
|
|
|
* or http://www.opensolaris.org/os/licensing.
|
|
|
|
* See the License for the specific language governing permissions
|
|
|
|
* and limitations under the License.
|
|
|
|
*
|
|
|
|
* When distributing Covered Code, include this CDDL HEADER in each
|
|
|
|
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
|
|
|
* If applicable, add the following below this CDDL HEADER, with the
|
|
|
|
* fields enclosed by brackets "[]" replaced with your own identifying
|
|
|
|
* information: Portions Copyright [yyyy] [name of copyright owner]
|
|
|
|
*
|
|
|
|
* CDDL HEADER END
|
|
|
|
*/
|
|
|
|
|
|
|
|
AC_INIT
|
|
|
|
AC_LANG(C)
|
|
|
|
ZFS_AC_META
|
|
|
|
AC_CONFIG_AUX_DIR([config])
|
2013-03-30 10:33:09 +08:00
|
|
|
AC_CONFIG_MACRO_DIR([config])
|
2010-08-27 02:22:58 +08:00
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
AM_MAINTAINER_MODE
|
2013-04-03 06:16:39 +08:00
|
|
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
2010-08-27 02:22:58 +08:00
|
|
|
AM_INIT_AUTOMAKE([$ZFS_META_NAME], [$ZFS_META_VERSION])
|
|
|
|
AC_CONFIG_HEADERS([zfs_config.h], [
|
|
|
|
(mv zfs_config.h zfs_config.h.tmp &&
|
2010-09-05 04:26:23 +08:00
|
|
|
awk -f ${ac_srcdir}/config/config.awk zfs_config.h.tmp >zfs_config.h &&
|
2010-08-27 02:22:58 +08:00
|
|
|
rm zfs_config.h.tmp) || exit 1])
|
|
|
|
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_LIBTOOL
|
|
|
|
AM_PROG_AS
|
|
|
|
|
|
|
|
ZFS_AC_LICENSE
|
|
|
|
ZFS_AC_PACKAGE
|
|
|
|
ZFS_AC_CONFIG
|
|
|
|
ZFS_AC_DEBUG
|
2012-03-21 07:00:17 +08:00
|
|
|
ZFS_AC_DEBUG_DMU_TX
|
2010-08-27 02:22:58 +08:00
|
|
|
|
|
|
|
AC_CONFIG_FILES([
|
|
|
|
Makefile
|
2011-03-18 06:18:13 +08:00
|
|
|
dracut/Makefile
|
|
|
|
dracut/90zfs/Makefile
|
2011-08-06 03:22:58 +08:00
|
|
|
udev/Makefile
|
|
|
|
udev/rules.d/Makefile
|
2010-08-27 02:22:58 +08:00
|
|
|
etc/Makefile
|
2011-03-18 06:02:28 +08:00
|
|
|
etc/init.d/Makefile
|
|
|
|
etc/zfs/Makefile
|
2014-01-19 22:36:49 +08:00
|
|
|
etc/systemd/Makefile
|
|
|
|
etc/systemd/system/Makefile
|
|
|
|
etc/modules-load.d/Makefile
|
2010-08-27 02:22:58 +08:00
|
|
|
man/Makefile
|
2013-03-13 03:40:55 +08:00
|
|
|
man/man1/Makefile
|
2012-04-21 08:32:30 +08:00
|
|
|
man/man5/Makefile
|
2010-08-27 02:22:58 +08:00
|
|
|
man/man8/Makefile
|
|
|
|
lib/Makefile
|
2010-08-27 02:50:56 +08:00
|
|
|
lib/libspl/Makefile
|
|
|
|
lib/libspl/asm-generic/Makefile
|
|
|
|
lib/libspl/asm-i386/Makefile
|
|
|
|
lib/libspl/asm-x86_64/Makefile
|
|
|
|
lib/libspl/include/Makefile
|
2010-09-05 04:26:23 +08:00
|
|
|
lib/libspl/include/ia32/Makefile
|
|
|
|
lib/libspl/include/ia32/sys/Makefile
|
|
|
|
lib/libspl/include/rpc/Makefile
|
|
|
|
lib/libspl/include/sys/Makefile
|
|
|
|
lib/libspl/include/sys/sysevent/Makefile
|
|
|
|
lib/libspl/include/sys/dktp/Makefile
|
|
|
|
lib/libspl/include/util/Makefile
|
2010-08-27 02:22:58 +08:00
|
|
|
lib/libavl/Makefile
|
|
|
|
lib/libefi/Makefile
|
|
|
|
lib/libnvpair/Makefile
|
|
|
|
lib/libunicode/Makefile
|
|
|
|
lib/libuutil/Makefile
|
|
|
|
lib/libzpool/Makefile
|
2014-06-07 07:23:22 +08:00
|
|
|
lib/libzfs/libzfs.pc
|
|
|
|
lib/libzfs/libzfs_core.pc
|
2010-08-27 02:22:58 +08:00
|
|
|
lib/libzfs/Makefile
|
2013-08-28 19:45:09 +08:00
|
|
|
lib/libzfs_core/Makefile
|
2011-07-03 03:34:05 +08:00
|
|
|
lib/libshare/Makefile
|
2010-08-27 02:22:58 +08:00
|
|
|
cmd/Makefile
|
|
|
|
cmd/zdb/Makefile
|
2012-12-14 07:24:15 +08:00
|
|
|
cmd/zhack/Makefile
|
2010-08-27 02:22:58 +08:00
|
|
|
cmd/zfs/Makefile
|
|
|
|
cmd/zinject/Makefile
|
|
|
|
cmd/zpool/Makefile
|
2012-08-30 03:23:12 +08:00
|
|
|
cmd/zstreamdump/Makefile
|
2010-08-27 02:22:58 +08:00
|
|
|
cmd/ztest/Makefile
|
2010-08-27 02:58:00 +08:00
|
|
|
cmd/zpios/Makefile
|
2011-03-05 07:14:46 +08:00
|
|
|
cmd/mount_zfs/Makefile
|
2013-01-10 04:51:29 +08:00
|
|
|
cmd/fsck_zfs/Makefile
|
2011-02-22 18:58:44 +08:00
|
|
|
cmd/zvol_id/Makefile
|
2012-04-21 08:32:30 +08:00
|
|
|
cmd/vdev_id/Makefile
|
2013-06-07 12:33:01 +08:00
|
|
|
cmd/arcstat/Makefile
|
2013-10-26 04:58:45 +08:00
|
|
|
cmd/dbufstat/Makefile
|
2015-03-03 05:28:57 +08:00
|
|
|
cmd/arc_summary/Makefile
|
2014-01-22 05:30:03 +08:00
|
|
|
cmd/zed/Makefile
|
2014-07-19 07:45:49 +08:00
|
|
|
contrib/Makefile
|
|
|
|
contrib/bash_completion.d/Makefile
|
2010-08-27 02:22:58 +08:00
|
|
|
module/Makefile
|
|
|
|
module/avl/Makefile
|
|
|
|
module/nvpair/Makefile
|
|
|
|
module/unicode/Makefile
|
|
|
|
module/zcommon/Makefile
|
|
|
|
module/zfs/Makefile
|
2010-08-27 02:58:00 +08:00
|
|
|
module/zpios/Makefile
|
2010-09-05 04:26:23 +08:00
|
|
|
include/Makefile
|
2011-01-19 03:42:25 +08:00
|
|
|
include/linux/Makefile
|
2010-09-05 04:26:23 +08:00
|
|
|
include/sys/Makefile
|
|
|
|
include/sys/fs/Makefile
|
|
|
|
include/sys/fm/Makefile
|
|
|
|
include/sys/fm/fs/Makefile
|
2010-08-27 02:22:58 +08:00
|
|
|
scripts/Makefile
|
2010-09-05 04:26:23 +08:00
|
|
|
scripts/zpios-profile/Makefile
|
|
|
|
scripts/zpios-test/Makefile
|
|
|
|
scripts/zpool-config/Makefile
|
2010-08-27 02:22:58 +08:00
|
|
|
scripts/common.sh
|
2013-02-18 04:10:17 +08:00
|
|
|
rpm/Makefile
|
|
|
|
rpm/fedora/Makefile
|
|
|
|
rpm/fedora/zfs.spec
|
|
|
|
rpm/fedora/zfs-kmod.spec
|
|
|
|
rpm/fedora/zfs-dkms.spec
|
|
|
|
rpm/generic/Makefile
|
|
|
|
rpm/generic/zfs.spec
|
|
|
|
rpm/generic/zfs-kmod.spec
|
|
|
|
rpm/generic/zfs-dkms.spec
|
2010-09-05 04:26:23 +08:00
|
|
|
zfs-script-config.sh
|
2012-07-13 03:21:25 +08:00
|
|
|
zfs.release
|
2010-08-27 02:22:58 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_OUTPUT
|