You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by le...@locus.apache.org on 2000/02/18 02:37:04 UTC

cvs commit: xml-xerces/java README

lehors      00/02/17 17:37:04

  Modified:    java     README
  Log:
  added information on how to build on Windows with the DOS shell
  
  Revision  Changes    Path
  1.3       +37 -9     xml-xerces/java/README
  
  Index: README
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/README,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- README	2000/02/14 18:32:56	1.2
  +++ README	2000/02/18 01:37:04	1.3
  @@ -1,13 +1,41 @@
  -Build Instructions:
  +			Xerces Java Build Instructions
   
  -To build Xerces Java on Windows, you need a copy of Cygnus's Cygwin.
  -See http://sourceware.cygnus.com/cygwin. Once Cygwin is installed,
  -or if you're on unix, all you need to do is then to go to the top of
  -the Xerces Java tree and type 'make'.
  +** On Windows:
   
  -If you're using JDK 1.1 and want to build the documentation you need
  +First, you need a copy of Cygnus's Cygwin.
  +See http://sourceware.cygnus.com/cygwin.
  +
  +If your JDK is properly installed on your system, you do not need to set
  +any CLASSPATH to build Xerces. If you have one, make sure it does not end
  +with a '\' or it will cause the build to fail.
  +
  +If you're using JDK 1.1 and want to build the documentation you then need
  +to specify where the JDK 1.2 java and javadoc programs are by setting
  +the variable JDK12BIN in your environment with something like:
  +
  +    set JDK12BIN="C:/jdk1.2.2/bin"
  +
  +Note the use of forward slashes! Depending on which version of make you are
  +using having blackshlashes there may cause the build to fail.
  +
  +Then, if you're not using the Cygwin bash shell, you need to set the variable
  +MAKE_MODE in your environment like this:
  +
  +    set MAKE_MODE=UNIX
  +
  +Finally, from the top of the Xerces Java tree, run make.
  +
  +
  +
  +** On Unix:
  +
  +If your JDK is properly installed on your system, you do not need to set
  +any CLASSPATH to build Xerces.
  +
  +If you're using JDK 1.1 and want to build the documentation you then need
   to specify where the JDK 1.2 java and javadoc programs are by setting
  -the variable JDK12BIN, either in your environment or simply when
  -calling make with something like:
  +the variable JDK12BIN in your environment with something like:
  +
  +    set JDK12BIN "/usr/local/jdk-1.2.2/bin"
   
  -	make JDK12BIN="<pathToJDK12>"
  +Then, from the top of the Xerces Java tree, run make.