svn commit: r533121 - head/sysutils/u-boot-master/files

Emmanuel Vadot manu at FreeBSD.org
Mon Apr 27 11:05:39 UTC 2020


Author: manu
Date: Mon Apr 27 11:05:38 2020
New Revision: 533121
URL: https://svnweb.freebsd.org/changeset/ports/533121

Log:
  u-boot: Fix targets that uses malloc.h
  
  Add a local patch that replace malloc.h with stdlib.h.
  As there is current discution to make this file usable again don't bother
  with upstream for now.

Added:
  head/sysutils/u-boot-master/files/patch-lib-rsa_rsa_sign.c   (contents, props changed)

Added: head/sysutils/u-boot-master/files/patch-lib-rsa_rsa_sign.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/u-boot-master/files/patch-lib-rsa_rsa_sign.c	Mon Apr 27 11:05:38 2020	(r533121)
@@ -0,0 +1,11 @@
+--- lib/rsa/rsa-sign.c.orig	2020-04-27 13:01:22.257655000 +0200
++++ lib/rsa/rsa-sign.c	2020-04-27 13:01:38.844321000 +0200
+@@ -4,7 +4,7 @@
+  */
+ 
+ #include "mkimage.h"
+-#include <malloc.h>
++#include <stdlib.h>
+ #include <stdio.h>
+ #include <string.h>
+ #include <image.h>


More information about the svn-ports-head mailing list