shithub: opus

Download patch

ref: 6d29f51a40be64e03acc2619f35b4971ba00617c
parent: 60472f2dc2c89eed45de1a382eea5da4fb885db6
author: DeadSix27 <DeadSix27@users.noreply.github.com>
date: Thu Dec 5 01:00:58 EST 2019

CMake: use PACKAGE_VERSION for the pkg-config file

The old variable `OPUS_LIBRARY_VERSION`, does not line up with what's used in autoconf, which uses the PACKAGE_VERSION instead, which in turn lines up with what version the projects `opusfile` and `libsndfile` check for, for example.
While at it, I also cleaned up the accidental double up in code.

Signed-off-by: Jean-Marc Valin <jmvalin@jmvalin.ca>

--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -326,8 +326,7 @@
   set(exec_prefix ${CMAKE_INSTALL_PREFIX})
   set(libdir ${CMAKE_INSTALL_FULL_LIBDIR})
   set(includedir ${CMAKE_INSTALL_FULL_INCLUDEDIR})
-  set(VERSION ${OPUS_LIBRARY_VERSION})
-  set(VERSION ${OPUS_LIBRARY_VERSION})
+  set(VERSION ${PACKAGE_VERSION})
   if(HAVE_LIBM)
     set(LIBM "-lm")
   endif()