diff options
author | Internet Software Consortium, Inc <@isc.org> | 2013-08-14 06:35:21 -0600 |
---|---|---|
committer | Internet Software Consortium, Inc <@isc.org> | 2013-08-14 06:35:21 -0600 |
commit | ebbc86ee1eae2231a10e23f4cda592085dbc7eef (patch) | |
tree | 8e373dd37c3b0a9fb113ff78f7a15dd19f6c0911 /configure.in | |
parent | 87c6fc212d37ddbeb388f8308377ae38de3061d9 (diff) | |
download | bind9-ebbc86ee1eae2231a10e23f4cda592085dbc7eef.tar.gz |
9.9.4b1
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 8e543d85..2bdf91be 100644 --- a/configure.in +++ b/configure.in @@ -70,6 +70,7 @@ yes) test "${enable_fixed_rrset+set}" = set || enable_fixed_rrset=yes test "${with_atf+set}" = set || with_atf=yes test "${enable_filter_aaaa+set}" = set || enable_filter_aaaa=yes + test "${enable_rrl+set}" = set || enable_rrl=yes test "${with_dlz_filesystem+set}" = set || with_dlz_filesystem=yes case "$host" in *-darwin*) @@ -469,7 +470,7 @@ AC_SUBST(ISC_PLATFORM_HAVELIFCONF) # check if we want the new statistics # AC_ARG_ENABLE(newstats, - [ --enable-newstats use the new statistics]) + [ --enable-newstats use the new statistics]) case "$enable_newstats" in yes) AC_DEFINE(NEWSTATS, 1, [Use the new XML schema for statistics]) @@ -479,6 +480,25 @@ yes) esac # +# check if we want DNS RRL +# +AC_ARG_ENABLE(rrl, + [ --enable-rrl use DNS Response Rate Limiting]) +case "$enable_rrl" in +yes) + AC_DEFINE(USE_RRL, 1, [Enable DNS Response Rate Limiting]) + RRLLINKOBJS='${RRLOBJS}' + RRLLINKSRCS='${RRLSRCS}' + ;; +*) + RRLLINKOBJS="" + RRLLINKSRCS="" + ;; +esac +AC_SUBST(RRLLINKOBJS) +AC_SUBST(RRLLINKSRCS) + +# # check if we have kqueue # AC_ARG_ENABLE(kqueue, @@ -3690,6 +3710,7 @@ AC_CONFIG_FILES([ bin/tests/system/gost/prereq.sh bin/tests/system/lwresd/Makefile bin/tests/system/rpz/Makefile + bin/tests/system/rrl/Makefile bin/tests/system/rsabigexponent/Makefile bin/tests/system/tkey/Makefile bin/tests/system/tsiggss/Makefile |