mirror of
https://github.com/openwrt/telephony.git
synced 2025-12-21 17:04:36 +04:00
Add patch fixing compilation error for wrong pthread tid init. While at it also renumber the patch to to follow the pattern of 1xx for downstream patch. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
21 lines
864 B
Diff
21 lines
864 B
Diff
--- a/daemon/Makefile
|
|
+++ b/daemon/Makefile
|
|
@@ -32,7 +32,7 @@ CFLAGS+= $(shell pkg-config --cflags lib
|
|
CFLAGS+= $(shell pkg-config --cflags libavutil)
|
|
CFLAGS+= $(shell pkg-config --cflags libswresample)
|
|
CFLAGS+= $(shell pkg-config --cflags libavfilter)
|
|
-CFLAGS+= $(shell pkg-config --cflags spandsp)
|
|
+CFLAGS+= $(shell pkg-config --cflags spandsp3)
|
|
CFLAGS+= $(shell pkg-config --cflags opus)
|
|
CFLAGS+= -DWITH_TRANSCODING
|
|
CFLAGS+= $(shell mysql_config --cflags)
|
|
@@ -68,7 +68,7 @@ LDLIBS+= $(shell pkg-config --libs libav
|
|
LDLIBS+= $(shell pkg-config --libs libavutil)
|
|
LDLIBS+= $(shell pkg-config --libs libswresample)
|
|
LDLIBS+= $(shell pkg-config --libs libavfilter)
|
|
-LDLIBS+= $(shell pkg-config --libs spandsp)
|
|
+LDLIBS+= $(shell pkg-config --libs spandsp3)
|
|
LDLIBS+= $(shell pkg-config --libs opus)
|
|
LDLIBS+= $(shell mysql_config --libs)
|
|
endif
|