Autotools configuration.
[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 and camlp4.
41 AC_PROG_OCAML
42 if test "$OCAMLC" = "no"; then
43     AC_MSG_ERROR([You must install the OCaml compiler])
44 fi
45
46 AC_PROG_CAMLP4
47 if test "$CAMLP4" = "no"; then
48     AC_MSG_ERROR([You must install camlp4 (the OCaml macro preprocessor)])
49 fi
50
51 AC_CONFIG_HEADERS([config.h])
52 AC_CONFIG_FILES([Makefile])
53 AC_OUTPUT