linknx: bump to new upstream 0.0.1.39
authorOthmar Truniger <[email protected]>
Wed, 23 Jul 2025 08:46:17 +0000 (10:46 +0200)
committerHannu Nyman <[email protected]>
Thu, 24 Jul 2025 15:07:01 +0000 (18:07 +0300)
Signed-off-by: Othmar Truniger <[email protected]>
net/linknx/Makefile
net/linknx/patches/010-cdefs.patch [deleted file]
net/linknx/patches/020-configure.ac.patch [deleted file]

index 8ad017c590ff1dde66e519d7f998cc68c96dcfc6..8105a91dd8dccc5585d2c988e9b2c770ed7a45f6 100644 (file)
@@ -8,12 +8,12 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=linknx
-PKG_VERSION:=0.0.1.38
-PKG_RELEASE:=3
+PKG_VERSION:=0.0.1.39
+PKG_RELEASE:=1
 
 PKG_SOURCE:=$(PKG_NAME)-${PKG_VERSION}.tar.gz
 PKG_SOURCE_URL:=https://codeload.github.com/linknx/linknx/tar.gz/$(PKG_VERSION)?
-PKG_HASH:=00c53776c2e871295459ede922402d8ad0208367d2364781fdb92ddafad94d3d
+PKG_HASH:=d07199875c6e3f90871308989dd7d4240b67ce971d5908cb39592690341f8d0a
 
 PKG_MAINTAINER:=Othmar Truniger <[email protected]>
 PKG_LICENSE:=GPL-2.0-or-later
diff --git a/net/linknx/patches/010-cdefs.patch b/net/linknx/patches/010-cdefs.patch
deleted file mode 100644 (file)
index aaa9f5f..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
---- a/include/eibclient.h
-+++ b/include/eibclient.h
-@@ -27,11 +27,12 @@
- #ifndef EIBCLIENT_H
- #define EIBCLIENT_H
--#include "sys/cdefs.h"
- #include "stdint.h"
- #include <pthsem.h>
--__BEGIN_DECLS;
-+#ifdef __cplusplus
-+extern "C" {
-+#endif
- #include "eibloadresult.h"
-@@ -705,5 +706,7 @@ BCU_LOAD_RESULT EIB_LoadImage (EIBConnec
-  */
- int EIB_LoadImage_async (EIBConnection * con, const uint8_t * image, int len);
--__END_DECLS
-+#ifdef __cplusplus
-+}
-+#endif
- #endif
diff --git a/net/linknx/patches/020-configure.ac.patch b/net/linknx/patches/020-configure.ac.patch
deleted file mode 100644 (file)
index c78b873..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -90,8 +90,24 @@ if test x"$enable_smtp" != xno ; then
-       )
- fi
--AC_MSG_CHECKING(whether to use libesmtp)
-+AC_MSG_CHECKING(whether to use libesmtp >= v1.1.x)
- if test x"$enable_smtp" != xno ; then
-+      PKG_CHECK_MODULES(ESMTP, libesmtp-1.0 >= 1.1.0, [
-+              AC_DEFINE([HAVE_LIBESMTP], [1], [Build with libesmtp email support.])
-+              AC_SUBST(ESMTP_CFLAGS)
-+              AC_SUBST(ESMTP_LIBS)
-+              if test x"`echo $ESMTP_LIBS | grep pthread`" != x ; then
-+                      AC_MSG_WARN([libesmtp is compiled with pthread support. This can conflict with pth. If you observe segmentation faults at startup, try to recompile with libesmtp support disabled])
-+                      AC_DEFINE([HAVE_LIBESMTP_PTHREAD], [1], [libesmtp is compiled with pthread support.])
-+              fi
-+              found_esmtp=yes
-+      ],[
-+              AC_MSG_RESULT([no])
-+      ])
-+fi
-+if test x"$found_esmtp" = x ; then
-+AC_MSG_CHECKING(whether to use libesmtp v1.0.x)
-+if test x"$enable_smtp" != xno && test x`which libesmtp-config` != x ; then
-       ESMTP_CFLAGS="`libesmtp-config --cflags`"
-       ESMTP_LIBS="`libesmtp-config --libs`"
-       if test x"`libesmtp-config --libs | grep pthread`" != x ; then
-@@ -110,6 +126,7 @@ if test x"$enable_smtp" != xno ; then
- else
-       AC_MSG_RESULT([no])
- fi
-+fi
- AM_CONDITIONAL([USE_B64], [test x"$enable_smtp" != xno])