From d8e59b208c9f0a79ace235c30cf66a650e4fa92b Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 4 Dec 2020 10:15:39 +0100 Subject: libosmogb: Add missing LIBMNL_CFLAGS In Change-Id I779556991bfc88b7751b2be17bb81c329cfb9e01 we introduced the use of libmnl via osmo_mnl to libosmogb. Howver, we didn't add LIBMNL_CFLAGS in Makefile.am, which now (rightfully) fails on some distributions like the SuSE family of distributions. Let's fix this. Change-Id: Ib8740e8fd677026efb9dad5d5fe6b95147fb3c23 --- src/gb/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gb/Makefile.am b/src/gb/Makefile.am index 41b6c6db..b1407275 100644 --- a/src/gb/Makefile.am +++ b/src/gb/Makefile.am @@ -4,7 +4,10 @@ LIBVERSION=11:0:0 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include -AM_CFLAGS = -Wall ${GCC_FVISIBILITY_HIDDEN} -fno-strict-aliasing $(TALLOC_CFLAGS) +AM_CFLAGS = -Wall ${GCC_FVISIBILITY_HIDDEN} -fno-strict-aliasing \ + $(TALLOC_CFLAGS) \ + $(LIBMNL_CFLAGS) \ + $(NULL) # FIXME: this should eventually go into a milenage/Makefile.am noinst_HEADERS = common_vty.h gb_internal.h gprs_bssgp_internal.h gprs_ns2_internal.h -- cgit v1.2.3