|
From: Tom T. <to...@ts...> - 2015-02-20 23:03:48
|
On Fri, Feb 20, 2015 at 1:49 PM, ben mccall <ben...@gm...> wrote: > I'm building on a clean VM with Ubuntu 14.04LTS. I'm down to the part on the > instructions where it says to copy sipauthserve's comp128 into the > OpenBTS-UMTS directory, but i'm not sure exactly where to get sipauthserve > as its not included in the UMTS build (that i can find). There are definitely some inconsistencies between the wiki and the current code. Namely, the code Makefiles have the install path fixed to /OpenBTS and /etc/OpenBTS rather than the OpenBTS-UMTS paths described on the wiki. Whether we should change the paths in the code or the paths in the wiki remains an unanswered question. Sipauthserv is identical to that in OpenBTS-GSM, but there are no Ubuntu build scripts for UMTS. Try the following. $ git clone https://github.com/RangeNetworks/subscriberRegistry.git $ cd subscriberRegistry/ $ git submodule init $ git submodule update $ ./autogen.sh $ ./configure $ make You'll find comp128 and sipauthserve binaries in the apps/ directory. I usually remove all the libcoredumper dependencies, which I don't think should be checked in to begin with. -TT |