forked from Imagelibrary/rtems
2007-09-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, configure.ac: Do not build networking drivers if networking is disabled.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2007-09-11 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||||
|
|
||||||
|
* Makefile.am, configure.ac: Do not build networking drivers if
|
||||||
|
networking is disabled.
|
||||||
|
|
||||||
2007-09-06 Joel Sherrill <joel.sherrill@oarcorp.com>
|
2007-09-06 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* mpc6xx/mmu/pte121.c: Fix warning.
|
* mpc6xx/mmu/pte121.c: Fix warning.
|
||||||
|
|||||||
@@ -331,13 +331,15 @@ if mpc83xx
|
|||||||
include_mpc83xxdir = $(includedir)/mpc83xx
|
include_mpc83xxdir = $(includedir)/mpc83xx
|
||||||
include_mpc83xx_HEADERS = mpc83xx/include/mpc83xx.h
|
include_mpc83xx_HEADERS = mpc83xx/include/mpc83xx.h
|
||||||
include_mpc83xx_HEADERS += mpc83xx/network/tsec.h
|
include_mpc83xx_HEADERS += mpc83xx/network/tsec.h
|
||||||
|
|
||||||
## mpc83xx/network
|
## mpc83xx/network
|
||||||
|
if HAS_NETWORKING
|
||||||
noinst_PROGRAMS += mpc83xx/tsec.rel
|
noinst_PROGRAMS += mpc83xx/tsec.rel
|
||||||
mpc83xx_tsec_rel_SOURCES = mpc83xx/network/tsec.c
|
mpc83xx_tsec_rel_SOURCES = mpc83xx/network/tsec.c
|
||||||
mpc83xx_tsec_rel_CPPFLAGS = $(AM_CPPFLAGS)
|
mpc83xx_tsec_rel_CPPFLAGS = $(AM_CPPFLAGS)
|
||||||
mpc83xx_tsec_rel_CPPFLAGS += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ -D__BSD_VISIBLE
|
mpc83xx_tsec_rel_CPPFLAGS += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ -D__BSD_VISIBLE
|
||||||
mpc83xx_tsec_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
mpc83xx_tsec_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
|
||||||
|
endif
|
||||||
## mpc83xx/i2c
|
## mpc83xx/i2c
|
||||||
include_mpc83xx_HEADERS += mpc83xx/i2c/mpc83xx_i2cdrv.h
|
include_mpc83xx_HEADERS += mpc83xx/i2c/mpc83xx_i2cdrv.h
|
||||||
noinst_PROGRAMS += mpc83xx/i2c.rel
|
noinst_PROGRAMS += mpc83xx/i2c.rel
|
||||||
|
|||||||
@@ -77,6 +77,9 @@ AM_CONDITIONAL(ppc403,[test "$RTEMS_CPU_MODEL" = "ppc403" \
|
|||||||
|| test "$RTEMS_CPU_MODEL" = "ppc405"])
|
|| test "$RTEMS_CPU_MODEL" = "ppc405"])
|
||||||
AM_CONDITIONAL(ppc405, test "$RTEMS_CPU_MODEL" = "ppc405")
|
AM_CONDITIONAL(ppc405, test "$RTEMS_CPU_MODEL" = "ppc405")
|
||||||
|
|
||||||
|
RTEMS_CHECK_NETWORKING
|
||||||
|
AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
|
||||||
|
|
||||||
RTEMS_AMPOLISH3
|
RTEMS_AMPOLISH3
|
||||||
|
|
||||||
# Explicitly list all Makefiles here
|
# Explicitly list all Makefiles here
|
||||||
|
|||||||
Reference in New Issue
Block a user