summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-02-17 12:42:37 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2011-02-17 12:42:37 +0100
commit237df37a86479e1f60e73bdcd1da15ccc319fa15 (patch)
tree438de3db68948b495d6d110ca5303d1fa14d8b30
parent1100fd18b4ea7730daff95f2c3e5ceff9f92a3e3 (diff)
downloadrsyslog-237df37a86479e1f60e73bdcd1da15ccc319fa15.tar.gz
rsyslog-237df37a86479e1f60e73bdcd1da15ccc319fa15.tar.xz
rsyslog-237df37a86479e1f60e73bdcd1da15ccc319fa15.zip
bugfix: testbench was not activated if no Java was present on system
... what actually was a left-over. Java is no longer required.
-rw-r--r--ChangeLog2
-rw-r--r--configure.ac5
2 files changed, 2 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 72e29465..14723f3d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,8 @@ Version 5.6.3 [V5-STABLE] (rgerhards), 2011-01-26
- bugfix: batches which had actions in error were not properly retried in
all cases
- bugfix: imfile did duplicate messages under some circumstances
+- bugfix: testbench was not activated if no Java was present on system
+ ... what actually was a left-over. Java is no longer required.
---------------------------------------------------------------------------
Version 5.6.2 [V5-STABLE] (rgerhards), 2010-11-30
- bugfix: compile failed on systems without epoll_create1()
diff --git a/configure.ac b/configure.ac
index aeccfb8b..dd681617 100644
--- a/configure.ac
+++ b/configure.ac
@@ -746,11 +746,6 @@ AC_ARG_ENABLE(testbench,
esac],
[enable_testbench=yes]
)
-if test "$enable_testbench" = "yes"; then
- if test x$HAVE_JAVAC = x; then
- enable_testbench='no'
- fi
-fi
AM_CONDITIONAL(ENABLE_TESTBENCH, test x$enable_testbench = xyes)