From b068d53e2a63250ef3a75114eef566f2607bd88c Mon Sep 17 00:00:00 2001 From: Lekensteyn Date: Wed, 14 Mar 2012 18:08:23 +0100 Subject: [PATCH] Fix build errors due to missing dtsc dependency --- Connector_RTMP/Makefile | 2 +- Connector_RTSP/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Connector_RTMP/Makefile b/Connector_RTMP/Makefile index 2148c6d5..45937f40 100644 --- a/Connector_RTMP/Makefile +++ b/Connector_RTMP/Makefile @@ -1,4 +1,4 @@ -SRC = main.cpp ../util/socket.cpp ../util/flv_tag.cpp ../util/amf.cpp ../util/rtmpchunks.cpp ../util/crypto.cpp ../util/util.cpp +SRC = main.cpp ../util/socket.cpp ../util/flv_tag.cpp ../util/amf.cpp ../util/rtmpchunks.cpp ../util/crypto.cpp ../util/util.cpp ../util/dtsc.cpp OBJ = $(SRC:.cpp=.o) OUT = DDV_Conn_RTMP INCLUDES = diff --git a/Connector_RTSP/Makefile b/Connector_RTSP/Makefile index 273fd7b0..9a96197b 100644 --- a/Connector_RTSP/Makefile +++ b/Connector_RTSP/Makefile @@ -1,4 +1,4 @@ -SRC = main.cpp ../util/socket.cpp ../util/http_parser.cpp ../util/flv_tag.cpp ../util/amf.cpp ../util/util.cpp +SRC = main.cpp ../util/socket.cpp ../util/http_parser.cpp ../util/flv_tag.cpp ../util/amf.cpp ../util/util.cpp ../util/dtsc.cpp OBJ = $(SRC:.cpp=.o) OUT = Connector_RTSP INCLUDES = $(shell pkg-config --cflags jrtplib)