mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-28 16:32:57 +02:00
csound: update to 6.13.0.
This commit is contained in:
parent
2b70478912
commit
a562ff0509
2 changed files with 2 additions and 34 deletions
|
@ -1,32 +0,0 @@
|
|||
From d122dd83cba94a9b8857564816ab48556b609180 Mon Sep 17 00:00:00 2001
|
||||
From: John Zimmermann <johnz@posteo.net>
|
||||
Date: Sun, 3 Feb 2019 03:04:05 +0100
|
||||
Subject: [PATCH] Allow to link against libexecinfo on linux systems
|
||||
|
||||
Some C-libraries like the Musl libc don't provide execinfo themself so
|
||||
it is required to use a third party library to use execinfo there.
|
||||
---
|
||||
CMakeLists.txt | 7 +++++++
|
||||
1 file changed, 7 insertions(+)
|
||||
|
||||
diff --git CMakeLists.txt CMakeLists.txt
|
||||
index c6cd95a02..2fb129d5f 100644
|
||||
--- CMakeLists.txt
|
||||
+++ CMakeLists.txt
|
||||
@@ -1284,6 +1284,13 @@ if(LINUX)
|
||||
list(APPEND libcsound_LIBS ${LIBRT_LIBRARY})
|
||||
message(STATUS " ADDING LIBRT LIBRARY: ${LIBRT_LIBRARY}.")
|
||||
endif()
|
||||
+
|
||||
+ find_library(LIBEXECINFO_LIBRARY execinfo)
|
||||
+
|
||||
+ if(LIBEXECINFO_LIBRARY)
|
||||
+ list(APPEND libcsound_LIBS ${LIBEXECINFO_LIBRARY})
|
||||
+ message(STATUS " ADDING LIBEXECINFO LIBRARY: ${LIBEXECINFO_LIBRARY}.")
|
||||
+ endif()
|
||||
endif()
|
||||
|
||||
if(APPLE AND NOT IOS)
|
||||
--
|
||||
2.20.1
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'csound'
|
||||
pkgname=csound
|
||||
version=6.12.2
|
||||
version=6.13.0
|
||||
revision=1
|
||||
build_style=cmake
|
||||
configure_args="
|
||||
|
@ -17,7 +17,7 @@ maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
|||
license="LGPL-2.1-or-later"
|
||||
homepage="https://csound.com/"
|
||||
distfiles="https://github.com/${pkgname}/${pkgname}/archive/${version}.tar.gz"
|
||||
checksum=39f4872b896eb1cbbf596fcacc0f2122fd3e5ebbb5cec14a81b4207d6b8630ff
|
||||
checksum=183beeb3b720bfeab6cc8af12fbec0bf9fef2727684ac79289fd12d0dfee728b
|
||||
nocross=yes
|
||||
|
||||
CXXFLAGS="-Wno-error"
|
||||
|
|
Loading…
Add table
Reference in a new issue