90e6999a07
- Update to the stuff in master to fix the issue at: https://bodhi.fedoraproject.org/updates/FEDORA-2020-050993b283#comment-1208958 - Update to 3.0.11 (via patches generated from git) - Plus newer upstream fixes (also via patches generated from git) - Fix shell exit failures in make - Fix .reloc section generation - Fix CHAR8 definition - Fix "make DESTDIR=..." - Change the installed .a/.o layout - Provide makefiles for consumers to use. - Make the -devel noarch since it's just headers. - Add a bunch of compatibility symlinks for our older packages. These will go away once we've migrated everything using them in fedora to use the newer make system... Signed-off-by: Peter Jones <pjones@redhat.com>
34 lines
780 B
Diff
34 lines
780 B
Diff
From 6335e5c697c57d8b5854b8202de3733bcb151ca6 Mon Sep 17 00:00:00 2001
|
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
Date: Fri, 18 Jan 2019 22:05:37 +0100
|
|
Subject: [PATCH 04/46] efilink: fix build with gcc 4.8
|
|
|
|
intptr_t is undefined without an include on stdint.h
|
|
|
|
Fixes:
|
|
- http://autobuild.buildroot.org/results/a0ca37b5ed27af445344e3ac49dc87bb17512c50
|
|
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
---
|
|
inc/efilink.h | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/inc/efilink.h b/inc/efilink.h
|
|
index cc5aa2dc57b..b69a6fd5cf5 100644
|
|
--- a/inc/efilink.h
|
|
+++ b/inc/efilink.h
|
|
@@ -1,6 +1,10 @@
|
|
#ifndef _EFI_LINK_H
|
|
#define _EFI_LINK_H
|
|
|
|
+#if defined(__GNUC__)
|
|
+#include <stdint.h>
|
|
+#endif
|
|
+
|
|
/*++
|
|
|
|
Copyright (c) 1998 Intel Corporation
|
|
--
|
|
2.24.1
|
|
|