From ea414f56daffe72c2b535d1b3a1e40d069987541 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Mon, 21 Nov 2016 21:50:16 -0500 Subject: [PATCH] removed old dependencies which are no longer required --- Dockerfile | 4 +--- doc/Install.md | 6 ++---- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 54ec74dc8..44867baa2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,10 +27,8 @@ RUN dnf -y update && \ openssl-devel \ libconfig-devel \ libnl3-devel \ - pciutils-devel \ libcurl-devel \ - jansson-devel \ - libuuid-devel + jansson-devel # Tools for documentation RUN dnf -y update && \ diff --git a/doc/Install.md b/doc/Install.md index 291f85be0..204519322 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -9,19 +9,17 @@ Install libraries and developement headers for: - [libconfig](http://www.hyperrealm.com/libconfig/) for parsing the configuration file. - [libnl3](http://www.infradead.org/~tgr/libnl/) for the network communication & emulation support of the `socket` node-type. - libOpal{AsyncApi,Core,Utils} for running VILLASnode as an Asynchronous process inside your RT-LAB model. - - [pciuitils](http://mj.ucw.cz/sw/pciutils/) for enumerating PCI devices. Required by `gtfpga` node-type. - [libjansson](http://www.digip.org/jansson/) JSON parser for `websocket` and `ngsi` node-types. - [libwebsockets](http://libwebsockets.org) for the `websocket` node-type. - [libcurl](https://curl.haxx.se/libcurl/) for HTTP REST requests by the `ngsi` node-type. - - [libuuid](http://sourceforge.net/projects/libuuid/) for generating random IDs. Required by the `ngsi` node-type. Use the following command to install the dependencies under Debian-based distributions: - $ sudo apt-get install build-essential pkg-config wget tar cmake doxygen dia graphviz libconfig-dev libnl-3-dev libnl-route-3-dev libpci-deb libjansson-dev libcurl4-openssl-dev uuid-dev + $ sudo apt-get install build-essential pkg-config wget tar cmake doxygen dia graphviz libconfig-dev libnl-3-dev libnl-route-3-dev libjansson-dev libcurl4-openssl-dev or the following line for Fedora / CentOS / Redhat systems: - $ sudo yum install gcc pkgconfig make wget tar cmake openssl-devel doxygen dia graphviz libconfig-devel libnl3-devel pciutils-devel libcurl-devel jansson-devel libuuid-devel + $ sudo yum install gcc pkgconfig make wget tar cmake openssl-devel doxygen dia graphviz libconfig-devel libnl3-devel libcurl-devel jansson-devel ### Compilation