Changeset e4f4413c02a2604acf6e302fa41bc8af51b4a27b
- 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
| r6ef4eb5 |
re4f4413 |
|
| 372 | 372 | find_package(FFmpeg) |
|---|
| 373 | 373 | if(FFmpeg_FOUND) |
|---|
| 374 | | set(CMAKE_EXTRA_INCLUDE_FILES stdint.h) |
|---|
| 375 | 374 | vlc_check_include_files (ffmpeg/avcodec.h) |
|---|
| 376 | 375 | vlc_check_include_files (ffmpeg/avutil.h) |
|---|
| 377 | 376 | 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) |
|---|
| 380 | 378 | vlc_enable_modules(ffmpeg) |
|---|
| 381 | 379 | vlc_add_module_compile_flag(ffmpeg ${FFmpeg_CFLAGS} ) |
|---|