1
2
3
4
5
6
7
8
9
|
AC_INIT(packetbl, 0.6-beta2)
AC_ARG_WITH(firedns,
AC_HELP_STRING([--with-firedns], [If enabled, firedns is used for the name resolution]),
[ac_cv_use_firedns=yes], [ac_cv_use_firedns=no])
AC_ARG_WITH(cache,
AC_HELP_STRING([--with-cache], [If enabled, a caching mechanism is used.]),
|
|
|
1
2
3
4
5
6
7
8
9
|
AC_INIT(packetbl, 0.6-beta3)
AC_ARG_WITH(firedns,
AC_HELP_STRING([--with-firedns], [If enabled, firedns is used for the name resolution]),
[ac_cv_use_firedns=yes], [ac_cv_use_firedns=no])
AC_ARG_WITH(cache,
AC_HELP_STRING([--with-cache], [If enabled, a caching mechanism is used.]),
|