diff options
-rw-r--r-- | configure.ac | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 4be468e..bf8085f 100644 --- a/configure.ac +++ b/configure.ac @@ -36,8 +36,8 @@ dnl Nate Nielsen <nielsen@memberwebs.com> dnl # Process this file with autoconf to produce a configure script. -AC_INIT(jailutils, 0.5.4, nielsen@memberwebs.com) -AM_INIT_AUTOMAKE(jailutils, 0.5.4) +AC_INIT(jailutils, 0.6, nielsen@memberwebs.com) +AM_INIT_AUTOMAKE(jailutils, 0.6) AC_CONFIG_SRCDIR([src/killjail.c]) AM_CONFIG_HEADER([config.h]) @@ -93,3 +93,8 @@ AC_SUBST([SRC_SUB]) AC_CONFIG_FILES([Makefile src/Makefile srcx/Makefile]) AC_OUTPUT +if test "$JAIL_ATTACH" = "yes"; then + echo "Your version of FreeBSD (5.1+) supports the new utilities." +else + echo "Your version of FreeBSD (4.0 - 5.0) only supports the old utilities" +fi |