summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Preud'homme <robotux@celest.fr>2020-08-31 10:30:25 +0100
committerThomas Preud'homme <robotux@celest.fr>2020-09-05 20:31:13 +0100
commit0a82744381cb8cdcd54ea97ff5dfdeca2e8db17e (patch)
treecc8f1817d95e41ec5a26a745a70630c45f34acdc
parent8efbbb6ede28a37326b2d0579e3558182bf5cc12 (diff)
Fix linking opus library on Hurd
Qmake project files do not contain directives for linking the opus library on GNU/Hurd. This commit replaces the linux scope for the unix scope to also include GNU/Hurd in those directives. Author: Thomas Preud'homme <robotux@debian.org> Forwarded: https://github.com/alphaonex86/Ultracopier/pull/54 Applied-Upstream: commit:c2088c1f9a5a7582d1ef99adb9e0e220c3afafa3 Last-Update: 2020-09-05
-rwxr-xr-xother-pro/ultracopier-core.pro2
-rwxr-xr-xother-pro/ultracopier-little.pro2
2 files changed, 2 insertions, 2 deletions
diff --git a/other-pro/ultracopier-core.pro b/other-pro/ultracopier-core.pro
index 1cb9226..881382f 100755
--- a/other-pro/ultracopier-core.pro
+++ b/other-pro/ultracopier-core.pro
@@ -17,7 +17,7 @@ macx {
#DEFINES += NOAUDIO
!contains(DEFINES, NOAUDIO) {
QT += multimedia
-linux:LIBS += -lopus
+unix:!android:LIBS += -lopus
win32:LIBS += -lopus
SOURCES += \
$$PWD/../libogg/bitwise.c \
diff --git a/other-pro/ultracopier-little.pro b/other-pro/ultracopier-little.pro
index 64f9999..418da58 100755
--- a/other-pro/ultracopier-little.pro
+++ b/other-pro/ultracopier-little.pro
@@ -3,7 +3,7 @@ android: DEFINES += NOAUDIO
#DEFINES += NOAUDIO
!contains(DEFINES, NOAUDIO) {
QT += multimedia
-linux:LIBS += -lopus
+unix:!android:LIBS += -lopus
macx:LIBS += -lopus
win32:LIBS += -lopus
SOURCES += \