Skip to content

Commit

Permalink
Remove --with-atf
Browse files Browse the repository at this point in the history
This flag was replaced by `--enable-atf` in 0.5.

Signed-off-by: Enji Cooper <ngie@FreeBSD.org>
  • Loading branch information
ngie-eign committed Dec 29, 2024
1 parent 02a2b33 commit 5e90d9f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ The following flags are specific to Lutok's `configure` script:
detection features regardless of the value of this flag. However, such
warnings are only fatal when `--enable-developer` is set to "yes".

- `--with-atf`
- `--enable-atf`
- **Possible values**: "yes", "no", "auto".
- **Default**: "auto"

Expand Down
13 changes: 6 additions & 7 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,13 @@ AC_ARG_ENABLE([atf],
AM_CONDITIONAL([WITH_ATF], [test "x$enable_atf" = "xyes"])

# ATF dependencies
if test "x$enable_atf" = "xyes"; then
ATF_CHECK_CXX([>= 0.22])
ATF_CHECK_SH([>= 0.22])
else
AC_MSG_NOTICE([ATF support disabled])
fi
m4_ifdef([ATF_CHECK_CXX],[
AS_IF([test "x$enable_atf" = "xyes"],[
ATF_CHECK_CXX([>= 0.21])
ATF_CHECK_SH([>= 0.21])
],[AC_MSG_NOTICE([ATF support disabled])])
])

ATF_ARG_WITH
KYUA_DOXYGEN
KYUA_LUA

Expand Down

0 comments on commit 5e90d9f

Please sign in to comment.