supercollider: update to 3.14.0.

This commit is contained in:
Đoàn Trần Công Danh 2025-08-08 22:01:17 +07:00
parent a659bd4d0b
commit fc714f6443
2 changed files with 2 additions and 20 deletions

View file

@ -1,18 +0,0 @@
--- a/external_libraries/link/modules/asio-standalone/asio/include/asio/impl/error_code.ipp 2020-10-26 23:22:21.954194075 +0700
+++ b/external_libraries/link/modules/asio-standalone/asio/include/asio/impl/error_code.ipp 2020-10-26 23:25:46.716820740 +0700
@@ -106,9 +106,14 @@
using namespace std;
strerror_r(value, buf, sizeof(buf));
return buf;
-#else
+#elif defined(__GLIBC__)
char buf[256] = "";
return strerror_r(value, buf, sizeof(buf));
+#else
+ char buf[256] = "";
+ using namespace std;
+ strerror_r(value, buf, sizeof(buf));
+ return buf;
#endif
#endif // defined(ASIO_WINDOWS_DESKTOP) || defined(__CYGWIN__)
}

View file

@ -1,6 +1,6 @@
# Template file for 'supercollider'
pkgname=supercollider
version=3.13.0
version=3.14.0
revision=1
build_style=cmake
make_cmd=make
@ -16,7 +16,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-3.0-or-later"
homepage="https://github.com/supercollider/supercollider"
distfiles="https://github.com/supercollider/supercollider/releases/download/Version-${version}/SuperCollider-${version}-Source.tar.bz2"
checksum=0fc5dba5baeae37f9069ad28885aa405c6a25309e3886cbe111bd3b7c05531ce
checksum=ab710e84376f5c082c92fcea7465b85d375934f3da7deed583457a0a48b0a918
export CMAKE_GENERATOR="Unix Makefiles"