aboutsummaryrefslogtreecommitdiffstats
path: root/deps/Makefile
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-01-22 11:29:13 +0100
committerHarald Welte <laforge@gnumonks.org>2018-01-22 11:31:38 +0100
commit701b574fedc9257b097f8eb69a5683ad0b7a2388 (patch)
tree9bf3df21537d86deb374f69a091dc35505103c06 /deps/Makefile
parent8a121b3cec818dafa7272f23f89636f554886745 (diff)
Use Osmocom-patched UNIX_DOMAIN_SOCKETasp for SEQPACKET support
Upstream TITAN doesn't have this yet (it's submitted, though), so we have to use our own repo for titan.TestPorts.UNIX_DOMAIN_SOCKETasp and at the same time make sure that our MNCC port is using SEQPACKET in MSC_Tests.cfg Change-Id: Ifa3661d8f818564d595c4612e5612a245a31a8f4
Diffstat (limited to 'deps/Makefile')
-rw-r--r--deps/Makefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/deps/Makefile b/deps/Makefile
index ac664930..64f5c2c9 100644
--- a/deps/Makefile
+++ b/deps/Makefile
@@ -1,6 +1,7 @@
ECLIPSEGIT:=https://github.com/eclipse
ECLIPSEGIT2:=git://git.eclipse.org/gitroot/titan
+OSMOGITHUB:=https://github.com/osmocom
ECLIPSEGIT_REPOS= titan.Libraries.TCCUsefulFunctions \
titan.ProtocolModules.ICMP \
@@ -20,8 +21,7 @@ ECLIPSEGIT_REPOS= titan.Libraries.TCCUsefulFunctions \
titan.TestPorts.SIPmsg \
titan.TestPorts.TCPasp \
titan.TestPorts.TELNETasp \
- titan.TestPorts.UDPasp \
- titan.TestPorts.UNIX_DOMAIN_SOCKETasp
+ titan.TestPorts.UDPasp
ECLIPSEGIT2_REPOS= titan.ProtocolModules.GRE \
titan.ProtocolModules.M2PA \
@@ -40,7 +40,9 @@ ECLIPSEGIT2_REPOS= titan.ProtocolModules.GRE \
titan.ProtocolModules.NS_v7.3.0 \
titan.ProtocolModules.SNDCP_v7.0.0
-ALL_REPOS=$(ECLIPSEGIT_REPOS) $(ECLIPSEGIT2_REPOS)
+OSMOGITHUB_REPOS= titan.TestPorts.UNIX_DOMAIN_SOCKETasp
+
+ALL_REPOS=$(ECLIPSEGIT_REPOS) $(ECLIPSEGIT2_REPOS) $(OSMOGITHUB_REPOS)
all: $(ALL_REPOS)
@@ -65,3 +67,6 @@ $(foreach dir,$(ECLIPSEGIT_REPOS), \
$(foreach dir,$(ECLIPSEGIT2_REPOS), \
$(eval $(call GIT_template,$(dir),$(ECLIPSEGIT2))))
+
+$(foreach dir,$(OSMOGITHUB_REPOS), \
+ $(eval $(call GIT_template,$(dir),$(OSMOGITHUB))))