6ff2b2b37f
Some build recipes (exherbo, sourcemage) for some reason enable this even though it doesn't do anything any only causes compilation issues. Ref: #1730
18 lines
310 B
C++
18 lines
310 B
C++
#pragma once
|
|
|
|
#include "settings.hpp"
|
|
|
|
#if WITH_XDAMAGE
|
|
#include "x11/extensions/damage.hpp"
|
|
#endif
|
|
#if WITH_XRANDR
|
|
#include "x11/extensions/randr.hpp"
|
|
#endif
|
|
#if WITH_XSYNC
|
|
#include "x11/extensions/sync.hpp"
|
|
#endif
|
|
#include "x11/extensions/composite.hpp"
|
|
#if WITH_XKB
|
|
#include "x11/extensions/xkb.hpp"
|
|
#endif
|