From af76685638d5421eeaa54fbe96387479a9ba5bc6 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 10 Aug 2020 13:10:11 -0700 Subject: [PATCH] micropython: fix compilation without sys/cdefs sys/cdefs.h is not provided by musl. micropython also includes its own copy. Signed-off-by: Rosen Penev --- lang/python/micropython/Makefile | 2 +- .../micropython/patches/010-cdefs.patch | 64 +++++++++++++++++++ 2 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 lang/python/micropython/patches/010-cdefs.patch diff --git a/lang/python/micropython/Makefile b/lang/python/micropython/Makefile index 932ab9471..b4ee76ecc 100644 --- a/lang/python/micropython/Makefile +++ b/lang/python/micropython/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=micropython PKG_VERSION:=1.9.4 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/micropython/micropython/releases/download/v$(PKG_VERSION) diff --git a/lang/python/micropython/patches/010-cdefs.patch b/lang/python/micropython/patches/010-cdefs.patch new file mode 100644 index 000000000..897c880b5 --- /dev/null +++ b/lang/python/micropython/patches/010-cdefs.patch @@ -0,0 +1,64 @@ +--- a/lib/berkeley-db-1.xx/PORT/bsd.4.4/include/db.h ++++ b/lib/berkeley-db-1.xx/PORT/bsd.4.4/include/db.h +@@ -37,7 +37,7 @@ + #define _DB_H_ + + #include +-#include ++#include "cdefs.h" + + #include + +--- a/lib/berkeley-db-1.xx/PORT/clib/memmove.c ++++ b/lib/berkeley-db-1.xx/PORT/clib/memmove.c +@@ -38,7 +38,7 @@ + static char sccsid[] = "@(#)bcopy.c 8.1 (Berkeley) 6/4/93"; + #endif /* LIBC_SCCS and not lint */ + +-#include ++#include "cdefs.h" + #include + + /* +--- a/lib/berkeley-db-1.xx/PORT/clib/snprintf.c ++++ b/lib/berkeley-db-1.xx/PORT/clib/snprintf.c +@@ -1,5 +1,5 @@ + #include +-#include ++#include "cdefs.h" + + #include + +--- a/lib/berkeley-db-1.xx/PORT/hpux.9.01/local/hp_siglist.c ++++ b/lib/berkeley-db-1.xx/PORT/hpux.9.01/local/hp_siglist.c +@@ -2,7 +2,7 @@ + * Derived from: + * static char sccsid[] = "@(#)siglist.c 8.1 (Berkeley) 6/4/93"; + */ +-#include ++#include "cdefs.h" + + #include + +--- a/lib/berkeley-db-1.xx/PORT/ultrix.4.2/include/db.h ++++ b/lib/berkeley-db-1.xx/PORT/ultrix.4.2/include/db.h +@@ -37,7 +37,7 @@ + #define _DB_H_ + + #include +-#include ++#include "cdefs.h" + + #include + +--- a/lib/berkeley-db-1.xx/include/db.h ++++ b/lib/berkeley-db-1.xx/include/db.h +@@ -37,7 +37,7 @@ + #define _DB_H_ + + #include +-#include ++#include "cdefs.h" + + #include +