diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/ibrdtn-tools/Makefile | 3 | ||||
-rw-r--r-- | net/ibrdtnd/Makefile | 3 | ||||
-rw-r--r-- | net/ibrdtnd/patches/030-openssl-deprecated.patch | 20 |
3 files changed, 24 insertions, 2 deletions
diff --git a/net/ibrdtn-tools/Makefile b/net/ibrdtn-tools/Makefile index 3ef388136..6112c993d 100644 --- a/net/ibrdtn-tools/Makefile +++ b/net/ibrdtn-tools/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ibrdtn-tools PKG_VERSION:=1.0.1 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases @@ -19,6 +19,7 @@ PKG_LICENSE:=Apache-2.0 PKG_INSTALL:=1 +include $(INCLUDE_DIR)/uclibc++.mk include $(INCLUDE_DIR)/package.mk define Package/ibrdtn-tools diff --git a/net/ibrdtnd/Makefile b/net/ibrdtnd/Makefile index 0a2a5ee81..d83bc2cc1 100644 --- a/net/ibrdtnd/Makefile +++ b/net/ibrdtnd/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ibrdtnd PKG_VERSION:=1.0.1 -PKG_RELEASE:=3 +PKG_RELEASE:=4 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.ibr.cs.tu-bs.de/projects/ibr-dtn/releases @@ -20,6 +20,7 @@ PKG_LICENSE:=Apache-2.0 PKG_FIXUP:=autoreconf PKG_INSTALL:=1 +include $(INCLUDE_DIR)/uclibc++.mk include $(INCLUDE_DIR)/package.mk define Package/ibrdtnd diff --git a/net/ibrdtnd/patches/030-openssl-deprecated.patch b/net/ibrdtnd/patches/030-openssl-deprecated.patch new file mode 100644 index 000000000..a793da8ad --- /dev/null +++ b/net/ibrdtnd/patches/030-openssl-deprecated.patch @@ -0,0 +1,20 @@ +--- a/src/security/SecurityKeyManager.cpp ++++ b/src/security/SecurityKeyManager.cpp +@@ -29,6 +29,7 @@ + #include <fstream> + #include <fcntl.h> + ++#include <openssl/bn.h> + #include <openssl/pem.h> + #include <openssl/rsa.h> + #include <openssl/err.h> +--- a/src/security/exchange/DHProtocol.cpp ++++ b/src/security/exchange/DHProtocol.cpp +@@ -28,6 +28,7 @@ + #include <ibrcommon/ssl/HMacStream.h> + #include <ibrcommon/Logger.h> + ++#include <openssl/dh.h> + #include <openssl/rand.h> + #include <openssl/pem.h> + #include "openssl_compat.h" |