This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch: FYI: PR 30647
- From: Tom Tromey <tromey at redhat dot com>
- To: GNU Classpath Patches <classpath-patches at gnu dot org>
- Cc: GCJ-patches <java-patches at gcc dot gnu dot org>
- Date: 09 Feb 2007 11:41:24 -0700
- Subject: Patch: FYI: PR 30647
- Reply-to: tromey at redhat dot com
I'm checking this in to gcc svn and classpath.
This fixes a configury bug. Apparently it is possible to have a
system that has dssi.h but not jack/jack.h. This updates configure to
check for both.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
PR libgcj/30647:
* configure: Rebuilt.
* configure.ac: Also check for jack/jack.h.
Index: configure.ac
===================================================================
--- configure.ac (revision 121774)
+++ configure.ac (working copy)
@@ -191,7 +191,9 @@
no) COMPILE_DSSI=no ;;
*) COMPILE_DSSI=yes ;;
esac],
- [AC_CHECK_HEADERS([dssi.h],COMPILE_DSSI=yes,COMPILE_DSSI=no)])
+ [COMPILE_DSSI=no
+ AC_CHECK_HEADERS([dssi.h], [
+ AC_CHECK_HEADERS([jack/jack.h],COMPILE_DSSI=yes)])])
AM_CONDITIONAL(CREATE_DSSI_LIBRARIES, test "x${COMPILE_DSSI}" = xyes)
dnl -----------------------------------------------------------