bug-classpathx
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-classpathx] [bug #14950] undefined classpathref in mail/build.xml


From: Vadim Nasardinov
Subject: [Bug-classpathx] [bug #14950] undefined classpathref in mail/build.xml
Date: Thu, 10 Nov 2005 22:08:54 +0000
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7

URL:
  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=14950>

                 Summary: undefined classpathref in mail/build.xml
                 Project: Classpath Extensions
            Submitted by: vadim
            Submitted on: Thu 11/10/05 at 22:08
                Category: mail
                Severity: 3 - Normal
              Item Group: None
                  Status: None
                 Privacy: Public
             Assigned to: None
             Open/Closed: Open

    _______________________________________________________

Details:

This is for today's CVS checkout:

|$ cvs status build.xml | grep revision
|   Working revision:    1.14
|   Repository revision: 1.14    /cvsroot/classpathx/mail/build.xml,v


The path id "nntp.classpath" is undefined:

$ cat -n build.xml | grep -B2 nntp.classpath
   210      <javadoc destdir='${doc}' use='true' author='true'
   211        windowtitle='GNU JavaMail API documentation'
   212        classpathref='nntp.classpath'>


It used to have a definition up to and including version 1.4.  It was
removed in version 1.5 where a dependency on nntplib.jar was removed
and a new dependency on inetlib.jar was introduced:


|$ cvs diff -u -r1.4 -r1.5 build.xml 
|Index: build.xml
|===================================================================
|RCS file: /cvsroot/classpathx/mail/build.xml,v
|retrieving revision 1.4
|retrieving revision 1.5
|diff -u -r1.4 -r1.5
|--- build.xml   21 Sep 2003 12:01:19 -0000      1.4
|+++ build.xml   20 Oct 2003 18:49:13 -0000      1.5
|@@ -1,5 +1,5 @@
| <!--
|-$Id: build.xml,v 1.4 2003/09/21 12:01:19 dog Exp $
|+$Id: build.xml,v 1.5 2003/10/20 18:49:13 dog Exp $
| (C) Copyright 2003 Chris Burdess address@hidden
| 
| This file is part of GNU JavaMail.
|@@ -42,7 +42,7 @@
|        <property name='mbox.jar' location='mbox.jar'/>
|        <property name='maildir.jar' location='maildir.jar'/>
|        <property name='activation.jar' location='${lib}/activation.jar'/>
|-       <property name='nntplib.jar' location='${lib}/nntplib.jar'/>
|+       <property name='inetlib.jar' location='${lib}/inetlib.jar'/>
|        <property name='META-INF' location='${build}/META-INF'/>
|        <property name='address.map'
location='${META-INF}/javamail.address.map'/>
|        <property name='providers'
location='${META-INF}/javamail.providers'/>
|@@ -51,6 +51,7 @@
|        <path id='mail.classpath'>
|                <pathelement path='${classpath}'/>
|                <pathelement path='${activation.jar}'/>
|+               <pathelement path='${inetlib.jar}'/>
|        </path>
|        
|        <path id='provider.classpath'>
|@@ -58,11 +59,6 @@
|                <pathelement path='${build}'/>
|        </path>
| 
|-       <path id='nntp.classpath'>
|-               <path refid='provider.classpath'/>
|-               <pathelement path='${nntplib.jar}'/>
|-       </path>
|-
|        <!-- Targets -->
|        <target name='init'>
|                <tstamp/>
|@@ -114,7 +110,7 @@
| 
|        <target name='nntp' depends='gnumail' unless='disable-nntp'>
|                <javac srcdir='${src}' destdir='${build}'>
|-                       <classpath refid='nntp.classpath'/>
|+                       <classpath refid='provider.classpath'/>
|                        <include name='gnu/mail/providers/nntp/*.java'/>
|                </javac>
|                <echo file='${address.map}'>rfc822=nntp-post'


As it stands, the undefined "classpathref" prevents the "javadoc"
target from working.







    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?func=detailitem&item_id=14950>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]