Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The problem occurs when trying to build a game using X11.
There is such a line in the X11/X.h file:
At the same time, in the doomretro code, there is the following enum in the p_spec.h file:
Include chain:
Therefore, a problem occurs when compiling i_video.c:
It is reproduced on many popular linux distributions.
One of the possible ways is to reproduce:
docker run -it ubuntu bash
;# apt update
;# apt upgrade -y
;# apt install -y git gcc make libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev
;$ git clone https://github.com/bradharding/doomretro
;$ cd doomretro/src
;$ make i_video.o
.Commands 2-4 and 5-7 can be combined into 2 commands:
# apt update && apt upgrade -y && apt install -y git gcc make libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev
;$ git clone https://github.com/bradharding/doomretro && cd doomretro/src && make i_video.o
.