summaryrefslogtreecommitdiff
path: root/package/linknx
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2016-08-18 23:50:19 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-08-19 11:34:20 +0200
commit39812f5dfd09c1f48b7b2f403235debf69ced786 (patch)
tree60a687047cead2c5e7d79ec020a40c460c321616 /package/linknx
parenteef86594b7f255ccf422d0e12e827f625a509231 (diff)
package/linknx: drop a musl-compatibility patch
We now always have a sys/cdefs.h, so we can drop this patch. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/linknx')
-rw-r--r--package/linknx/0002-musl-cdefs.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/package/linknx/0002-musl-cdefs.patch b/package/linknx/0002-musl-cdefs.patch
deleted file mode 100644
index 59e28ca70..000000000
--- a/package/linknx/0002-musl-cdefs.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Do not use the non-standard <sys/cdefs.h> header
-
-<sys/cdefs.h> is glibc-specific, and should be used only internally by
-glibc, not by external libraries/programs. It is not available in all
-standard C libraries.
-
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
-(Patch sent upstream: https://sourceforge.net/p/linknx/patches/21/)
-
-diff -uNr linknx-0.0.1.32.org/include/eibclient.h linknx-0.0.1.32/include/eibclient.h
---- linknx-0.0.1.32.org/include/eibclient.h 2007-10-11 01:55:33.000000000 +0200
-+++ linknx-0.0.1.32/include/eibclient.h 2016-01-23 23:21:17.315006629 +0100
-@@ -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,8 @@
- */
- int EIB_LoadImage_async (EIBConnection * con, const uint8_t * image, int len);
-
--__END_DECLS
-+#ifdef __cplusplus
-+}
-+#endif
-+
- #endif