Imported Upstream version 0.10.0
[platform/upstream/augeas.git] / configure.ac
1 AC_INIT(augeas, 0.10.0)
2 AC_CONFIG_SRCDIR([src/augeas.c])
3 AC_CONFIG_AUX_DIR([build/aux])
4 AM_CONFIG_HEADER([config.h])
5 AM_INIT_AUTOMAKE([-Wno-portability 1.11 color-tests parallel-tests])
6 AM_SILENT_RULES([yes]) # make --enable-silent-rules the default.
7
8
9 dnl Check for NaturalDocs
10 AC_PATH_PROGS([ND_PROG], [naturaldocs NaturalDocs], missing)
11 AM_CONDITIONAL([ND_ENABLED], [test "x$ND_PROG" != "xmissing"])
12
13 dnl NaturalDocs output format, defaults to HTML
14 ND_FORMAT=HTML
15 AC_ARG_WITH([naturaldocs-output],
16   [AS_HELP_STRING([--with-naturaldocs-output=FORMAT],
17     [format of NaturalDocs output (possible values: HTML/FramedHTML, default: HTML)])],
18   [
19     if test "x$ND_PROG" = "xmissing"; then
20       AC_MSG_ERROR([NaturalDocs was not found on your path; there's no point in setting the output format])
21     fi
22     case $withval in
23        HTML|FramedHTML)
24           ND_FORMAT=$withval
25           ;;
26        *)
27           AC_MSG_ERROR($withval is not a supported output format for NaturalDocs)
28           ;;
29     esac
30   ])
31 AC_SUBST(ND_FORMAT)
32
33
34 dnl Check for pdflatex
35 PDFDOCS=""
36 AC_ARG_WITH([pdfdocs],
37   [AS_HELP_STRING([--with-pdfdocs],
38     [whether to use pdflatex to build PDF docs])],
39   [AC_PATH_PROG(PDFLATEX, pdflatex, no)
40    if test "x$PDFLATEX" = "xno"; then
41         AC_MSG_ERROR(You asked to use PDFLatex but it could not be found)
42    else
43         PDFDOCS="pdfdocs"
44    fi
45   ])
46 AC_SUBST(PDFLATEX)
47 AC_SUBST(PDFDOCS)
48
49 dnl Support for memory tests with failmalloc
50 AC_ARG_WITH([failmalloc],
51   [AS_HELP_STRING([--with-failmalloc=FAILMALLOC],
52      [enable failmalloc test targets and use the failmalloc library FAILMALLOC])],
53   [AC_SUBST([LIBFAILMALLOC], ["$with_failmalloc"])],
54   [with_failmalloc=no])
55
56 AM_CONDITIONAL([WITH_FAILMALLOC], [test x$with_failmalloc != xno])
57
58 dnl --enable-debug=(yes|no)
59 AC_ARG_ENABLE([debug],
60               [AC_HELP_STRING([--enable-debug=no/yes],
61                              [enable debugging output])],[],[enable_debug=yes])
62 AM_CONDITIONAL([ENABLE_DEBUG], test x"$enable_debug" = x"yes")
63 if test x"$enable_debug" = x"yes"; then
64    AC_DEFINE([ENABLE_DEBUG], [1], [whether debugging is enabled])
65 fi
66
67 dnl Version info in libtool's notation
68 AC_SUBST([LIBAUGEAS_VERSION_INFO], [15:0:15])
69 AC_SUBST([LIBFA_VERSION_INFO], [4:5:3])
70
71 AC_GNU_SOURCE
72
73 AC_PROG_CC
74 gl_EARLY
75 AC_SYS_LARGEFILE
76
77 dnl gl_INIT uses m4_foreach_w, yet that is not defined in autoconf-2.59.
78 dnl In order to accommodate developers with such old tools, here's a
79 dnl replacement definition.
80 m4_ifndef([m4_foreach_w],
81   [m4_define([m4_foreach_w],
82     [m4_foreach([$1], m4_split(m4_normalize([$2]), [ ]), [$3])])])
83
84 AC_PROG_LIBTOOL
85 AC_PROG_YACC
86 AC_PROG_LEX
87
88 AUGEAS_COMPILE_WARNINGS(maximum)
89
90 ## Compiler flags to be used everywhere
91 AUGEAS_CFLAGS=-std=gnu99
92 AC_SUBST(AUGEAS_CFLAGS)
93
94 AUGEAS_CHECK_READLINE
95 AC_CHECK_FUNCS([open_memstream uselocale])
96
97 VERSION_SCRIPT_FLAGS=
98 $(/usr/bin/ld --help 2>&1 | grep -- --version-script >/dev/null) && \
99     VERSION_SCRIPT_FLAGS=-Wl,--version-script=
100 test "`uname`" == "SunOS" && \
101     VERSION_SCRIPT_FLAGS="-Wl,-M -Wl,"
102 AC_SUBST(VERSION_SCRIPT_FLAGS)
103 AM_CONDITIONAL([USE_VERSION_SCRIPT], [test -n "$VERSION_SCRIPT_FLAGS"])
104
105 gl_INIT
106
107 PKG_PROG_PKG_CONFIG
108 PKG_CHECK_MODULES([LIBXML], [libxml-2.0])
109
110 AC_CHECK_FUNCS([strerror_r fsync])
111
112 AC_OUTPUT(Makefile \
113           gnulib/lib/Makefile \
114           gnulib/tests/Makefile \
115           src/Makefile \
116           man/Makefile \
117           tests/Makefile \
118           examples/Makefile \
119           doc/Makefile \
120           doc/naturaldocs/Makefile \
121           augeas.pc augeas.spec)