Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Apr 2020 11:05:38 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r533121 - head/sysutils/u-boot-master/files
Message-ID:  <202004271105.03RB5ckp095949@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004271105.03RB5ckp095949>