summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-01-26 12:20:19 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-01-26 12:20:19 +0000
commit7fe5a88c88d0445c8dd8966e437cde5e891fae1a (patch)
tree06e6082f9576bbf99f73f0da605957fc44b42650 /configure.ac
parent2011-01-24 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-7fe5a88c88d0445c8dd8966e437cde5e891fae1a.tar.bz2
2011-01-26 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Don't build tools/schedsim by default. Add --enable-schedsim (Default: disabled).
Diffstat (limited to '')
-rw-r--r--configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 7e1971ed10..f0f9c7d7ee 100644
--- a/configure.ac
+++ b/configure.ac
@@ -40,7 +40,13 @@ AC_ARG_ENABLE([docs],
RTEMS_BUILD_CONFIG_SUBDIRS([tools/build])
RTEMS_BUILD_CONFIG_SUBDIRS([tools/cpu])
+
+# FIXME: tools/schedsim has a lot of problems, don't build by default
+AC_ARG_ENABLE([schedsim],
+ [AS_HELP_STRING([--enable-schedsim],[enable building tools/schedsim (default::disabled)])])
+AS_IF([test "$enable_schedsim" = yes],[
RTEMS_BUILD_CONFIG_SUBDIRS([tools/schedsim])
+])
case $enable_tests in
yes | samples )