summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlrich Ölmann <u.oelmann@pengutronix.de>2019-09-30 09:26:12 +0200
committerRoland Hieber <rhi@pengutronix.de>2019-10-11 16:49:39 +0200
commit81c542966f9948c71821fdd26935ede49f819cd5 (patch)
tree0af2f8b47df162060cb0aa26cfa49f26c4925222
parent1aeb1e4fdff012e7382599df5ea59de9383228d5 (diff)
downloaddt-utils-81c542966f9948c71821fdd26935ede49f819cd5.tar.gz
dt-utils-81c542966f9948c71821fdd26935ede49f819cd5.tar.xz
configure: remove build time option '--disable-logging'
If enabled it defined the C preprocessor macro 'ENABLE_LOGGING' which wasn't used anywhere. Signed-off-by: Ulrich Ölmann <u.oelmann@pengutronix.de>
-rw-r--r--configure.ac8
1 files changed, 0 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac
index c2486af..5dd17b2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -18,13 +18,6 @@ AC_PREFIX_DEFAULT([/usr])
AC_PROG_SED
AC_PROG_MKDIR_P
-AC_ARG_ENABLE([logging],
- AS_HELP_STRING([--disable-logging], [disable system logging @<:@default=enabled@:>@]),
- [], enable_logging=yes)
-AS_IF([test "x$enable_logging" = "xyes"], [
- AC_DEFINE(ENABLE_LOGGING, [1], [System logging.])
-])
-
AC_ARG_ENABLE([debug],
AS_HELP_STRING([--enable-debug], [enable debug messages @<:@default=disabled@:>@]),
[], [enable_debug=no])
@@ -75,7 +68,6 @@ AC_MSG_RESULT([
cflags: ${CFLAGS}
ldflags: ${LDFLAGS}
- logging: ${enable_logging}
debug: ${enable_debug}
state-backward-compatibility: ${enable_state_backward_compatibility}
])