]> git.proxmox.com Git - mirror_spl.git/blame - configure.ac
Add 3 missing typedefs.
[mirror_spl.git] / configure.ac
CommitLineData
715f6251 1/*
2 * This file is part of the SPL: Solaris Porting Layer.
3 *
4 * Copyright (c) 2008 Lawrence Livermore National Security, LLC.
5 * Produced at Lawrence Livermore National Laboratory
6 * Written by:
7 * Brian Behlendorf <behlendorf1@llnl.gov>,
8 * Herb Wartens <wartens2@llnl.gov>,
9 * Jim Garlick <garlick@llnl.gov>
10 * UCRL-CODE-235197
11 *
12 * This is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 */
26
f1ca4da6 27AC_INIT
0c617c9a 28AC_LANG(C)
dd529a30 29SPL_AC_META
bf9f3bac 30AC_CONFIG_AUX_DIR([config])
f1ca4da6 31AC_CANONICAL_SYSTEM
bf9f3bac 32AM_MAINTAINER_MODE
8934764e 33AM_SILENT_RULES
16b719f0
BB
34AM_INIT_AUTOMAKE([$SPL_META_NAME], [$SPL_META_VERSION])
35AC_CONFIG_HEADERS([spl_config.h], [
36 (mv spl_config.h spl_config.h.tmp &&
37 awk -f config/config.awk spl_config.h.tmp >spl_config.h &&
38 rm spl_config.h.tmp) || exit 1])
f1ca4da6 39
40AC_PROG_INSTALL
41AC_PROG_CC
564f6d15 42AC_PROG_LIBTOOL
f1ca4da6 43
6a1c3d41 44SPL_AC_LICENSE
86933a6e 45SPL_AC_CONFIG
f1ca4da6 46
f6c5d4ff
BB
47AC_CONFIG_FILES([
48 Makefile
49 lib/Makefile
50 cmd/Makefile
51 module/Makefile
52 module/spl/Makefile
53 module/splat/Makefile
54 include/Makefile
f6c5d4ff 55 scripts/Makefile
c5f70460 56 spl.spec
86933a6e 57 spl-modules.spec
f6c5d4ff 58])
f1ca4da6 59
60AC_OUTPUT