From 6df5951f0b871d4a739c394f644aedfec0cbdd37 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Fri, 24 May 2019 19:15:06 +0200 Subject: [PATCH] [libtheora] fix find ogg --- ports/libtheora/CONTROL | 2 +- ports/libtheora/FindOGG.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ports/libtheora/CONTROL b/ports/libtheora/CONTROL index aa275cc88815d2..114d42b0553f86 100644 --- a/ports/libtheora/CONTROL +++ b/ports/libtheora/CONTROL @@ -1,4 +1,4 @@ Source: libtheora -Version: 1.2.0alpha1-20170719~vcpkg1-2 +Version: 1.2.0alpha1-20170719~vcpkg1-3 Description: Theora is a free and open video compression format from the Xiph.org Foundation. Build-Depends: libogg diff --git a/ports/libtheora/FindOGG.cmake b/ports/libtheora/FindOGG.cmake index fc0d15feb6d7a5..ba3c8b1b6cfd89 100644 --- a/ports/libtheora/FindOGG.cmake +++ b/ports/libtheora/FindOGG.cmake @@ -1,6 +1,6 @@ find_path(OGG_INCLUDE_DIR NAMES ogg/ogg.h) -find_library(OGG_LIBRARY NAMES ogg) +find_library(OGG_LIBRARY NAMES ogg libogg) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(OGG DEFAULT_MSG OGG_LIBRARY OGG_INCLUDE_DIR)