"Fossies" - the Fresh Open Source Software Archive 
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 # configure.in for mod_defensible
2 # © 2007-2012 Julien Danjou <julien@danjou.info>
3
4 AC_INIT(mod_defensible, 1.5, [julien@danjou.info])
5 AM_INIT_AUTOMAKE([foreign])
6
7 AC_CONFIG_SRCDIR(mod_defensible.c)
8
9 AC_PROG_CC
10 AM_PROG_LIBTOOL
11
12 # check for apxs tool
13 AC_PATH_PROG(APXS2, [apxs2])
14
15 AC_ARG_WITH(udns,
16 [ --with-udns use udns library to resolve (better performance)],
17 [AC_CHECK_LIB([udns], [dns_init],
18 ,
19 AC_MSG_ERROR([udns not found]))
20 ],
21 )
22 AC_SUBST(UDNS_LIBS)
23
24 AC_CONFIG_HEADER(config.h)
25 AC_OUTPUT(Makefile)