pespin has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-hnodeb/+/26035 )
Change subject: configure: link against libsctp
......................................................................
configure: link against libsctp
osmo-hnodeb calls sctp_recvmsg directly, which is provided by libsctp.
Hence, we need to depend and link on it.
Change-Id: I793d6fe8601cf9a8dd72bf6884b469204b513c11
---
M configure.ac
M src/osmo-hnodeb/Makefile.am
2 files changed, 11 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-hnodeb refs/changes/35/26035/1
diff --git a/configure.ac b/configure.ac
index 750b5e9..5b4ca8b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -44,6 +44,16 @@
dnl checks for libraries
AC_SEARCH_LIBS([dlopen], [dl dld], [LIBRARY_DL="$LIBS";LIBS=""])
AC_SUBST(LIBRARY_DL)
+old_LIBS=$LIBS
+AC_SEARCH_LIBS([sctp_recvmsg], [sctp], [
+ AC_DEFINE(HAVE_LIBSCTP, 1, [Define 1 to enable SCTP support])
+ AC_SUBST(HAVE_LIBSCTP, [1])
+ if test -n "$ac_lib"; then
+ AC_SUBST(LIBSCTP_LIBS, [-l$ac_lib])
+ fi
+ ], [
+ AC_MSG_ERROR([sctp_recvmsg not found in searched libs])])
+LIBS=$old_LIBS
PKG_CHECK_MODULES(LIBASN1C, libasn1c >= 0.9.30)
PKG_CHECK_MODULES(LIBOSMOCORE, libosmocore >= 1.5.0)
diff --git a/src/osmo-hnodeb/Makefile.am b/src/osmo-hnodeb/Makefile.am
index fd18233..139b6b0 100644
--- a/src/osmo-hnodeb/Makefile.am
+++ b/src/osmo-hnodeb/Makefile.am
@@ -52,4 +52,5 @@
$(LIBOSMORUA_LIBS) \
$(LIBOSMORANAP_LIBS) \
$(LIBOSMOHNBAP_LIBS) \
+ $(LIBSCTP_LIBS) \
$(NULL)
--
To view, visit https://gerrit.osmocom.org/c/osmo-hnodeb/+/26035
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-hnodeb
Gerrit-Branch: master
Gerrit-Change-Id: I793d6fe8601cf9a8dd72bf6884b469204b513c11
Gerrit-Change-Number: 26035
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <[email protected]>
Gerrit-MessageType: newchange