Module: kamailio Branch: master Commit: 38f17e622e8539883a7213acce3aed0635b11aff URL: https://github.com/kamailio/kamailio/commit/38f17e622e8539883a7213acce3aed06...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2022-10-20T20:24:17+02:00
rtp_media_server: removed lib bcunit linking
- not required for the code - tested on debian 11
---
Modified: src/modules/rtp_media_server/Makefile
---
Diff: https://github.com/kamailio/kamailio/commit/38f17e622e8539883a7213acce3aed06... Patch: https://github.com/kamailio/kamailio/commit/38f17e622e8539883a7213acce3aed06...
---
diff --git a/src/modules/rtp_media_server/Makefile b/src/modules/rtp_media_server/Makefile index 18645c209a5..085fd1a381a 100644 --- a/src/modules/rtp_media_server/Makefile +++ b/src/modules/rtp_media_server/Makefile @@ -5,8 +5,7 @@ NAME=rtp_media_server.so DEFS+=-I$(LOCALBASE)/include
ORTPLIBS=-lortp -BCUNITLIBS=-lbcunit MS2LIBS=-lmediastreamer
-LIBS+=-L$(LOCALBASE)/lib $(ORTPLIBS) $(BCUNITLIBS) $(MS2LIBS) +LIBS+=-L$(LOCALBASE)/lib $(ORTPLIBS) $(MS2LIBS) include ../../Makefile.modules