Browse Source

rtp_media_server: Makefile - support for FreeBSD build

- updated LIBS and DEFS variables, making them consistent with
the rest of modules.
drTr0jan 3 years ago
parent
commit
cda05478b2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/modules/rtp_media_server/Makefile

+ 2 - 2
src/modules/rtp_media_server/Makefile

@@ -2,11 +2,11 @@ include ../../Makefile.defs
 auto_gen=
 NAME=rtp_media_server.so
 
-DEFS+=-I$(LOCALBASE)/lib
+DEFS+=-I$(LOCALBASE)/include
 
 ORTPLIBS=-lortp
 BCUNITLIBS=-lbcunit
 MS2LIBS=-lmediastreamer
 
-LIBS=$(ORTPLIBS) $(BCUNITLIBS) $(MS2LIBS)
+LIBS+=-L$(LOCALBASE)/lib $(ORTPLIBS) $(BCUNITLIBS) $(MS2LIBS)
 include ../../Makefile.modules