diff options
Diffstat (limited to 'system')
118 files changed, 10913 insertions, 3065 deletions
diff --git a/system/include/SDL/SDL_events.h b/system/include/SDL/SDL_events.h index 804ac57e..8be00ceb 100644 --- a/system/include/SDL/SDL_events.h +++ b/system/include/SDL/SDL_events.h @@ -55,6 +55,7 @@ extern "C" { */ typedef enum { + SDL_NOEVENT = 0, SDL_FIRSTEVENT = 0, /**< Unused (do not remove) */ /* Application events */ diff --git a/system/include/compat/ctype.h b/system/include/compat/ctype.h index 891006d9..3f504946 100644 --- a/system/include/compat/ctype.h +++ b/system/include/compat/ctype.h @@ -14,4 +14,21 @@ #include_next <ctype.h> +/* We undef these until libcxx is fixed. Without this, + some things can fail to compile correctly, like + Boost. Issue #1716. */ |