From d9a54af54e82326095511d559eec4b005b361928 Mon Sep 17 00:00:00 2001 From: Alexander Couzens Date: Tue, 30 Jan 2018 15:59:40 +0100 Subject: mandatory depend on libc-ares and libgtp Both library are required to build osmo-sgsn. The optional dependency was correct when osmo-sgsn was part of openbsc. Change-Id: Id608165ae490cb6c84aac1fe70412b2cb2b2587b --- configure.ac | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index ba82eb15a..504157bca 100644 --- a/configure.ac +++ b/configure.ac @@ -60,21 +60,8 @@ AM_CONDITIONAL(BUILD_IU, test "x$osmo_ac_iu" = "xyes") AC_SUBST(osmo_ac_iu) -found_libgtp=yes -PKG_CHECK_MODULES(LIBGTP, libgtp >= 1.0.0, , found_libgtp=no) -AM_CONDITIONAL(HAVE_LIBGTP, test "$found_libgtp" = yes) -AC_SUBST(found_libgtp) - -found_libcares=yes -PKG_CHECK_MODULES([LIBCARES], [libcares], [], [found_libcares=no]) -AM_CONDITIONAL(HAVE_LIBCARES, test "$found_libcares" = yes) -AC_SUBST(found_libcares) - -found_libgtp_and_libcares=no -if test "$found_libgtp" = "yes" -a "$found_libcares" = "yes"; then - found_libgtp_and_libcares=yes -fi -AC_SUBST(found_libgtp_and_libcares) +PKG_CHECK_MODULES(LIBGTP, libgtp >= 1.0.0) +PKG_CHECK_MODULES(LIBCARES, libcares) dnl checks for header files AC_HEADER_STDC -- cgit v1.2.3