Add Augeas.defnode
[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_CONFIG_MACRO_DIR([m4])
21
22 AC_INIT(ocaml-augeas,0.5)
23
24 dnl Check for basic C environment.
25 AC_PROG_CC
26 AC_PROG_INSTALL
27 AC_PROG_CPP
28
29 AC_C_PROTOTYPES
30 test "x$U" != "x" && AC_MSG_ERROR(Compiler not ANSI compliant)
31
32 AC_PROG_CC_C_O
33
34 dnl Check for basic OCaml environment & findlib.
35 AC_PROG_OCAML
36 AC_PROG_FINDLIB
37
38 if test "x$OCAMLFIND" = "x"; then
39     AC_MSG_ERROR([You must have ocaml and findlib installed])
40 fi
41
42 dnl Check for libxml2.
43 PKG_CHECK_MODULES([LIBXML2], [libxml-2.0])
44
45 dnl Check for Augeas C library.
46 PKG_CHECK_MODULES([AUGEAS], [augeas >= 1.2.0])
47
48 dnl Check for aug_source function, added in Augeas 1.8.0.
49 old_LIBS="$LIBS"
50 LIBS="$AUGEAS_LIBS $LIBS"
51 AC_CHECK_FUNCS([aug_source])
52 LIBS="$old_LIBS"
53
54 dnl Produce output files.
55 AC_CONFIG_HEADERS([config.h])
56 AC_CONFIG_FILES([Makefile META])
57 AC_OUTPUT