1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| dnl
| dnl NOMMU/Linux (aka uClinux) checks
| dnl
|
| dnl
| dnl LTP_CHECK_NOMMU_LINUX
| dnl ---------------------
| dnl
| AC_DEFUN([LTP_CHECK_NOMMU_LINUX],
| [dnl
| AC_CHECK_FUNCS([fork daemon vfork])
| UCLINUX=0
| if test "x$ac_cv_func_fork" = "xno" ; then
| UCLINUX=1
| AC_DEFINE([UCLINUX], 1, [Target is running Linux w/out an MMU])
| fi
| AC_SUBST(UCLINUX)
| ])
|
|