]> git.sesse.net Git - ffmpeg/commitdiff
build: Special-case handling of SDL CFLAGS
authorDiego Biurrun <diego@biurrun.de>
Thu, 2 Mar 2017 13:54:28 +0000 (14:54 +0100)
committerDiego Biurrun <diego@biurrun.de>
Tue, 7 Mar 2017 07:32:37 +0000 (08:32 +0100)
SDL adds some "special" CFLAGS that interfere with building normal
binaries. Capture those CFLAGS separately and avoid adding them to
the general CFLAGS.

configure

index a8e3926b70aa677de2906c206ad5ba96c524a1ad..9f339e6af654d3e9f9263c371f89efac9fa2c597 100755 (executable)
--- a/configure
+++ b/configure
@@ -4782,7 +4782,13 @@ if enabled nvenc; then
     require_cpp_condition nvEncodeAPI.h "NVENCAPI_MAJOR_VERSION >= 6"
 fi
 
-check_pkg_config sdl "sdl >= 1.2.1 sdl < 1.3.0" SDL_events.h SDL_PollEvent
+# SDL is "special" and adds some CFLAGS that should not pollute anything else.
+if enabled avplay; then
+    CFLAGS_SAVE=$CFLAGS
+    check_pkg_config sdl "sdl >= 1.2.1 sdl < 1.3.0" SDL_events.h SDL_PollEvent &&
+    sdl_cflags=$pkg_cflags
+    CFLAGS=$CFLAGS_SAVE
+fi
 
 ! disabled pod2man   && check_cmd pod2man --help     && enable pod2man   || disable pod2man
 ! disabled texi2html && check_cmd texi2html -version && enable texi2html || disable texi2html