mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
* aclocal/check-multiprocessing.m4: Remove AC_SUBST(HAS_MP). Add AM_CONDITIONAL(HAS_MP). * wrapup/Makefile.am: Fix path to ../libchip/shmdr.rel. * configure.ac: Remove AM_CONDITIONAL(HAS_MP). * aclocal/enable-cxx.m4, aclocal/enable-itron.m4, aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4, aclocal/enable-posix.m4, aclocal/enable-rdbg.m4, aclocal/multilib.m4: Use AS_HELP_STRING instead of AC_HELP_STRING (Deprecated by autoconf 2.59).
16 lines
420 B
Plaintext
16 lines
420 B
Plaintext
dnl $Id$
|
|
|
|
AC_DEFUN([RTEMS_ENABLE_NETWORKING],
|
|
[
|
|
## AC_BEFORE([$0], [RTEMS_CHECK_NETWORKING])dnl
|
|
|
|
AC_ARG_ENABLE(networking,
|
|
[AS_HELP_STRING(--enable-networking,enable TCP/IP stack)],
|
|
[case "${enableval}" in
|
|
yes) RTEMS_HAS_NETWORKING=yes ;;
|
|
no) RTEMS_HAS_NETWORKING=no ;;
|
|
*) AC_MSG_ERROR(bad value ${enableval} for enable-networking option) ;;
|
|
esac],[RTEMS_HAS_NETWORKING=yes])
|
|
AC_SUBST(RTEMS_HAS_NETWORKING)dnl
|
|
])
|