build UML stuff only on --enable-uml

This commit is contained in:
Martin Willi
2007-08-08 14:24:25 +00:00
parent f2d6355eaa
commit fd4ded974d
2 changed files with 18 additions and 1 deletions
+12
View File
@@ -219,6 +219,18 @@ AC_ARG_ENABLE(
)
AM_CONDITIONAL(USE_VENDORID, test x$vendor_id = xtrue)
AC_ARG_ENABLE(
[uml],
AS_HELP_STRING([--enable-uml],[build the UML test framework (default is NO).]),
[if test x$enableval = xyes; then
uml=true
else
uml=false
fi],
uml=true
)
AM_CONDITIONAL(USE_UML, test x$uml = xtrue)
dnl =========================
dnl check required programs
dnl =========================