From cab25d525adedcb91cdcf4b8928ce625ee4dd1de Mon Sep 17 00:00:00 2001 From: GetAway Date: Sun, 10 Nov 2024 13:31:04 +0100 Subject: [PATCH] libarmbox: fix warning type of PlaybackHandler does not match original declaration Set _FILE_OFFSET_BITS=64 in Makefile for consistent 64-bit off_t definition Origin commit data ------------------ Branch: master Commit: https://github.com/neutrino-images/ni-libstb-hal/commit/f30aac8d50e557fe14f5a2bce2ff770814bfab1c Author: GetAway Date: 2024-11-10 (Sun, 10 Nov 2024) ------------------ This commit was generated by Migit --- libarmbox/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libarmbox/Makefile.am b/libarmbox/Makefile.am index 0bc7ec6..6e2e341 100644 --- a/libarmbox/Makefile.am +++ b/libarmbox/Makefile.am @@ -1,6 +1,6 @@ noinst_LTLIBRARIES = libarmbox.la -AM_CPPFLAGS = -D__STDC_FORMAT_MACROS -D__STDC_CONSTANT_MACROS +AM_CPPFLAGS = -D__STDC_FORMAT_MACROS -D__STDC_CONSTANT_MACROS -D_FILE_OFFSET_BITS=64 AM_CPPFLAGS += \ -I$(top_srcdir)/common \ -I$(top_srcdir)/include \