mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-31 19:00:50 +08:00
* aclocal/bspopts.m4: Use AS_HELP_STRING. * aclocal/bsp-configure.m4: Require autoconf-2.59. Use AC_CONFIG_HEADERS. * aclocal/check-custom-bsp.m4: Add bspkit-support. * aclocal/enable-rtemsbsp.m4: Use AS_HELP_STRING.
16 lines
452 B
Plaintext
16 lines
452 B
Plaintext
dnl $Id$
|
|
|
|
dnl Override the set of BSPs to be built.
|
|
dnl used by the toplevel configure script
|
|
dnl RTEMS_ENABLE_RTEMSBSP(rtems_bsp_list)
|
|
AC_DEFUN([RTEMS_ENABLE_RTEMSBSP],
|
|
[
|
|
AC_BEFORE([$0], [RTEMS_ENV_RTEMSBSP])
|
|
AC_ARG_ENABLE(rtemsbsp,
|
|
[AS_HELP_STRING(--enable-rtemsbsp="bsp1 bsp2 ..",BSPs to include in build)],
|
|
[case "${enableval}" in
|
|
yes|no) AC_MSG_ERROR([missing argument to --enable-rtemsbsp="bsp1 bsp2"]);;
|
|
*) $1=$enableval;;
|
|
esac],[$1=""])
|
|
])
|