aboutsummaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2020-06-27 12:44:31 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2020-06-27 12:44:31 +0000
commit26c48fcca5568d7cba9ea71de2c07710425c1a3d (patch)
treedbca9fe5f799b83d34e5df5f9b839d6702dad6d2 /sysutils
parent312702348d1ee398e1738aa7c4bf3f34408421de (diff)
downloadports-26c48fcca5568d7cba9ea71de2c07710425c1a3d.tar.gz
ports-26c48fcca5568d7cba9ea71de2c07710425c1a3d.zip
sysutils/u-boot-tools: Unbreak on <13
rsa tools needs malloc.h, remove this include for now, a patch will be sent upstream. While here pet portlint.
Notes
Notes: svn path=/head/; revision=540596
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/u-boot-tools/Makefile1
-rw-r--r--sysutils/u-boot-tools/files/patch-lib_rsa_rsa-sign.c10
2 files changed, 10 insertions, 1 deletions
diff --git a/sysutils/u-boot-tools/Makefile b/sysutils/u-boot-tools/Makefile
index bac543d7e1b0..f3b06aa3e53e 100644
--- a/sysutils/u-boot-tools/Makefile
+++ b/sysutils/u-boot-tools/Makefile
@@ -13,7 +13,6 @@ COMMENT= U-boot related tools
LICENSE= GPLv2
BROKEN_powerpc64= fails to build: include/config_distro_bootcmd.h:279:3: sandbox EFI support is only supported on ARM and x86
-
BROKEN_SSL= libressl
BROKEN_SSL_REASON_libressl= not supported by the upstream
diff --git a/sysutils/u-boot-tools/files/patch-lib_rsa_rsa-sign.c b/sysutils/u-boot-tools/files/patch-lib_rsa_rsa-sign.c
new file mode 100644
index 000000000000..bb7fc0bb8dd8
--- /dev/null
+++ b/sysutils/u-boot-tools/files/patch-lib_rsa_rsa-sign.c
@@ -0,0 +1,10 @@
+--- lib/rsa/rsa-sign.c.orig 2020-06-27 12:26:29 UTC
++++ lib/rsa/rsa-sign.c
+@@ -4,7 +4,6 @@
+ */
+
+ #include "mkimage.h"
+-#include <malloc.h>
+ #include <stdio.h>
+ #include <string.h>
+ #include <image.h>