summaryrefslogtreecommitdiffstats
path: root/cpukit/aclocal/enable-inlines.m4
blob: 2c79538dce43379361c17fd7a17b0d42273e5f73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
dnl $Id$

AC_DEFUN([RTEMS_ENABLE_INLINES],
[AC_ARG_ENABLE(rtems-inlines,
AS_HELP_STRING(--enable-rtems-inlines,enable RTEMS inline functions (default:enabled, disable to use macros)),
[case "${enableval}" in
  yes) enable_rtems_inlines=yes ;;
  no) enable_rtems_inlines=no ;;
  *)  AC_MSG_ERROR(bad value ${enableval} for enable-rtems-inlines option) ;;
esac],[enable_rtems_inlines=yes])
])