1##
2## Copyright (C) 2008 Sourcefire Inc., All Rights Reserved.
3##
4## Please see the LICENSE file distributed with this source
5## code archive for information covering the modification and
6## redistribution of this file and binaries built from it.
7##
8
9AC_PREREQ([2.61])
10m4_include([common_m4/versions.m4])
11AC_INIT([fsWalk], FS_WALK_VERSION_NUMBER, [https://sourceforge.net/apps/trac/razorbacktm/], [fsWalk])
12AC_CONFIG_AUX_DIR([.])
13AC_CONFIG_MACRO_DIR([m4])
14AC_CONFIG_SRCDIR([src/fswalk.c])
15AC_CONFIG_HEADERS([config.h])
16AM_INIT_AUTOMAKE([foreign no-define tar-ustar])
17
18# Pull in the checks for the build tools.
19m4_include([common_m4/build_tools.m4])
20
21# Pull in the platform specific build/configure environment options.
22m4_include([common_m4/platform_flags.m4])
23
24# Pull in the standard options for all components
25m4_include([common_m4/nugget_options.m4])
26
27# Pull in the library requirements for a simple .so loadable nugget.
28m4_include([common_m4/nugget_base_deps.m4])
29AC_CHECK_HEADERS(fts.h)
30
31# Pull in the standard header and function checks.
32m4_include([common_m4/standard_headers_functions.m4])
33
34# Pull in the compiler customisation options for different compilers.
35m4_include([common_m4/compiler_options.m4])
36
37# Pull in the standard compiler and linker flags.
38m4_include([common_m4/cflags.m4])
39
40# Pulling configuration for standard nugget substituions.
41m4_include([common_m4/nugget_subs.m4])
42
43AC_CONFIG_FILES([ \
44Makefile \
45m4/Makefile \
46src/Makefile \
47etc/Makefile \
48])
49AC_OUTPUT
50