Updated the svn:ignore in test, added EXTRA_DIST so that tests get added to the
[external/ragel.git] / configure.in
1 dnl 
2 dnl   Copyright 2001-2009 Adrian Thurston <thurston@complang.org>
3 dnl
4
5 dnl   This file is part of Ragel.
6 dnl  
7 dnl   Ragel is free software; you can redistribute it and/or modify
8 dnl   it under the terms of the GNU General Public License as published by
9 dnl   the Free Software Foundation; either version 2 of the License, or
10 dnl   (at your option) any later version.
11 dnl   
12 dnl   Ragel is distributed in the hope that it will be useful,
13 dnl   but WITHOUT ANY WARRANTY; without even the implied warranty of
14 dnl   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 dnl   GNU General Public License for more details.
16 dnl   
17 dnl   You should have received a copy of the GNU General Public License
18 dnl   along with Ragel; if not, write to the Free Software
19 dnl   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
20   
21 AC_INIT(ragel, 6.4)
22 PUBDATE="March 2009"
23
24 AM_INIT_AUTOMAKE
25 AC_SUBST(PUBDATE)
26 AC_CONFIG_HEADER(ragel/config.h)
27
28 dnl Set to true if the build system should generate parsers from ragel and kelbt
29 dnl sources. Set to false if generated files are included and not to be built
30 dnl (production).
31 build_parsers=yes;
32 AM_CONDITIONAL(BUILD_PARSERS, [test "x$build_parsers" = "xyes"])
33
34 dnl Checks for programs.
35 AC_PROG_CC
36 AC_PROG_CXX
37 AC_CHECK_TOOL(AR, ar)
38 AC_PROG_RANLIB
39
40 dnl Set test on c++ compiler.
41 AC_LANG_CPLUSPLUS
42
43 dnl Check for definition of MAKE.
44 AC_PROG_MAKE_SET
45
46 if test "x$enable_parsers" = "xyes"; then
47
48 dnl Check for Ragel
49 AC_CHECK_PROG(RAGEL, ragel, ragel)
50 if test -z "$RAGEL"; then
51         echo
52         echo "error: ragel is required to build the parsers"
53         echo
54         exit 1
55 fi
56
57 dnl Check for Kelbt
58 AC_CHECK_PROG(KELBT, kelbt, kelbt)
59 if test -z "$KELBT"; then
60         echo
61         echo "error: kelbt is required to build the parsers"
62         echo
63         exit 1
64 fi
65
66 fi # BUILD_PARSERS
67
68 dnl Check for the D compiler
69 AC_CHECK_PROG(GDC, gdc, gdc)
70
71 dnl Check for the Objective-C compiler
72 AC_MSG_CHECKING([for the Objective-C compiler])
73 cat > conftest.m <<EOF
74 int main() { return 0; }
75 EOF
76 GOBJC=""
77 if gcc -x objective-c conftest.m -o conftest.bin 2>/dev/null; then
78         GOBJC="gcc -x objective-c"
79         AC_MSG_RESULT([yes])
80 else
81         AC_MSG_RESULT([no])
82 fi
83 AC_SUBST(GOBJC)
84
85 dnl Check for the Java compiler.
86 AC_CHECK_PROG(JAVAC, javac, javac)
87
88 dnl Check for TXL.
89 AC_CHECK_PROG(TXL, txl, txl)
90
91 dnl Check for Ruby.
92 AC_CHECK_PROG(RUBY, ruby, ruby)
93
94 dnl Check for the C# compiler.
95 AC_CHECK_PROG(GMCS, gmcs, gmcs)
96
97 dnl write output files
98 AC_OUTPUT(
99         [Makefile ragel/Makefile aapl/Makefile doc/Makefile test/Makefile test/runtests],
100         [chmod +x test/runtests]
101 )
102
103 echo "configuration of ragel complete"