summaryrefslogtreecommitdiffstats
path: root/cpukit/aclocal/check-networking.m4
blob: 82fc237076aa7ae720fd034b99d26af42cd2a326 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
dnl $Id$
dnl
AC_DEFUN([RTEMS_CHECK_NETWORKING],
[dnl
AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])dnl
AC_REQUIRE([RTEMS_ENABLE_NETWORKING])dnl

AC_CACHE_CHECK([whether CPU supports networking],
  rtems_cv_HAS_NETWORKING,
  [dnl
    case "$RTEMS_CPU" in
    *)
      AS_IF([test "${RTEMS_HAS_NETWORKING}" = "yes"],[
# suppress libnetworking if one these types is not available
        AS_IF([test x"$ac_cv_type_int8_t" = xyes \
          && test x"$ac_cv_type_uint8_t" = xyes \
          && test x"$ac_cv_type_int16_t" = xyes \
          && test x"$ac_cv_type_uint16_t" = xyes \
          && test x"$ac_cv_type_int32_t" = xyes \
          && test x"$ac_cv_type_uint32_t" = xyes \
          && test x"$ac_cv_type_int64_t" = xyes \
          && test x"$ac_cv_type_uint64_t" = xyes],
        [rtems_cv_HAS_NETWORKING=yes],
        [rtems_cv_HAS_NETWORKING=no])
      ],[
        rtems_cv_HAS_NETWORKING=disabled
      ])
      ;;
    esac
    ])
  ])
])