aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2015-11-20 10:40:07 +0100
committerHarald Welte <laforge@gnumonks.org>2015-11-20 10:40:07 +0100
commit0d21ac8f5a4563e10d887e610a8cffff2a5672b8 (patch)
tree91e1128fed35b9640bc119323b25942d6c0423c5 /openbsc
parent24e3c3e13657210f2ac5f41942da82341ff7b25d (diff)
Depend on libgtp >= 0.92, as previous versions don't have gtpie.h installed
this fixes compilation for people having older gtp libraries installed.
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/configure.ac b/openbsc/configure.ac
index 098e5b40b..df6ca6793 100644
--- a/openbsc/configure.ac
+++ b/openbsc/configure.ac
@@ -75,7 +75,7 @@ AC_SUBST(osmo_ac_mgcp_transcoding)
found_libgtp=yes
-PKG_CHECK_MODULES(LIBGTP, libgtp, , found_libgtp=no)
+PKG_CHECK_MODULES(LIBGTP, libgtp >= 0.92, , found_libgtp=no)
AM_CONDITIONAL(HAVE_LIBGTP, test "$found_libgtp" = yes)
AC_SUBST(found_libgtp)