[Jukebox-cvs] CVS update: J4 Makefile.am configure.in
Brought to you by:
vtt
From: CVS B. <vt...@fr...> - 2000-10-25 06:56:42
|
User: vt Date: 00/10/24 23:56:47 Modified: . Makefile.am configure.in Log: Moved the files from gnu.j4.examples to gnu.j4.test.unit and gnu.j4.test.integration, where they belong. Also, makeup changes and small fixes. Revision Changes Path 1.26 +5 -3 J4/Makefile.am CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/Makefile.am?annotate=1.26&cvsroot=jukebox4 CVSWeb: View this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/Makefile.am?rev=1.26&content-type=text/x-cvsweb-markup&cvsroot=jukebox4 CVSWeb: Diff to previous version: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/Makefile.am.diff?r1=1.26&r2=1.25&cvsroot=jukebox4 ----------------------------------- Index: Makefile.am =================================================================== RCS file: /usr/local/cvs/J4/Makefile.am,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- Makefile.am 2000/08/24 20:35:48 1.25 +++ Makefile.am 2000/10/25 06:56:46 1.26 @@ -1,11 +1,11 @@ ## Makefile.am: top level automake makefile for Jukebox. ## Process this file with automake to get Makefile.in ## -## $Id: Makefile.am,v 1.25 2000/08/24 20:35:48 vt Exp $ +## $Id: Makefile.am,v 1.26 2000/10/25 06:56:46 vt Exp $ # Makefile.in: top level autoconf makefile for Jukebox. # -# $Id: Makefile.am,v 1.25 2000/08/24 20:35:48 vt Exp $ +# $Id: Makefile.am,v 1.26 2000/10/25 06:56:46 vt Exp $ AUTOMAKE_OPTIONS = gnu @@ -69,7 +69,9 @@ gnu.j4.io.storage.fs \ gnu.j4.net \ gnu.j4.net.telnet \ - gnu.j4.jmx + gnu.j4.jmx \ + gnu.j4.test.unit \ + gnu.j4.test.integration # The XXX_PACKAGES define the optional components 1.67 +11 -6 J4/configure.in CVSWEB Options: ------------------- CVSWeb: Annotate this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/configure.in?annotate=1.67&cvsroot=jukebox4 CVSWeb: View this file: http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/J4/configure.in?rev=1.67&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.67&r2=1.66&cvsroot=jukebox4 ----------------------------------- Index: configure.in =================================================================== RCS file: /usr/local/cvs/J4/configure.in,v retrieving revision 1.66 retrieving revision 1.67 diff -u -r1.66 -r1.67 --- configure.in 2000/09/13 20:14:53 1.66 +++ configure.in 2000/10/25 06:56:46 1.67 @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_REVISION($Id: configure.in,v 1.66 2000/09/13 20:14:53 vt Exp $)dnl +AC_REVISION($Id: configure.in,v 1.67 2000/10/25 06:56:46 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. @@ -30,6 +30,7 @@ VERSION_MAJOR="2" VERSION_MINOR="1" PATCHLEVEL="0" + AC_SUBST(VERSION_MAJOR)dnl AC_SUBST(VERSION_MINOR)dnl AC_SUBST(PATCHLEVEL)dnl @@ -428,11 +429,8 @@ examples/index.html examples/exampleConfigTest examples/exampleLogTest - examples/exampleLruCacheTest examples/exampleResourcePoolTest examples/exampleResourcePoolFailureTest - examples/exampleRWLockTest - examples/exampleSemaphoreGroupTest examples/exampleSimpleServiceTest examples/exampleTelnetTest examples/exampleXmlConfigurationTest @@ -466,14 +464,21 @@ src/java/gnu/j4/net/Makefile src/java/gnu/j4/net/ldap/Makefile src/java/gnu/j4/net/telnet/Makefile + src/java/gnu/j4/test/Makefile + src/java/gnu/j4/test/integration/Makefile + src/java/gnu/j4/test/unit/Makefile src/java/gnu/j4/Makefile src/java/gnu/j4/LocalConfig.java src/java/gnu/Makefile src/java/Makefile src/Makefile src/scripts/Makefile - src/scripts/j4wrapper - src/scripts/ejbserver + src/scripts/run/Makefile + src/scripts/run/j4wrapper + src/scripts/run/ejbserver + src/scripts/test/Makefile + src/scripts/test/LruCache + src/scripts/test/SemaphoreGroup Makefile ) |