Changeset e4f4413c02a2604acf6e302fa41bc8af51b4a27b

Show
Ignore:
Timestamp:
02/08/08 18:05:38 (7 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1202490338 +0000
git-parent:

[2e42751af8b84ca6ddb2d5eba28fd7385cd4e590]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1202490338 +0000
Message:

cmake: Include stdint.h when searching postprocess.h.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • extras/buildsystem/cmake/include/config.cmake

    r6ef4eb5 re4f4413  
    372372find_package(FFmpeg) 
    373373if(FFmpeg_FOUND) 
    374   set(CMAKE_EXTRA_INCLUDE_FILES stdint.h) 
    375374  vlc_check_include_files (ffmpeg/avcodec.h) 
    376375  vlc_check_include_files (ffmpeg/avutil.h) 
    377376  vlc_check_include_files (ffmpeg/swscale.h) 
    378   vlc_check_include_files (postproc/postprocess.h) 
    379   set(CMAKE_EXTRA_INCLUDE_FILES) 
     377  check_include_files ("stdint.h;postproc/postprocess.h" HAVE_POSTPROC_POSTPROCESS_H) 
    380378  vlc_enable_modules(ffmpeg) 
    381379  vlc_add_module_compile_flag(ffmpeg ${FFmpeg_CFLAGS} )