Files
mirror_zfs/configure.ac
T

95 lines
2.6 KiB
Plaintext
Raw Normal View History

2025-01-04 11:04:27 +11:00
// SPDX-License-Identifier: CDDL-1.0
2010-08-26 11:22:58 -07:00
/*
2022-04-09 14:37:22 +02:00
* This file is part of OpenZFS.
2010-08-26 11:22:58 -07:00
*
* 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
2022-07-11 23:16:13 +02:00
* or https://opensource.org/licenses/CDDL-1.0.
2010-08-26 11:22:58 -07:00
* 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(m4_esyscmd(awk '/^Name:/ {printf $2}' META),
m4_esyscmd(awk '/^Version:/ {printf $2}' META))
CFGOPTS="$*"
2010-08-26 11:22:58 -07:00
AC_LANG(C)
ZFS_AC_META
AC_CONFIG_AUX_DIR([config])
2013-03-30 03:33:09 +01:00
AC_CONFIG_MACRO_DIR([config])
2021-01-02 16:55:55 -08:00
AC_CANONICAL_TARGET
2010-08-26 11:22:58 -07:00
AM_MAINTAINER_MODE
2013-04-02 15:16:39 -07:00
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
AM_INIT_AUTOMAKE([subdir-objects foreign])
# Remove default macros from config.h:
# PACKAGE, PACKAGE_{BUGREPORT,NAME,STRING,TARNAME,VERSION}, STDC_HEADERS, VERSION
2010-08-26 11:22:58 -07:00
AC_CONFIG_HEADERS([zfs_config.h], [
2023-11-02 06:19:44 +08:00
$SED -nri~ -e '/^$/be' -e 'N;N;/#define (PACKAGE|VERSION|STDC_HEADERS)/d' -e ':e' -e 'p' zfs_config.h && rm zfs_config.h~ || exit])
2010-08-26 11:22:58 -07:00
2021-01-02 16:55:55 -08:00
LT_INIT
2010-08-26 11:22:58 -07:00
AC_PROG_INSTALL
AC_PROG_CC
2021-05-08 15:04:48 +02:00
AC_PROG_LN_S
2019-03-02 16:19:05 -08:00
PKG_PROG_PKG_CONFIG
2010-08-26 11:22:58 -07:00
AM_PROG_AS
AM_PROG_CC_C_O
AX_CODE_COVERAGE
2018-08-15 09:52:28 -07:00
_AM_PROG_TAR(pax)
2010-08-26 11:22:58 -07:00
ZFS_AC_LICENSE
ZFS_AC_CONFIG
2020-07-01 17:05:21 +01:00
ZFS_AC_PACKAGE
2010-08-26 11:22:58 -07:00
ZFS_AC_DEBUG
ZFS_AC_DEBUGINFO
2018-02-15 17:53:18 -08:00
ZFS_AC_DEBUG_KMEM
ZFS_AC_DEBUG_KMEM_TRACKING
ZFS_AC_DEBUG_INVARIANTS
2025-06-16 17:12:09 +02:00
ZFS_AC_OBJTOOL_WERROR
2010-08-26 11:22:58 -07:00
2015-07-01 15:23:09 -07:00
AC_CONFIG_FILES([
contrib/debian/rules
contrib/debian/changelog
2010-08-26 11:22:58 -07:00
Makefile
include/Makefile
2014-06-07 01:23:22 +02:00
lib/libzfs/libzfs.pc
2020-06-30 13:10:41 -04:00
lib/libzfs_core/libzfs_core.pc
lib/libzfsbootenv/libzfsbootenv.pc
2020-06-07 17:03:12 -04:00
module/Kbuild
2010-08-26 11:22:58 -07:00
module/Makefile
rpm/generic/zfs-dkms.spec
rpm/generic/zfs-kmod.spec
rpm/generic/zfs.spec
rpm/redhat/zfs-dkms.spec
rpm/redhat/zfs-kmod.spec
rpm/redhat/zfs.spec
2015-07-01 15:23:09 -07:00
tests/zfs-tests/tests/Makefile
zfs.release
2010-08-26 11:22:58 -07:00
])
2025-06-16 17:12:09 +02:00
AC_CONFIG_FILES([scripts/objtool-wrapper], [chmod +x scripts/objtool-wrapper])
2010-08-26 11:22:58 -07:00
AC_OUTPUT
ZFS_AC_KERNEL_VERSION_WARNING