From 1f3e77d75a912b30f554d745a56f5da1e4de966e Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Tue, 3 Sep 2024 08:02:48 +0200 Subject: [PATCH] Add missing config.h includes --- common/rfb/AccessRights.cxx | 4 ++++ common/rfb/H264Decoder.cxx | 4 ++++ common/rfb/H264DecoderContext.cxx | 4 ++++ common/rfb/H264LibavDecoderContext.cxx | 3 +++ common/rfb/H264WinDecoderContext.cxx | 4 ++++ 5 files changed, 19 insertions(+) diff --git a/common/rfb/AccessRights.cxx b/common/rfb/AccessRights.cxx index 65e6ce24..393979c7 100644 --- a/common/rfb/AccessRights.cxx +++ b/common/rfb/AccessRights.cxx @@ -16,6 +16,10 @@ * USA. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include "AccessRights.h" namespace rfb diff --git a/common/rfb/H264Decoder.cxx b/common/rfb/H264Decoder.cxx index 1a310a3c..3178a17b 100644 --- a/common/rfb/H264Decoder.cxx +++ b/common/rfb/H264Decoder.cxx @@ -18,6 +18,10 @@ * USA. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #define MAX_H264_INSTANCES 64 #include diff --git a/common/rfb/H264DecoderContext.cxx b/common/rfb/H264DecoderContext.cxx index ab990079..87ac0d85 100644 --- a/common/rfb/H264DecoderContext.cxx +++ b/common/rfb/H264DecoderContext.cxx @@ -18,6 +18,10 @@ * USA. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include diff --git a/common/rfb/H264LibavDecoderContext.cxx b/common/rfb/H264LibavDecoderContext.cxx index 73bfb68c..fa2f367b 100644 --- a/common/rfb/H264LibavDecoderContext.cxx +++ b/common/rfb/H264LibavDecoderContext.cxx @@ -18,6 +18,9 @@ * USA. */ +#ifdef HAVE_CONFIG_H +#include +#endif extern "C" { #include diff --git a/common/rfb/H264WinDecoderContext.cxx b/common/rfb/H264WinDecoderContext.cxx index 8422b5c4..a9b13942 100644 --- a/common/rfb/H264WinDecoderContext.cxx +++ b/common/rfb/H264WinDecoderContext.cxx @@ -18,6 +18,10 @@ * USA. */ +#ifdef HAVE_CONFIG_H +#include +#endif + #include #include #include -- 2.39.5