- Update from 1.11 (2005) to 1.14 (2020) - Update of rootfile - find-dependencies run and no problems flagged - Package was originally provided by Dug Song in source forge and with a github repository No response was received from Dug Song to requests for updates and fixes so Oliver Falk forked the repository and has been working on it and now the Dug Song repository is no longer present and the old repoistory url redirects to the new ofalk repository https://github.com/ofalk/libdnet - Issues raised in this new repository are being actively responded to - Changelog comment is Finally release 1.14 with latest fixes included.
Signed-off-by: Adolf Belka adolf.belka@ipfire.org --- config/rootfiles/common/libdnet | 8 ++++---- lfs/libdnet | 10 ++++++---- 2 files changed, 10 insertions(+), 8 deletions(-)
diff --git a/config/rootfiles/common/libdnet b/config/rootfiles/common/libdnet index 07917ed3d..26288de23 100644 --- a/config/rootfiles/common/libdnet +++ b/config/rootfiles/common/libdnet @@ -13,14 +13,14 @@ usr/bin/dnet-config #usr/include/dnet/os.h #usr/include/dnet/rand.h #usr/include/dnet/route.h +#usr/include/dnet/sctp.h #usr/include/dnet/tcp.h #usr/include/dnet/tun.h #usr/include/dnet/udp.h -usr/lib/libdnet -usr/lib/libdnet.1 -usr/lib/libdnet.1.0.1 -usr/lib/libdnet.a usr/lib/libdnet.la +#usr/lib/libdnet.so +usr/lib/libdnet.so.1 +usr/lib/libdnet.so.1.0.1 #usr/man/man3/dnet.3 #usr/man/man8/dnet.8 usr/sbin/dnet diff --git a/lfs/libdnet b/lfs/libdnet index 285701368..abee9a136 100644 --- a/lfs/libdnet +++ b/lfs/libdnet @@ -24,9 +24,9 @@
include Config
-VER = 1.11 +VER = 1.14
-THISAPP = libdnet-$(VER) +THISAPP = libdnet-libdnet-$(VER) DL_FILE = $(THISAPP).tar.gz DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) @@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 04c394ed8e1e7fc455456e79e908916d +$(DL_FILE)_MD5 = 704126bfcf9f81c631455b28d2773103
install : $(TARGET)
@@ -71,7 +71,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) $(UPDATE_AUTOMAKE) - cd $(DIR_APP) && ./configure --prefix=/usr + cd $(DIR_APP) && ./configure \ + --prefix=/usr \ + --disable-static cd $(DIR_APP) && make cd $(DIR_APP) && make install @rm -rf $(DIR_APP)