]> git.proxmox.com Git - mirror_spl-debian.git/blob - configure.ac
SLES10 Fixes (part 6)
[mirror_spl-debian.git] / configure.ac
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
27 AC_INIT
28 AC_LANG(C)
29 SPL_AC_META
30 AC_CONFIG_AUX_DIR([config])
31 AC_CANONICAL_SYSTEM
32 AM_INIT_AUTOMAKE([$SPL_META_NAME], [$SPL_META_VERSION])
33 AC_CONFIG_HEADERS([spl_config.h])
34 AH_BOTTOM([#include <spl_unconfig.h>])
35 AM_MAINTAINER_MODE
36
37 AC_PROG_INSTALL
38 AC_PROG_CC
39 AC_PROG_LIBTOOL
40
41 SPL_AC_KERNEL
42 SPL_AC_LICENSE
43 SPL_AC_DEBUG
44 SPL_AC_DEBUG_KMEM
45 SPL_AC_DEBUG_MUTEX
46 SPL_AC_DEBUG_KSTAT
47 SPL_AC_DEBUG_CALLB
48 SPL_AC_TYPE_UINTPTR_T
49 SPL_AC_TYPE_ATOMIC64_T
50 SPL_AC_3ARGS_INIT_WORK
51 SPL_AC_2ARGS_REGISTER_SYSCTL
52 SPL_AC_SET_SHRINKER
53 SPL_AC_PATH_IN_NAMEIDATA
54 SPL_AC_TASK_CURR
55 SPL_AC_CTL_UNNUMBERED
56 SPL_AC_FLS64
57 SPL_AC_DEVICE_CREATE
58 SPL_AC_5ARGS_DEVICE_CREATE
59 SPL_AC_CLASS_DEVICE_CREATE
60 SPL_AC_SET_NORMALIZED_TIMESPEC_EXPORT
61 SPL_AC_SET_NORMALIZED_TIMESPEC_INLINE
62 SPL_AC_TIMESPEC_SUB
63 SPL_AC_INIT_UTSNAME
64 SPL_AC_FDTABLE_HEADER
65 SPL_AC_FILES_FDTABLE
66 SPL_AC_UACCESS_HEADER
67 SPL_AC_KMALLOC_NODE
68 SPL_AC_MONOTONIC_CLOCK
69 SPL_AC_INODE_I_MUTEX
70 SPL_AC_MUTEX_LOCK_NESTED
71 SPL_AC_DIV64_64
72 SPL_AC_DIV64_U64
73 SPL_AC_3ARGS_ON_EACH_CPU
74 SPL_AC_KALLSYMS_LOOKUP_NAME
75 SPL_AC_GET_VMALLOC_INFO
76 SPL_AC_PGDAT_HELPERS
77 SPL_AC_FIRST_ONLINE_PGDAT
78 SPL_AC_NEXT_ONLINE_PGDAT
79 SPL_AC_NEXT_ZONE
80 SPL_AC_PGDAT_LIST
81 SPL_AC_GET_ZONE_COUNTS
82 SPL_AC_GLOBAL_PAGE_STATE
83 SPL_AC_ZONE_STAT_ITEM_FIA
84 SPL_AC_2ARGS_VFS_UNLINK
85 SPL_AC_4ARGS_VFS_RENAME
86
87 AC_CONFIG_FILES([
88 Makefile
89 lib/Makefile
90 cmd/Makefile
91 module/Makefile
92 module/spl/Makefile
93 module/splat/Makefile
94 include/Makefile
95 scripts/Makefile
96 spl.spec
97 ])
98
99 AC_OUTPUT