0001-libuuu-sdps-fix-gcc15-compile-errors.patch 836 B

123456789101112131415161718192021222324252627282930313233
  1. From 142448e55386b88adf5b1d7e6206df1ca6784708 Mon Sep 17 00:00:00 2001
  2. From: Bruno Thomsen <bruno.thomsen@gmail.com>
  3. Date: Sat, 1 Mar 2025 14:32:41 +0100
  4. Subject: [PATCH] libuuu/sdps: fix gcc15 compile errors
  5. This gcc 15 error happens on Fedora 42.
  6. error: uint32_t does not name a type
  7. error: uint64_t does not name a type
  8. Signed-off-by: Bruno Thomsen <bruno.thomsen@gmail.com>
  9. Upstream: https://github.com/nxp-imx/mfgtools/commit/142448e55386b88adf5b1d7e6206df1ca6784708
  10. Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
  11. ---
  12. libuuu/sdps.h | 1 +
  13. 1 file changed, 1 insertion(+)
  14. diff --git a/libuuu/sdps.h b/libuuu/sdps.h
  15. index b82f9d71c981..667a477ee48f 100644
  16. --- a/libuuu/sdps.h
  17. +++ b/libuuu/sdps.h
  18. @@ -30,6 +30,7 @@
  19. */
  20. #include "cmd.h"
  21. +#include <cstdint>
  22. class SDPSCmd : public CmdBase
  23. {
  24. --
  25. 2.43.0