mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
disable broken node-types
This commit is contained in:
parent
44c3efaac7
commit
dc2f9c585f
1 changed files with 18 additions and 18 deletions
36
Makefile
36
Makefile
|
@ -54,27 +54,27 @@ endif
|
|||
|
||||
# Enable Socket node type when libnl3 is available
|
||||
ifeq ($(shell pkg-config libnl-route-3.0; echo $$?),0)
|
||||
LIB_OBJS += socket.o nl.o tc.o if.o
|
||||
LIB_OBJS += socket.o nl.o tc.o if.o msg.o
|
||||
PKGS += libnl-route-3.0
|
||||
endif
|
||||
|
||||
# Enable GTFPGA support when libpci is available
|
||||
ifeq ($(shell pkg-config libpci; echo $$?),0)
|
||||
LIB_OBJS += gtfpga.o
|
||||
PKGS += libpci
|
||||
endif
|
||||
|
||||
# Enable NGSI support
|
||||
ifeq ($(shell pkg-config libcurl jansson uuid; echo $$?),0)
|
||||
LIB_OBJS += ngsi.o
|
||||
PKGS += libcurl jansson uuid
|
||||
endif
|
||||
|
||||
# Enable WebSocket support
|
||||
ifeq ($(shell pkg-config libwebsockets jansson; echo $$?),0)
|
||||
LIB_OBJS += websocket.o
|
||||
PKGS += libwebsockets jansson
|
||||
endif
|
||||
## Enable GTFPGA support when libpci is available
|
||||
#ifeq ($(shell pkg-config libpci; echo $$?),0)
|
||||
# LIB_OBJS += gtfpga.o
|
||||
# PKGS += libpci
|
||||
#endif
|
||||
#
|
||||
## Enable NGSI support
|
||||
#ifeq ($(shell pkg-config libcurl jansson uuid; echo $$?),0)
|
||||
# LIB_OBJS += ngsi.o
|
||||
# PKGS += libcurl jansson uuid
|
||||
#endif
|
||||
#
|
||||
## Enable WebSocket support
|
||||
#ifeq ($(shell pkg-config libwebsockets jansson; echo $$?),0)
|
||||
# LIB_OBJS += websocket.o websocket-live.o websocket-http.o
|
||||
# PKGS += libwebsockets jansson
|
||||
#endif
|
||||
|
||||
# Enable OPAL-RT Asynchronous Process support (will result in 32bit binary!!!)
|
||||
ifneq (,$(wildcard $(OPALDIR)/include_target/AsyncApi.h))
|
||||
|
|
Loading…
Add table
Reference in a new issue