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([swfScanner], SWF_SCANNER_VERSION_NUMBER, [https://sourceforge.net/apps/trac/razorbacktm/], [swfScanner])
12AC_CONFIG_AUX_DIR([.])
13AC_CONFIG_MACRO_DIR([m4])
14AC_CONFIG_SRCDIR([src/swf_scanner.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_simple_deps.m4])
29
30# Pull in the standard header and function checks.
31m4_include([common_m4/standard_headers_functions.m4])
32
33# Pull in the compiler customisation options for different compilers.
34m4_include([common_m4/compiler_options.m4])
35
36# Pull in the standard compiler and linker flags.
37m4_include([common_m4/cflags.m4])
38
39# Pulling configuration for standard nugget substituions.
40m4_include([common_m4/nugget_subs.m4])
41
42
43AC_CONFIG_FILES([ \
44Makefile \
45etc/Makefile \
46m4/Makefile \
47src/Makefile \
48])
49AC_OUTPUT
50