mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 06:08:20 +00:00
2007-09-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am, include/bsp.h: Do not include 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, include/bsp.h: Do not include networking
|
||||
drivers if networking is disabled.
|
||||
|
||||
2007-09-10 Joel Sherrill <joel.sherrill@OARcorp.com>
|
||||
|
||||
* network/xiltemac.c: Remove duplicate prototype.
|
||||
|
||||
@@ -12,7 +12,9 @@ dist_project_lib_DATA = bsp_specs
|
||||
include_HEADERS = include/bsp.h
|
||||
include_HEADERS += include/tm27.h
|
||||
include_HEADERS += include/xparameters_dflt.h
|
||||
if HAS_NETWORKING
|
||||
include_HEADERS += network/xiltemac.h
|
||||
endif
|
||||
|
||||
nodist_include_HEADERS = include/bspopts.h
|
||||
DISTCLEANFILES = include/bspopts.h
|
||||
@@ -82,7 +84,10 @@ noinst_LIBRARIES = libbsp.a
|
||||
libbsp_a_SOURCES =
|
||||
|
||||
libbsp_a_LIBADD = startup.rel dlentry.rel bspconsole.rel opbintctrl.rel \
|
||||
vectors.rel irq.rel network.rel
|
||||
vectors.rel irq.rel
|
||||
if HAS_NETWORKING
|
||||
libbsp_a_LIBADD += network.rel
|
||||
endif
|
||||
|
||||
libbsp_a_LIBADD += ../../../libcpu/@RTEMS_CPU@/@exceptions@/rtems-cpu.rel \
|
||||
../../../libcpu/@RTEMS_CPU@/@exceptions@/raw_exception.rel \
|
||||
|
||||
@@ -68,7 +68,6 @@ extern "C" {
|
||||
#include <rtems/clockdrv.h>
|
||||
#include <rtems/console.h>
|
||||
#include <rtems/iosupp.h>
|
||||
#include <rtems/rtems_bsdnet.h>
|
||||
#include <bsp/irq.h>
|
||||
#include <bsp/vectors.h>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user