source: rtems/c/src/libnetworking/configure.in @ d0950ad

4.104.114.84.95
Last change on this file since d0950ad was d0950ad, checked in by Joel Sherrill <joel.sherrill@…>, on 11/30/99 at 22:12:50

Added port of ppp-2.3.5 from Tomasz Domin <dot@…> of ComArch? SA.
Tomasz only tested this on the mpc823.

The official site for the original source for this PPP implementation is:

ftp://cs.anu.edu.au/pub/software/ppp

NOTE: As of 11/30/1999, the current version of this source is 2.3.10.

  • Property mode set to 100644
File size: 1021 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(arpa)
7RTEMS_TOP(../../..)
8AC_CONFIG_AUX_DIR(../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE(rtems-c-src-lib-libnetworking,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_ENABLE_NETWORKING
16RTEMS_ENABLE_LIBCDIR
17RTEMS_ENABLE_BARE
18RTEMS_ENABLE_POSIX
19
20RTEMS_ENV_RTEMSBSP
21
22RTEMS_CHECK_CPU
23RTEMS_CANONICAL_HOST
24
25RTEMS_PROJECT_ROOT
26
27dnl check target cc
28RTEMS_PROG_CC_FOR_TARGET
29RTEMS_CANONICALIZE_TOOLS
30
31RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
32RTEMS_CHECK_NETWORKING(RTEMS_BSP)
33RTEMS_CHECK_POSIX_API(RTEMS_BSP)
34
35AM_CONDITIONAL(HAS_POSIX,test "$HAS_POSIX_API" = "yes")
36
37if test "$HAS_POSIX_API" = "yes"; then
38  cfg_subdirs="posix"
39fi
40AC_CONFIG_SUBDIRS($cfg_subdirs)
41
42# try to explicitly list a Makefile here
43AC_OUTPUT(
44Makefile
45include/Makefile
46kern/Makefile
47lib/Makefile
48libc/Makefile
49net/Makefile
50netinet/Makefile
51nfs/Makefile
52pppd/Makefile
53rtems/Makefile
54rtems_servers/Makefile
55rtems_webserver/Makefile
56wrapup/Makefile
57)
Note: See TracBrowser for help on using the repository browser.