aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-09-03 15:33:24 +0200
committerHarald Welte <laforge@gnumonks.org>2011-09-03 15:33:24 +0200
commit41d0d84fd61a178f524eca001932807702bcafb7 (patch)
tree6dde97b11d62da5dc3ac78e86298add64efc7f86 /configure.ac
parentd6216405b7363c94174a6d301b96f5ed4a8730ce (diff)
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)