[Jukebox-cvs] CVS update: J4 configure.in
Brought to you by:
vtt
From: CVS B. <vt...@fr...> - 2000-07-19 04:53:57
|
User: vt Date: 00/07/18 21:53:19 Modified: . configure.in Log: Oh my, JMX wasn't declared optional... Revision Changes Path 1.63 +4 -5 J4/configure.in CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/configure.in?annotate=1.63&cvsroot=jukebox4 CVSWeb: View this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/configure.in?rev=1.63&content-type=text/x-cvsweb-markup&cvsroot=jukebox4 CVSWeb: Diff to previous version: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/configure.in.diff?r1=1.63&r2=1.62&cvsroot=jukebox4 ----------------------------------- Index: configure.in =================================================================== RCS file: /usr/local/cvs/J4/configure.in,v retrieving revision 1.62 retrieving revision 1.63 diff -u -r1.62 -r1.63 --- configure.in 2000/07/17 02:15:25 1.62 +++ configure.in 2000/07/19 04:53:19 1.63 @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_REVISION($Id: configure.in,v 1.62 2000/07/17 02:15:25 vt Exp $)dnl +AC_REVISION($Id: configure.in,v 1.63 2000/07/19 04:53:19 vt Exp $)dnl dnl I'd like it to read the ./configure-options to allow both the basic set dnl of options, as well as the local set. @@ -266,12 +266,11 @@ ]) if ${TEST} "${JMX_ENABLED}" = "yes" ; then - AC_PATH_JAVACLASS(JMX,jmx,javax.management.Attribute,[ Where to find the JMX classes (http://java.sun.com/jmx/, jmxri.jar)]) - AC_PATH_JAVACLASS(JMXTOOLS,jmx,com.sun.jdmk.comm.HtmlAdaptorServer,[ Where to find the JMX tools (jmxtools.jar)]) + AC_PATH_JAVACLASS(JMX,jmx,javax.management.Attribute,[ Where to find the JMX classes (http://java.sun.com/jmx/, jmxri.jar)],"optional") + AC_PATH_JAVACLASS(JMXTOOLS,jmx,com.sun.jdmk.comm.HtmlAdaptorServer,[ Where to find the JMX tools (jmxtools.jar)],"optional") AM_CONDITIONAL(JMX,${TEST} -n "${JMX_CLASSES}") + fi - -AM_CONDITIONAL(JMX,${TEST} "${JMX_ENABLED}" = "yes") AC_MSG_CHECKING(mail classes) |