mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
* gnu/packages/audio.scm (rtosc): New variable. * gnu/packages/patches/rtosc-0.3.1-fix-invalid-comparison-operator.patch: New file. * gnu/local.mk: Register it. Change-Id: I771b67a2bedc5ea513d6504c6f47db2d9382330c Signed-off-by: Gabriel Wicki <gabriel@erlikon.ch>
14 lines
No EOL
644 B
Diff
14 lines
No EOL
644 B
Diff
This patch fixes the unknown version comparison operator
|
|
|
|
diff --git a/librtosc-cpp.pc.cmake b/librtosc-cpp.pc.cmake
|
|
index 0d8fda2..edbcb3a 100644
|
|
--- a/librtosc-cpp.pc.cmake
|
|
+++ b/librtosc-cpp.pc.cmake
|
|
@@ -9,6 +9,6 @@ includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@
|
|
Name: rtosc_cpp
|
|
Description: rtosc_cpp - a realtime safe open sound control serialization and dispatch system for C++
|
|
Version: @VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@
|
|
-Requires: librtosc == @VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@
|
|
+Requires: librtosc = @VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@
|
|
Libs: -L${libdir} -lrtosc -lrtosc-cpp
|
|
Cflags: -I${includedir}
|