From 7548c235bdac9972690ac6e4e0511b9fdce6cdfd Mon Sep 17 00:00:00 2001 From: ArthurSonzogni Date: Fri, 10 Apr 2020 23:23:13 +0200 Subject: Add missing OpenAL-Soft fails to compile on some GCC version: https://travis-ci.com/github/ArthurSonzogni/smk/jobs/318304162 It has regressed likely after: https://github.com/kcat/openal-soft/commit/c83609277bed4be4ef40ed306bf2c57fefa19519 va_start is defined in: - - The repository is using it from: - al/error.cpp - al/filter.cpp - alc/alu.cpp - alc/helpers.cpp - common/alexcpt.cpp - utils/makemhr/loaddef.cpp - utils/openal-info.c This patch is adding its definition in the files missing it: - common/alexcpt.cpp - utils/makemhr/loaddef.cpp - utils/openal-info.c Bug: https://travis-ci.com/github/ArthurSonzogni/smk/jobs/318304162 --- utils/makemhr/loaddef.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'utils/makemhr') diff --git a/utils/makemhr/loaddef.cpp b/utils/makemhr/loaddef.cpp index c61c6f6b..d325eda1 100644 --- a/utils/makemhr/loaddef.cpp +++ b/utils/makemhr/loaddef.cpp @@ -26,13 +26,14 @@ #include #include #include -#include #include #include #include +#include #include #include #include +#include #include #include "alfstream.h" -- cgit v1.2.3