From a1909e6c80448f3dd7b56942a5af9d4106afd2f9 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Sun, 20 Mar 2016 18:49:29 +0100 Subject: Initial commit for a MNCC to SIP gateway (and maybe auth GW too) * It is written in C and using libosmovty and other data structures * It is using sofia-sip for the SIP handling as a good library for such a task * It is using glib for the sofia-sip event loop integration. In the future we can write our own root context but right now that looks like a necessary evil. No glib usage is allowed in this code and only sofia-glib is linked. --- configure.ac | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 configure.ac (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..d4a39a8 --- /dev/null +++ b/configure.ac @@ -0,0 +1,17 @@ +AC_INIT([osmo-sip-connector], + m4_esyscmd([./git-version-gen .tarball-version]), + [openbsc@lists.osmocom.org]) +AM_INIT_AUTOMAKE([dist-bzip2]) + +dnl kernel style compile messages +m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) +AC_PROG_CC + +PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.8.0) +PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty) +PKG_CHECK_MODULES(SOFIASIP, sofia-sip-ua-glib >= 1.12.0) + + +AC_OUTPUT( + src/Makefile + Makefile) -- cgit v1.2.3