a17e068743bcb5f85e5c162bb5a62b0b65116d25
[ocaml-augeas.git] / configure.ac
1 # Augeas
2 # Copyright (C) 2008-2012 Red Hat Inc., Richard W.M. Jones
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2 of the License, or (at your option) any later version.
8 #
9 # This library 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 GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
17
18 dnl Process this file with autoconf to produce a configure script.
19
20 AC_INIT(ocaml-augeas,0.4)
21
22 dnl Check for basic C environment.
23 AC_PROG_CC
24 AC_PROG_INSTALL
25 AC_PROG_CPP
26
27 AC_C_PROTOTYPES
28 test "x$U" != "x" && AC_MSG_ERROR(Compiler not ANSI compliant)
29
30 AC_PROG_CC_C_O
31
32 dnl Check for basic OCaml environment & findlib.
33 AC_PROG_OCAML
34 AC_PROG_FINDLIB
35
36 if test "x$OCAMLFIND" = "x"; then
37     AC_MSG_ERROR([You must have ocaml and findlib installed])
38 fi
39
40 dnl Check for libxml2.
41 PKG_CHECK_MODULES([LIBXML2], [libxml-2.0])
42
43 dnl Check for Augeas C library.
44 PKG_CHECK_MODULES([AUGEAS], [augeas])
45
46 dnl Produce output files.
47 AC_CONFIG_HEADERS([config.h])
48 AC_CONFIG_FILES([Makefile META])
49 AC_OUTPUT