From 9dca9027b75b706f333ede584beb09143cb98cbd Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Thu, 9 Mar 2023 16:31:12 +0700 Subject: [PATCH] coding: clean up Makefile.am * Remove TALLOC_{CFLAGS,LIBS} - talloc is not used directly * Keep conditional ENABLE_PSEUDOTALLOC for embedded builds Change-Id: I18f0a65a47c37989f03928f99c4687bf8007d437 --- src/coding/Makefile.am | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/coding/Makefile.am b/src/coding/Makefile.am index 905d68408..bb7bde2cc 100644 --- a/src/coding/Makefile.am +++ b/src/coding/Makefile.am @@ -8,7 +8,7 @@ AM_CPPFLAGS = \ -I"$(top_builddir)/include" \ -I"$(top_builddir)" \ $(NULL) -AM_CFLAGS = -Wall $(TALLOC_CFLAGS) +AM_CFLAGS = -Wall if ENABLE_PSEUDOTALLOC AM_CPPFLAGS += -I$(top_srcdir)/src/pseudotalloc @@ -25,10 +25,9 @@ libosmocoding_la_SOURCES = \ gsm0503_amr_dtx.c libosmocoding_la_LDFLAGS = \ $(LTLDFLAGS_OSMOCODING) \ - -version-info \ - $(LIBVERSION) \ + -version-info $(LIBVERSION) \ -no-undefined \ - $(TALLOC_LIBS) + $(NULL) libosmocoding_la_LIBADD = \ $(top_builddir)/src/core/libosmocore.la \