2010-05-18 02:18:00 +04: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 08:38:26 +04:00
|
|
|
|
2008-02-26 23:36:04 +03:00
|
|
|
AC_INIT
|
2009-03-10 20:57:52 +03:00
|
|
|
AC_LANG(C)
|
2008-11-26 20:01:45 +03:00
|
|
|
SPL_AC_META
|
2008-11-25 02:49:18 +03:00
|
|
|
AC_CONFIG_AUX_DIR([config])
|
2008-02-26 23:36:04 +03:00
|
|
|
AC_CANONICAL_SYSTEM
|
2008-11-25 02:49:18 +03:00
|
|
|
AM_MAINTAINER_MODE
|
2010-03-27 01:21:06 +03:00
|
|
|
AM_SILENT_RULES
|
2010-03-23 00:45:33 +03: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 23:12:39 +04:00
|
|
|
awk -f ${ac_srcdir}/config/config.awk spl_config.h.tmp >spl_config.h &&
|
2010-03-23 00:45:33 +03:00
|
|
|
rm spl_config.h.tmp) || exit 1])
|
2008-02-26 23:36:04 +03:00
|
|
|
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_CC
|
2008-02-27 02:20:41 +03:00
|
|
|
AC_PROG_LIBTOOL
|
2008-02-26 23:36:04 +03:00
|
|
|
|
2008-11-14 00:43:30 +03:00
|
|
|
SPL_AC_LICENSE
|
2010-07-27 21:19:44 +04:00
|
|
|
SPL_AC_PACKAGE
|
2009-07-02 01:37:44 +04:00
|
|
|
SPL_AC_CONFIG
|
2008-02-26 23:36:04 +03:00
|
|
|
|
2009-02-13 01:45:22 +03:00
|
|
|
AC_CONFIG_FILES([
|
|
|
|
Makefile
|
|
|
|
lib/Makefile
|
|
|
|
cmd/Makefile
|
|
|
|
module/Makefile
|
|
|
|
module/spl/Makefile
|
|
|
|
module/splat/Makefile
|
|
|
|
include/Makefile
|
|
|
|
scripts/Makefile
|
2009-03-05 20:08:07 +03:00
|
|
|
spl.spec
|
2009-07-02 01:37:44 +04:00
|
|
|
spl-modules.spec
|
2011-12-07 05:33:51 +04:00
|
|
|
PKGBUILD-spl
|
|
|
|
PKGBUILD-spl-modules
|
2012-07-12 02:47:56 +04:00
|
|
|
spl.release
|
2009-02-13 01:45:22 +03:00
|
|
|
])
|
2008-02-26 23:36:04 +03:00
|
|
|
|
|
|
|
AC_OUTPUT
|