Add library.
[wrappi.git] / configure.ac
1 # wrappi
2 # Copyright (C) 2011 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 AC_INIT([wrappi],0.0.1)
19 AM_INIT_AUTOMAKE([foreign])
20
21 AC_CONFIG_MACRO_DIR([m4])
22
23 AC_PROG_LIBTOOL
24
25 AC_PROG_SED
26
27 dnl Check for basic C environment.
28 AC_PROG_CC_STDC
29 AC_PROG_INSTALL
30 AC_PROG_CPP
31
32 AC_C_PROTOTYPES
33 test "x$U" != "x" && AC_MSG_ERROR([Compiler not ANSI compliant])
34
35 AM_PROG_CC_C_O
36
37 dnl Check support for 64 bit file offsets.
38 AC_SYS_LARGEFILE
39
40 dnl Check for OCaml compiler.
41 AC_PROG_OCAML
42 if test "$OCAMLC" = "no"; then
43     AC_MSG_ERROR([You must install the OCaml compiler])
44 fi
45
46 dnl Camlp4 is required.
47 AC_PROG_CAMLP4
48 if test "$CAMLP4" = "no"; then
49     AC_MSG_ERROR([You must install camlp4 (the OCaml macro preprocessor)])
50 fi
51
52 dnl OCaml findlib ("ocamlfind") is required.
53 AC_PROG_FINDLIB
54 if test "$OCAMLFIND" = "no"; then
55     AC_MSG_ERROR([You must install OCaml findlib (the ocamlfind command)])
56 fi
57
58 dnl Library versioning.
59 LIB_MINOR=`cat $srcdir/lib/LIB_MINOR`
60 AC_SUBST(LIB_MINOR)
61
62 AC_CONFIG_HEADERS([config.h])
63 AC_CONFIG_FILES([Makefile
64                  APIs/Makefile
65                  examples/Makefile
66                  generator/Makefile
67                  generator-lib/config.ml
68                  generator-lib/Makefile
69                  generator-macros/Makefile
70                  lib/Makefile])
71 AC_OUTPUT