Changes between Initial Version and Version 1 of Ticket #48938, comment 2


Ignore:
Timestamp:
Sep 21, 2015, 7:13:42 AM (9 years ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #48938, comment 2

    initial v1  
    3838}}}
    3939
    40 This implies that `SDL_VERSION_ATLEAST` is not defined. It should have been defined in SDL_version.h which is included by SDL.h which is included by ffplay.c. The reason is the same as above: this is another preprocessor invocation. The above fix should fix this as well.
     40This implies that `SDL_VERSION_ATLEAST` is not defined. It should have been defined in SDL_version.h which is included by SDL.h which is included by ffplay.c. The reason is the same as above: this is another preprocessor invocation, and they haven't included the path where the SDL headers are found. (`-I/opt/local/include/SDL` is missing). The above fix should fix this as well.
    4141
    4242-----