2010-05-17 22:18:00 +00:00
|
|
|
###############################################################################
|
|
|
|
# SPL AutoConf Configuration
|
|
|
|
###############################################################################
|
|
|
|
# Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC.
|
|
|
|
# Copyright (C) 2007 The Regents of the University of California.
|
|
|
|
# Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
|
|
|
|
# Written by Brian Behlendorf <behlendorf1@llnl.gov>.
|
|
|
|
# UCRL-CODE-235197
|
|
|
|
#
|
|
|
|
# This file is part of the SPL, Solaris Porting Layer.
|
|
|
|
# For details, see <http://github.com/behlendorf/spl/>.
|
|
|
|
#
|
|
|
|
# The SPL is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by the
|
|
|
|
# Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
# option) any later version.
|
|
|
|
#
|
|
|
|
# The SPL is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
# for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
# with the SPL. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
###############################################################################
|
2008-05-26 04:38:26 +00:00
|
|
|
|
2008-02-26 20:36:04 +00:00
|
|
|
AC_INIT
|
2009-03-10 17:57:52 +00:00
|
|
|
AC_LANG(C)
|
2008-11-26 17:01:45 +00:00
|
|
|
SPL_AC_META
|
2008-11-24 23:49:18 +00:00
|
|
|
AC_CONFIG_AUX_DIR([config])
|
2008-02-26 20:36:04 +00:00
|
|
|
AC_CANONICAL_SYSTEM
|
2008-11-24 23:49:18 +00:00
|
|
|
AM_MAINTAINER_MODE
|
2010-03-26 22:21:06 +00:00
|
|
|
AM_SILENT_RULES
|
2010-03-22 21:45:33 +00:00
|
|
|
AM_INIT_AUTOMAKE([$SPL_META_NAME], [$SPL_META_VERSION])
|
|
|
|
AC_CONFIG_HEADERS([spl_config.h], [
|
|
|
|
(mv spl_config.h spl_config.h.tmp &&
|
2010-09-02 19:12:39 +00:00
|
|
|
awk -f ${ac_srcdir}/config/config.awk spl_config.h.tmp >spl_config.h &&
|
2010-03-22 21:45:33 +00:00
|
|
|
rm spl_config.h.tmp) || exit 1])
|
2008-02-26 20:36:04 +00:00
|
|
|
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_CC
|
2008-02-26 23:20:41 +00:00
|
|
|
AC_PROG_LIBTOOL
|
2008-02-26 20:36:04 +00:00
|
|
|
|
2008-11-13 21:43:30 +00:00
|
|
|
SPL_AC_LICENSE
|
2010-07-27 17:19:44 +00:00
|
|
|
SPL_AC_PACKAGE
|
2009-07-01 21:37:44 +00:00
|
|
|
SPL_AC_CONFIG
|
2008-02-26 20:36:04 +00:00
|
|
|
|
2009-02-12 22:45:22 +00:00
|
|
|
AC_CONFIG_FILES([
|
|
|
|
Makefile
|
|
|
|
lib/Makefile
|
|
|
|
cmd/Makefile
|
|
|
|
module/Makefile
|
|
|
|
module/spl/Makefile
|
|
|
|
module/splat/Makefile
|
|
|
|
include/Makefile
|
|
|
|
scripts/Makefile
|
2009-03-05 17:08:07 +00:00
|
|
|
spl.spec
|
2009-07-01 21:37:44 +00:00
|
|
|
spl-modules.spec
|
2011-12-07 01:33:51 +00:00
|
|
|
PKGBUILD-spl
|
|
|
|
PKGBUILD-spl-modules
|
2012-07-11 22:47:56 +00:00
|
|
|
spl.release
|
2012-08-07 20:57:03 +00:00
|
|
|
dkms.conf
|
2009-02-12 22:45:22 +00:00
|
|
|
])
|
2008-02-26 20:36:04 +00:00
|
|
|
|
|
|
|
AC_OUTPUT
|