]> git.sesse.net Git - vlc/commitdiff
cmake: Include stdint.h when searching postprocess.h.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Fri, 8 Feb 2008 17:05:38 +0000 (17:05 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Fri, 8 Feb 2008 17:05:38 +0000 (17:05 +0000)
extras/buildsystem/cmake/include/config.cmake

index 3a21735fd6ce528b41026dec6b8957f0b50eeb94..a76a7b3f83bf8eccdc254d52d341c0a8843fb1de 100644 (file)
@@ -371,12 +371,10 @@ set(HAVE_DL_DLOPEN ${Dlopen_FOUND})
 
 find_package(FFmpeg)
 if(FFmpeg_FOUND)
-  set(CMAKE_EXTRA_INCLUDE_FILES stdint.h)
   vlc_check_include_files (ffmpeg/avcodec.h)
   vlc_check_include_files (ffmpeg/avutil.h)
   vlc_check_include_files (ffmpeg/swscale.h)
-  vlc_check_include_files (postproc/postprocess.h)
-  set(CMAKE_EXTRA_INCLUDE_FILES)
+  check_include_files ("stdint.h;postproc/postprocess.h" HAVE_POSTPROC_POSTPROCESS_H)
   vlc_enable_modules(ffmpeg)
   vlc_add_module_compile_flag(ffmpeg ${FFmpeg_CFLAGS} )
   vlc_module_add_link_libraries(ffmpeg ${FFmpeg_LIBRARIES})