From ff5eb814c7c1c8d9d06bc2592d0ca4cde6d1059e 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 --- 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 \