A const-correctness fix from Diego.
[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.5)
22 PUBDATE="May 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 Set to true if the manual should be built.
35 build_manual=yes;
36 AM_CONDITIONAL(BUILD_MANUAL, [test "x$build_manual" = "xyes"])
37
38 dnl Checks for programs.
39 AC_PROG_CC
40 AC_PROG_CXX
41 AC_CHECK_TOOL(AR, ar)
42 AC_PROG_RANLIB
43
44 dnl Set test on c++ compiler.
45 AC_LANG_CPLUSPLUS
46
47 dnl Check for definition of MAKE.
48 AC_PROG_MAKE_SET
49
50 if test "x$build_parsers" = "xyes"; then
51
52 dnl Check for Ragel
53 AC_CHECK_PROG(RAGEL, ragel, ragel)
54 if test -z "$RAGEL"; then
55         echo
56         echo "error: ragel is required to build the parsers"
57         echo
58         exit 1
59 fi
60
61 dnl Check for Kelbt
62 AC_CHECK_PROG(KELBT, kelbt, kelbt)
63 if test -z "$KELBT"; then
64         echo
65         echo "error: kelbt is required to build the parsers"
66         echo
67         exit 1
68 fi
69
70 fi # BUILD_PARSERS
71
72 dnl Check for the D compiler
73 AC_CHECK_PROG(GDC, gdc, gdc)
74
75 dnl Check for the Objective-C compiler
76 AC_MSG_CHECKING([for the Objective-C compiler])
77 cat > conftest.m <<EOF
78 int main() { return 0; }
79 EOF
80 GOBJC=""
81 if gcc -x objective-c conftest.m -o conftest.bin 2>/dev/null; then
82         GOBJC="gcc -x objective-c"
83         AC_MSG_RESULT([yes])
84 else
85         AC_MSG_RESULT([no])
86 fi
87 AC_SUBST(GOBJC)
88
89 dnl Check for the Java compiler.
90 AC_CHECK_PROG(JAVAC, javac, javac)
91
92 dnl Check for TXL.
93 AC_CHECK_PROG(TXL, txl, txl)
94
95 dnl Check for Ruby.
96 AC_CHECK_PROG(RUBY, ruby, ruby)
97
98 dnl Check for the C# compiler.
99 AC_CHECK_PROG(GMCS, gmcs, gmcs)
100
101 dnl write output files
102 AC_OUTPUT(
103         [
104                 Makefile ragel/Makefile aapl/Makefile 
105                 doc/Makefile doc/ragel.1
106                 contrib/Makefile
107                 test/Makefile test/runtests
108         ],
109         [chmod +x test/runtests]
110 )
111
112 echo "configuration of ragel complete"