source: rtems/c/src/aclocal/check-networking.m4 @ 0f77281

4.115
Last change on this file since 0f77281 was 65c6425, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 17:24:46

Remove CVS Id Strings (manual edits after script)

These modifications were required by hand after running the script.
In some cases, the file names did not match patterns. In others,
the format of the file did not match any common patterns.

  • Property mode set to 100644
File size: 673 bytes
Line 
1AC_DEFUN([RTEMS_CHECK_NETWORKING],
2[dnl
3AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])dnl
4AC_REQUIRE([RTEMS_ENABLE_NETWORKING])dnl
5
6AC_CACHE_CHECK([whether BSP supports networking],
7  rtems_cv_HAS_NETWORKING,
8  [dnl
9    case "$RTEMS_CPU" in
10    avr*|m32c*)       # do not have address space to hold BSD TCP/IP stack
11      rtems_cv_HAS_NETWORKING="no"
12      ;;
13    *)
14      if test "${RTEMS_HAS_NETWORKING}" = "yes"; then
15        rtems_cv_HAS_NETWORKING="yes";
16      else
17        rtems_cv_HAS_NETWORKING="disabled";
18      fi
19      ;;
20    esac])
21if test "$rtems_cv_HAS_NETWORKING" = "yes"; then
22  HAS_NETWORKING="yes";
23else
24  HAS_NETWORKING="no";
25fi
26AC_SUBST(HAS_NETWORKING)dnl
27])
Note: See TracBrowser for help on using the repository browser.