blob: 888300a6b8b5c8556b8677ba5a6307c4e197566f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
$NetBSD: patch-cmake_FindFFmpeg.cmake,v 1.1 2016/05/26 09:17:14 markd Exp $
Fix broken prefix
--- cmake/FindFFmpeg.cmake.orig 2016-02-06 13:44:51.000000000 +0000
+++ cmake/FindFFmpeg.cmake
@@ -89,16 +89,16 @@ macro(find_component _component _pkgconf
find_path(${_component}_INCLUDE_DIRS ${_header}
HINTS
- ${PC_LIB${_component}_INCLUDEDIR}
- ${PC_LIB${_component}_INCLUDE_DIRS}
+ ${PC_${_component}_INCLUDEDIR}
+ ${PC_${_component}_INCLUDE_DIRS}
PATH_SUFFIXES
ffmpeg
)
find_library(${_component}_LIBRARIES NAMES ${_library}
HINTS
- ${PC_LIB${_component}_LIBDIR}
- ${PC_LIB${_component}_LIBRARY_DIRS}
+ ${PC_${_component}_LIBDIR}
+ ${PC_${_component}_LIBRARY_DIRS}
)
set(${_component}_DEFINITIONS ${PC_${_component}_CFLAGS_OTHER} CACHE STRING "The ${_component} CFLAGS.")
|