aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-03-07 20:24:30 +0100
committerHarald Welte <laforge@gnumonks.org>2010-03-07 20:24:30 +0100
commitcbb29f7c94ad2a7cb0ebe7d43cbef5fb9d11d62e (patch)
tree83b5be0646f64acc70d4cb6e6826029f6dd57311
parentd3ff15fc818887be3720265b297ca7f1ec28c458 (diff)
add --disable-talloc option to build without talloc support
-rw-r--r--configure.in6
-rw-r--r--include/osmocore/Makefile.am6
-rw-r--r--src/Makefile.am6
3 files changed, 16 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index a5c5f6b35..115419670 100644
--- a/configure.in
+++ b/configure.in
@@ -30,6 +30,12 @@ AC_SUBST(SYMBOL_VISIBILITY)
dnl Generate the output
AM_CONFIG_HEADER(config.h)
+AC_ARG_ENABLE(talloc,
+ [ --disable-talloc Support message buffer ],
+ [enable_talloc=0], [enable_talloc=1])
+
+AM_CONDITIONAL(ENABLE_TALLOC, test "x$enable_talloc" = "x1")
+
AC_OUTPUT(
libosmocore.pc
include/osmocore/Makefile
diff --git a/include/osmocore/Makefile.am b/include/osmocore/Makefile.am
index 9c4fc757d..adcae538e 100644
--- a/include/osmocore/Makefile.am
+++ b/include/osmocore/Makefile.am
@@ -1,7 +1,11 @@
-osmocore_HEADERS = signal.h linuxlist.h timer.h talloc.h msgb.h select.h \
+osmocore_HEADERS = signal.h linuxlist.h timer.h select.h msgb.h \
tlv.h bitvec.h comp128.h statistics.h gsm_utils.h utils.h \
gsmtap.h write_queue.h rsl.h gsm48.h rxlev_stat.h
+if ENABLE_TALLOC
+osmocore_HEADERS += talloc.h
+endif
+
osmocoredir = $(includedir)/osmocore
SUBDIRS = protocol
diff --git a/src/Makefile.am b/src/Makefile.am
index 99424522f..5122e73bd 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -7,6 +7,10 @@ AM_CFLAGS = -fPIC -Wall
lib_LTLIBRARIES = libosmocore.la
-libosmocore_la_SOURCES = msgb.c timer.c talloc.c select.c signal.c \
+libosmocore_la_SOURCES = timer.c select.c signal.c msgb.c \
tlv_parser.c bitvec.c comp128.c gsm_utils.c statistics.c \
write_queue.c utils.c rsl.c gsm48.c rxlev_stat.c
+
+if ENABLE_TALLOC
+libosmocore_la_SOURCES += talloc.c
+endif