1#
2# Autoconf input file.
3#
4# Version:	$Id: a3dbed2d9ce120392ff6dfddd8fe61be8d315311 $
5#
6
7AC_PREREQ([2.59])
8AC_INIT(rlm_sqlippool.c)
9AC_REVISION($Revision$)
10AC_DEFUN(modname,[rlm_sqlippool])
11
12AC_ARG_WITH([]modname,
13[  --with-[]modname              build []modname. (default=yes)])
14
15if test x$with_[]modname != xno; then
16
17	dnl  This module doesn't need any autoconf test which is not already
18	dnl  in top-level configure.
19
20	targetname=modname
21else
22	targetname=
23	echo \*\*\* module modname is disabled.
24fi
25
26mod_ldflags="$SMART_LIBS"
27mod_cflags="$SMART_CPPFLAGS"
28AC_SUBST(mod_ldflags)
29AC_SUBST(mod_cflags)
30AC_SUBST(targetname)
31AC_OUTPUT(all.mk)
32