From 0d21ac8f5a4563e10d887e610a8cffff2a5672b8 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 20 Nov 2015 10:40:07 +0100 Subject: [PATCH] Depend on libgtp >= 0.92, as previous versions don't have gtpie.h installed this fixes compilation for people having older gtp libraries installed. --- openbsc/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)