mirror of
https://git.freebsd.org/ports.git
synced 2025-07-13 23:39:20 -04:00
x265 was not correctly detected due to link attempt to libdl. Also avidemux now automatically detects the presence of opus, twolame and fribidi during configure and builds additional plugins for them. This changeset introduces new OPTIONS FRIBIDI OPUS TWOLAME (all non-default) and fixes plugins pkg-plist. Bump PORTREVISION for avidemux-* PR: 206945 Submitted by: mi Reviewed by: riggs MFH: 2016Q1
12 lines
603 B
CMake
12 lines
603 B
CMake
--- cmake/admCheckX265.cmake.orig 2016-01-29 08:47:25 UTC
|
|
+++ cmake/admCheckX265.cmake
|
|
@@ -19,9 +19,6 @@ MACRO(checkX265)
|
|
MESSAGE("WARNING: x265 core version is too old. At least version 9 is required.")
|
|
SET(X265_FOUND 0)
|
|
ELSE (x265_version LESS 9)
|
|
- IF(NOT WIN32)
|
|
- SET(DL dl)
|
|
- ENDIF(NOT WIN32)
|
|
FIND_HEADER_AND_LIB(X265 x265.h x265 x265_encoder_open_${x265_version} ${DL})
|
|
ENDIF (x265_version LESS 9)
|
|
ELSE (_X265_FOUND AND _X265_CONFIG_FOUND)
|