2008-05-26 08:38:26 +04:00
|
|
|
/*
|
|
|
|
* This file is part of the SPL: Solaris Porting Layer.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008 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>
|
|
|
|
* UCRL-CODE-235197
|
|
|
|
*
|
|
|
|
* This 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.
|
|
|
|
*
|
|
|
|
* This 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
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 &&
|
|
|
|
awk -f config/config.awk spl_config.h.tmp >spl_config.h &&
|
|
|
|
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
|
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
|
2009-02-13 01:45:22 +03:00
|
|
|
])
|
2008-02-26 23:36:04 +03:00
|
|
|
|
|
|
|
AC_OUTPUT
|