]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/commitdiff
libdnet: Update to version 1.14
authorAdolf Belka <adolf.belka@ipfire.org>
Mon, 28 Feb 2022 21:10:29 +0000 (22:10 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 10 Mar 2022 10:39:49 +0000 (10:39 +0000)
- 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>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/rootfiles/common/libdnet
lfs/libdnet

index 07917ed3ded44a4d6fa02029c62a666b103dfa67..26288de23a602c8f2aa77a7b3b2aed48dbaa4e07 100644 (file)
@@ -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
index 2857013689c2b1c9e08095ce6d9a490f37140dad..abee9a1364e2f281c96a3dc935f240af3f7aa65a 100644 (file)
@@ -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)