diff options
author | Harald Welte <laforge@gnumonks.org> | 2015-12-05 23:38:18 +0100 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2015-12-05 23:38:18 +0100 |
commit | 90e614f7ccb0902e6ddb510bb10f78eb14a13d94 (patch) | |
tree | b9e4d2365e3d387f1aebcee6bf0e32b4f4f1ff12 /src/gb | |
parent | ee702cd590688c1e65296319c5bc4c9cf160ba65 (diff) |
remove our internal copy of talloc, use system libtalloc
Shipping our own private copy of talloc was a good idea in 2008,
when it was not readily available on most target platforms. Today,
the situation is quite different, as it is a standard library on
major Linux distributions.
Diffstat (limited to 'src/gb')
-rw-r--r-- | src/gb/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gb/Makefile.am b/src/gb/Makefile.am index dd0d213c..68aed138 100644 --- a/src/gb/Makefile.am +++ b/src/gb/Makefile.am @@ -3,7 +3,7 @@ LIBVERSION=4:0:0 AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/include -AM_CFLAGS = -Wall ${GCC_FVISIBILITY_HIDDEN} -fno-strict-aliasing +AM_CFLAGS = -Wall ${GCC_FVISIBILITY_HIDDEN} -fno-strict-aliasing $(TALLOC_CFLAGS) # FIXME: this should eventually go into a milenage/Makefile.am noinst_HEADERS = common_vty.h @@ -11,7 +11,7 @@ noinst_HEADERS = common_vty.h if ENABLE_GB lib_LTLIBRARIES = libosmogb.la -libosmogb_la_LDFLAGS = $(LTLDFLAGS_OSMOGB) -version-info $(LIBVERSION) +libosmogb_la_LDFLAGS = $(LTLDFLAGS_OSMOGB) -version-info $(LIBVERSION) $(TALLOC_LIBS) libosmogb_la_LIBADD = \ $(top_builddir)/src/libosmocore.la \ $(top_builddir)/src/vty/libosmovty.la \ |