view patches/brandweg-jaxws-build.patch @ 1:6dacd853fc28

Add autogen.sh and fix typo in classpath.
author gnu_andrew@member.fsf.org
date Tue, 08 Jan 2008 23:25:20 +0000
parents ee9668fe7b4a
children
line wrap: on
line source

Index: external/Makefile.am
===================================================================
RCS file: /sources/classpath/classpath/external/Makefile.am,v
retrieving revision 1.6
diff -u -3 -p -u -r1.6 Makefile.am
--- external/Makefile.am	10 Dec 2006 20:25:40 -0000	1.6
+++ external/Makefile.am	8 Jan 2008 22:44:06 -0000
@@ -1,5 +1,5 @@
 ## Input file for automake to generate the Makefile.in used by configure
 
-SUBDIRS = sax w3c_dom relaxngDatatype jsr166
+SUBDIRS = sax w3c_dom relaxngDatatype jsr166 jaxws
 
 EXTRA_DIST = README
Index: lib/Makefile.am
===================================================================
RCS file: /sources/classpath/classpath/lib/Makefile.am,v
retrieving revision 1.140
diff -u -3 -p -u -r1.140 Makefile.am
--- lib/Makefile.am	28 Dec 2007 17:35:35 -0000	1.140
+++ lib/Makefile.am	8 Jan 2008 22:44:18 -0000
@@ -5,7 +5,7 @@ JAVA_DEPEND = java.dep
 ## this file and restart the make process again
 sinclude $(JAVA_DEPEND)
 
-compile_classpath = $(vm_classes):$(top_srcdir):$(top_srcdir)/external/w3c_dom:$(top_srcdir)/external/sax:$(top_srcdir)/external/relaxngDatatype:$(top_srcdir)/external/jsr166:.:$(USER_CLASSLIB):$(PATH_TO_ESCHER)
+compile_classpath = $(vm_classes):$(top_srcdir):$(top_srcdir)/external/w3c_dom:$(top_srcdir)/external/sax:$(top_srcdir)/external/relaxngDatatype:$(top_srcdir)/external/jsr166:$(top_srcdir)/external/jaxws:.:$(USER_CLASSLIB):$(PATH_TO_ESCHER)
 
 # handling source to bytecode compiler programs like gcj, jikes  and kjc
 if FOUND_ECJ
Index: lib/gen-classlist.sh.in
===================================================================
RCS file: /sources/classpath/classpath/lib/gen-classlist.sh.in,v
retrieving revision 1.40
diff -u -3 -p -u -r1.40 gen-classlist.sh.in
--- lib/gen-classlist.sh.in	10 Dec 2006 20:25:49 -0000	1.40
+++ lib/gen-classlist.sh.in	8 Jan 2008 22:44:18 -0000
@@ -30,9 +30,10 @@ for dir in \
    @top_srcdir@/external/sax \
    @top_srcdir@/external/relaxngDatatype \
    @top_srcdir@/external/jsr166 \
+   @top_srcdir@/external/jaxws \
    ; do
    (cd $dir
-   for subdir in java javax gnu org sun; do
+   for subdir in java javax gnu org sun com; do
       if test -d $subdir; then
 	 @FIND@ $subdir -follow -name '*.java' -print |
 	 sort -r | sed -e 's,/\([^/]*\)$, \1,' |