summaryrefslogtreecommitdiff
path: root/build_posix
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@wiredtiger.com>2014-04-24 08:37:09 +1000
committerMichael Cahill <michael.cahill@wiredtiger.com>2014-04-24 08:37:09 +1000
commitef86c8fe24ff7303cdc8c5bd423bc74e3dcebdbd (patch)
tree5a519202214ff781372b2df6b9055ed4e2e0570f /build_posix
parent89578002975849ddeaf375e17351412c21039bf0 (diff)
downloadmongo-ef86c8fe24ff7303cdc8c5bd423bc74e3dcebdbd.tar.gz
Remove Java and Python build rules that relied on "--enable-debug". Always require junit to test the Java build, and don't turn on the "-g" flag in the Python build: we're not debugging the glue code in general.
Diffstat (limited to 'build_posix')
-rw-r--r--build_posix/configure.ac.in6
1 files changed, 1 insertions, 5 deletions
diff --git a/build_posix/configure.ac.in b/build_posix/configure.ac.in
index 3e88a4ad34a..1592a486ed3 100644
--- a/build_posix/configure.ac.in
+++ b/build_posix/configure.ac.in
@@ -33,8 +33,6 @@ else
fi
fi
-AM_CONDITIONAL([DEBUG], [test "$wt_cv_enable_debug" = "yes"])
-
# Java and Python APIs
if test "$wt_cv_enable_java" = "yes" -o "$wt_cv_enable_python" = "yes"; then
AX_PKG_SWIG(2.0.4, [],
@@ -46,9 +44,7 @@ if test "$wt_cv_enable_java" = "yes"; then
AX_PROG_JAVAC
AX_PROG_JAR
AX_JNI_INCLUDE_DIR
- if test "$wt_cv_enable_debug" = "yes"; then
- AX_CHECK_JUNIT
- fi
+ AX_CHECK_JUNIT
for JNI_INCLUDE_DIR in $JNI_INCLUDE_DIRS ; do
JNI_CPPFLAGS="$JNI_CPPFLAGS -I$JNI_INCLUDE_DIR"
done