-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
openscenegraph: build with ffmpeg 4.4
- Loading branch information
Showing
2 changed files
with
38 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
diff --git a/CMakeModules/FindFFmpeg.cmake b/CMakeModules/FindFFmpeg.cmake | ||
index d548e7a98..7a53cfe25 100644 | ||
--- a/CMakeModules/FindFFmpeg.cmake | ||
+++ b/CMakeModules/FindFFmpeg.cmake | ||
@@ -43,7 +43,7 @@ MACRO(FFMPEG_FIND varname shortname headername) | ||
/opt/csw/include # Blastwave | ||
/opt/include | ||
/usr/freeware/include | ||
- PATH_SUFFIXES ffmpeg | ||
+ PATH_SUFFIXES ffmpeg ffmpeg4.4 | ||
DOC "Location of FFMPEG Headers" | ||
) | ||
|
||
@@ -62,7 +62,7 @@ MACRO(FFMPEG_FIND varname shortname headername) | ||
/opt/csw/include # Blastwave | ||
/opt/include | ||
/usr/freeware/include | ||
- PATH_SUFFIXES ffmpeg | ||
+ PATH_SUFFIXES ffmpeg ffmpeg4.4 | ||
DOC "Location of FFMPEG Headers" | ||
) | ||
|
||
@@ -84,6 +84,7 @@ MACRO(FFMPEG_FIND varname shortname headername) | ||
/opt/csw/lib | ||
/opt/lib | ||
/usr/freeware/lib64 | ||
+ PATH_SUFFIXES ffmpeg4.4 | ||
DOC "Location of FFMPEG Libraries" | ||
) | ||
|