From 90de7f8ac3e3f66197c328893c02e46b8fa5d667 Mon Sep 17 00:00:00 2001 From: Kim van der Riet Date: Fri, 15 Dec 2006 18:41:04 +0000 Subject: [for Jim Meyring] configure.ac: Restore the logic used to determine whether to git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@487616 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/configure.ac | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'qpid/cpp/configure.ac') diff --git a/qpid/cpp/configure.ac b/qpid/cpp/configure.ac index c7593247ca..0334b00fe9 100644 --- a/qpid/cpp/configure.ac +++ b/qpid/cpp/configure.ac @@ -36,11 +36,14 @@ AC_ARG_ENABLE(warnings, # Turn on this automake conditional if we are in a qpid # hierarchy (i.e. with gentools/ and specs/ sibling directories), # and if we have working java + javac. -build=yes AC_CHECK_PROGS([JAVA], [java], [no]) AC_CHECK_PROGS([JAVAC], [javac], [no]) -AM_CONDITIONAL([CAN_GENERATE_CODE], - [test x$JAVA = xyes -a x$JAVAC = xyes -a -d $srcdir/../gentools -a -d $srcdir/../specs ]) +build=yes +test x$JAVA = xno && build=no +test x$JAVAC = xno && build=no +test -d $srcdir/../gentools || build=no +test -d $srcdir/../specs || build=no +AM_CONDITIONAL([CAN_GENERATE_CODE], [test x$build = xyes]) # Warnings: Enable as many as possible, keep the code clean. Please # do not disable warnings or remove -Werror without discussing on -- cgit v1.2.1