summaryrefslogtreecommitdiffstats
path: root/cpukit/aclocal/enable-profiling.m4
blob: b363ae28c657359fac0beb368855971595ff3a92 (plain) (blame)
1
2
3
4
5
6
7
8
9
AC_DEFUN([RTEMS_ENABLE_PROFILING],
  [AC_ARG_ENABLE(profiling,
    [AS_HELP_STRING([--enable-profiling],[enable support for profiling (default=no)])],
    [case "${enableval}" in 
      yes) RTEMS_HAS_PROFILING=yes ;;
      no) RTEMS_HAS_PROFILING=no ;;
      *) AC_MSG_ERROR(bad value ${enableval} for enable profiling option) ;;
    esac],
    [RTEMS_HAS_PROFILING=no])])