summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorHarald Welte2011-09-03 15:33:24 +0200
committerHarald Welte2011-09-03 15:33:24 +0200
commit41d0d84fd61a178f524eca001932807702bcafb7 (patch)
tree6dde97b11d62da5dc3ac78e86298add64efc7f86 /configure.ac
parentinput: fix multiple BTS attached to single line scenario (diff)
downloadlibosmo-abis-41d0d84fd61a178f524eca001932807702bcafb7.tar.gz
libosmo-abis-41d0d84fd61a178f524eca001932807702bcafb7.tar.xz
libosmo-abis-41d0d84fd61a178f524eca001932807702bcafb7.zip
add 'libosmotrau' for TRAU/RTP related code
This new library is intended to include everything related to interfacing actual voice channels either via E1 or via RTP. The first module in the library is osmo_rtp, based on the ortp library.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index f14f047..ec5086d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -37,15 +37,19 @@ AM_CONFIG_HEADER(config.h)
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 0.3.0)
PKG_CHECK_MODULES(LIBOSMOVTY, libosmovty >= 0.3.0)
PKG_CHECK_MODULES(LIBOSMOGSM, libosmogsm >= 0.3.0)
+PKG_CHECK_MODULES(ORTP, ortp)
AC_CHECK_HEADERS(dahdi/user.h,,AC_MSG_WARN(DAHDI input driver will not be built))
AC_OUTPUT(
libosmoabis.pc
+ libosmotrau.pc
include/Makefile
include/osmocom/Makefile
include/osmocom/abis/Makefile
+ include/osmocom/trau/Makefile
src/Makefile
src/input/Makefile
+ src/trau/Makefile
tests/Makefile
Makefile)