forked from mia/Aegisub
Fixes for Boost 1.69.0
This commit is contained in:
parent
7094bd1e20
commit
c3c446a8d6
4 changed files with 16 additions and 0 deletions
|
@ -18,7 +18,11 @@
|
|||
|
||||
#include "dialogs.h"
|
||||
|
||||
#if BOOST_VERSION >= 106900
|
||||
#include <boost/gil.hpp>
|
||||
#else
|
||||
#include <boost/gil/gil_all.hpp>
|
||||
#endif
|
||||
|
||||
AGI_DEFINE_EVENT(EVT_COLOR, agi::Color);
|
||||
|
||||
|
|
|
@ -46,7 +46,11 @@
|
|||
#include <libaegisub/util.h>
|
||||
|
||||
#include <atomic>
|
||||
#if BOOST_VERSION >= 106900
|
||||
#include <boost/gil.hpp>
|
||||
#else
|
||||
#include <boost/gil/gil_all.hpp>
|
||||
#endif
|
||||
#include <memory>
|
||||
#include <mutex>
|
||||
|
||||
|
|
|
@ -16,7 +16,11 @@
|
|||
|
||||
#include "video_frame.h"
|
||||
|
||||
#if BOOST_VERSION >= 106900
|
||||
#include <boost/gil.hpp>
|
||||
#else
|
||||
#include <boost/gil/gil_all.hpp>
|
||||
#endif
|
||||
#include <wx/image.h>
|
||||
|
||||
namespace {
|
||||
|
|
|
@ -45,7 +45,11 @@
|
|||
#include <boost/algorithm/string/predicate.hpp>
|
||||
#include <boost/filesystem/path.hpp>
|
||||
#include <libaegisub/format.h>
|
||||
#if BOOST_VERSION >= 106900
|
||||
#include <boost/gil.hpp>
|
||||
#else
|
||||
#include <boost/gil/gil_all.hpp>
|
||||
#endif
|
||||
|
||||
DummyVideoProvider::DummyVideoProvider(double fps, int frames, int width, int height, agi::Color colour, bool pattern)
|
||||
: framecount(frames)
|
||||
|
|
Loading…
Reference in a new issue