You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Philip Wilder (JIRA)" <de...@db.apache.org> on 2005/08/22 17:00:08 UTC

[jira] Created: (DERBY-527) Incorrect insane build on windows platform

Incorrect insane build on windows platform
------------------------------------------

         Key: DERBY-527
         URL: http://issues.apache.org/jira/browse/DERBY-527
     Project: Derby
        Type: Bug
  Components: Build tools  
    Versions: 10.2.0.0    
 Environment: ------------------ Java Information ------------------
Java Version:    1.4.2_08
Java Vendor:     Sun Microsystems Inc.
Java home:       C:\Program Files\Java\j2re1.4.2_08
Java classpath:  .;c:\derby\derbyRecent\classes;c:\eclipse\db2jcc.jar;c:\eclipse\db2jcc_license_c.jar;C:\derby\derbyRecent\tools\java\jakarta-oro-2.0.8.jar;C:\derby\derbyRecent\tools\java\geronimo-spec-servlet-2.4-rc4.jar;C:\derbyDita\lib\avalon-framework-cvs-20020806.jar;C:\derbyDita\lib\batik.jar;C:\derbyDita\lib\fop.jar;C:\j2sdk1.4.2_05\lib\tools.jar;C:\derby\emma-2.0.5312\lib\emma.jar
OS name:         Windows XP
OS architecture: x86
OS version:      5.1
Java user name:  050503w
Java user home:  C:\Documents and Settings\050503w
Java user dir:   C:\derby\derbyRecent
java.specification.name: Java Platform API Specification
java.specification.version: 1.4
--------- Derby Information --------
JRE - JDBC: J2SE 1.4.2 - JDBC 3.0
[C:\derby\derbyRecent\classes] 10.2.0.0 alpha - (1)
[C:\eclipse\db2jcc.jar] 2.4 - (17)
[C:\eclipse\db2jcc_license_c.jar] 2.4 - (17)
------------------------------------------------------
----------------- Locale Information -----------------
Current Locale :  [English/United States [en_US]]
Found support for locale: [de_DE]
	 version: 10.2.0.0 alpha - (1)
Found support for locale: [es]
	 version: 10.2.0.0 alpha - (1)
Found support for locale: [fr]
	 version: 10.2.0.0 alpha - (1)
Found support for locale: [it]
	 version: 10.2.0.0 alpha - (1)
Found support for locale: [ja_JP]
	 version: 10.2.0.0 alpha - (1)
Found support for locale: [ko_KR]
	 version: 10.2.0.0 alpha - (1)
Found support for locale: [pt_BR]
	 version: 10.2.0.0 alpha - (1)
Found support for locale: [zh_CN]
	 version: 10.2.0.0 alpha - (1)
Found support for locale: [zh_TW]
	 version: 10.2.0.0 alpha - (1)
------------------------------------------------------

    Reporter: Philip Wilder
     Fix For: 10.2.0.0


I've found that Derby will not build sane properly for me. I have isolated it to here:

  <target name="evaluate.sane">
    <condition property="generate.sane">
      <equals arg1="${sane}" arg2="true"/>
    </condition>
  </target>

The scope of the generate.sane property is limited to this target (only tested in a Windows XP environment), ergo it will always be an insane build. Patch to follow shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


Re: [jira] Created: (DERBY-527) Incorrect insane build on windows platform

Posted by Andrew McIntyre <mc...@gmail.com>.
On Aug 22, 2005, at 8:00 AM, Philip Wilder (JIRA) wrote:

> Incorrect insane build on windows platform
> ------------------------------------------
>
> I've found that Derby will not build sane properly for me. I have  
> isolated it to here:
>
>   <target name="evaluate.sane">
>     <condition property="generate.sane">
>       <equals arg1="${sane}" arg2="true"/>
>     </condition>
>   </target>
>
> The scope of the generate.sane property is limited to this target  
> (only tested in a Windows XP environment), ergo it will always be  
> an insane build. Patch to follow shortly.

*scratches head*

Well, it works, but i'm not sure why.  From the Ant docs:

"Properties are immutable: whoever sets a property first freezes it  
for the rest of the build; they are most definitely not variable."

Once generate.sane is set by the <condition>, it shouldn't go out of  
scope: it should be set for the rest of the build.

Oh well, also fixed another problem if sane just wasn't set at all with:

     <condition property="generate.sane">
       <or>
         <equals arg1="${sane}" arg2="true"/>
         <not>
           <isset property="${sane}"/>
         </not>
       </or>
     </condition>

Committed, revision 234508.

andrew

[jira] Resolved: (DERBY-527) Incorrect insane build on windows platform

Posted by "Andrew McIntyre (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-527?page=all ]
     
Andrew McIntyre resolved DERBY-527:
-----------------------------------

    Fix Version: 10.1.2.0
                 10.1.1.2
     Resolution: Fixed

Merged to 10.1 branch with revision 321016.

> Incorrect insane build on windows platform
> ------------------------------------------
>
>          Key: DERBY-527
>          URL: http://issues.apache.org/jira/browse/DERBY-527
>      Project: Derby
>         Type: Bug
>   Components: Build tools
>     Versions: 10.2.0.0
>  Environment: ------------------ Java Information ------------------
> Java Version:    1.4.2_08
> Java Vendor:     Sun Microsystems Inc.
> Java home:       C:\Program Files\Java\j2re1.4.2_08
> Java classpath:  .;c:\derby\derbyRecent\classes;c:\eclipse\db2jcc.jar;c:\eclipse\db2jcc_license_c.jar;C:\derby\derbyRecent\tools\java\jakarta-oro-2.0.8.jar;C:\derby\derbyRecent\tools\java\geronimo-spec-servlet-2.4-rc4.jar;C:\derbyDita\lib\avalon-framework-cvs-20020806.jar;C:\derbyDita\lib\batik.jar;C:\derbyDita\lib\fop.jar;C:\j2sdk1.4.2_05\lib\tools.jar;C:\derby\emma-2.0.5312\lib\emma.jar
> OS name:         Windows XP
> OS architecture: x86
> OS version:      5.1
> Java user name:  050503w
> Java user home:  C:\Documents and Settings\050503w
> Java user dir:   C:\derby\derbyRecent
> java.specification.name: Java Platform API Specification
> java.specification.version: 1.4
> --------- Derby Information --------
> JRE - JDBC: J2SE 1.4.2 - JDBC 3.0
> [C:\derby\derbyRecent\classes] 10.2.0.0 alpha - (1)
> [C:\eclipse\db2jcc.jar] 2.4 - (17)
> [C:\eclipse\db2jcc_license_c.jar] 2.4 - (17)
> ------------------------------------------------------
> ----------------- Locale Information -----------------
> Current Locale :  [English/United States [en_US]]
> Found support for locale: [de_DE]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [es]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [fr]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [it]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ja_JP]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ko_KR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [pt_BR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_CN]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_TW]
> 	 version: 10.2.0.0 alpha - (1)
> ------------------------------------------------------
>     Reporter: Philip Wilder
>     Assignee: Philip Wilder
>      Fix For: 10.2.0.0, 10.1.2.0, 10.1.1.2
>  Attachments: BuildXML.patch
>
> I've found that Derby will not build sane properly for me. I have isolated it to here:
>   <target name="evaluate.sane">
>     <condition property="generate.sane">
>       <equals arg1="${sane}" arg2="true"/>
>     </condition>
>   </target>
> The scope of the generate.sane property is limited to this target (only tested in a Windows XP environment), ergo it will always be an insane build. Patch to follow shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (DERBY-527) Incorrect insane build on windows platform

Posted by "Andrew McIntyre (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-527?page=all ]
     
Andrew McIntyre resolved DERBY-527:
-----------------------------------

    Resolution: Fixed

Committed, revision 234508.

> Incorrect insane build on windows platform
> ------------------------------------------
>
>          Key: DERBY-527
>          URL: http://issues.apache.org/jira/browse/DERBY-527
>      Project: Derby
>         Type: Bug
>   Components: Build tools
>     Versions: 10.2.0.0
>  Environment: ------------------ Java Information ------------------
> Java Version:    1.4.2_08
> Java Vendor:     Sun Microsystems Inc.
> Java home:       C:\Program Files\Java\j2re1.4.2_08
> Java classpath:  .;c:\derby\derbyRecent\classes;c:\eclipse\db2jcc.jar;c:\eclipse\db2jcc_license_c.jar;C:\derby\derbyRecent\tools\java\jakarta-oro-2.0.8.jar;C:\derby\derbyRecent\tools\java\geronimo-spec-servlet-2.4-rc4.jar;C:\derbyDita\lib\avalon-framework-cvs-20020806.jar;C:\derbyDita\lib\batik.jar;C:\derbyDita\lib\fop.jar;C:\j2sdk1.4.2_05\lib\tools.jar;C:\derby\emma-2.0.5312\lib\emma.jar
> OS name:         Windows XP
> OS architecture: x86
> OS version:      5.1
> Java user name:  050503w
> Java user home:  C:\Documents and Settings\050503w
> Java user dir:   C:\derby\derbyRecent
> java.specification.name: Java Platform API Specification
> java.specification.version: 1.4
> --------- Derby Information --------
> JRE - JDBC: J2SE 1.4.2 - JDBC 3.0
> [C:\derby\derbyRecent\classes] 10.2.0.0 alpha - (1)
> [C:\eclipse\db2jcc.jar] 2.4 - (17)
> [C:\eclipse\db2jcc_license_c.jar] 2.4 - (17)
> ------------------------------------------------------
> ----------------- Locale Information -----------------
> Current Locale :  [English/United States [en_US]]
> Found support for locale: [de_DE]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [es]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [fr]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [it]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ja_JP]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ko_KR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [pt_BR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_CN]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_TW]
> 	 version: 10.2.0.0 alpha - (1)
> ------------------------------------------------------
>     Reporter: Philip Wilder
>      Fix For: 10.2.0.0
>  Attachments: BuildXML.patch
>
> I've found that Derby will not build sane properly for me. I have isolated it to here:
>   <target name="evaluate.sane">
>     <condition property="generate.sane">
>       <equals arg1="${sane}" arg2="true"/>
>     </condition>
>   </target>
> The scope of the generate.sane property is limited to this target (only tested in a Windows XP environment), ergo it will always be an insane build. Patch to follow shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (DERBY-527) Incorrect insane build on windows platform

Posted by "Philip Wilder (JIRA)" <de...@db.apache.org>.
    [ http://issues.apache.org/jira/browse/DERBY-527?page=comments#action_12319612 ] 

Philip Wilder commented on DERBY-527:
-------------------------------------

It should be noted that my ant version is 1.6.2

> Incorrect insane build on windows platform
> ------------------------------------------
>
>          Key: DERBY-527
>          URL: http://issues.apache.org/jira/browse/DERBY-527
>      Project: Derby
>         Type: Bug
>   Components: Build tools
>     Versions: 10.2.0.0
>  Environment: ------------------ Java Information ------------------
> Java Version:    1.4.2_08
> Java Vendor:     Sun Microsystems Inc.
> Java home:       C:\Program Files\Java\j2re1.4.2_08
> Java classpath:  .;c:\derby\derbyRecent\classes;c:\eclipse\db2jcc.jar;c:\eclipse\db2jcc_license_c.jar;C:\derby\derbyRecent\tools\java\jakarta-oro-2.0.8.jar;C:\derby\derbyRecent\tools\java\geronimo-spec-servlet-2.4-rc4.jar;C:\derbyDita\lib\avalon-framework-cvs-20020806.jar;C:\derbyDita\lib\batik.jar;C:\derbyDita\lib\fop.jar;C:\j2sdk1.4.2_05\lib\tools.jar;C:\derby\emma-2.0.5312\lib\emma.jar
> OS name:         Windows XP
> OS architecture: x86
> OS version:      5.1
> Java user name:  050503w
> Java user home:  C:\Documents and Settings\050503w
> Java user dir:   C:\derby\derbyRecent
> java.specification.name: Java Platform API Specification
> java.specification.version: 1.4
> --------- Derby Information --------
> JRE - JDBC: J2SE 1.4.2 - JDBC 3.0
> [C:\derby\derbyRecent\classes] 10.2.0.0 alpha - (1)
> [C:\eclipse\db2jcc.jar] 2.4 - (17)
> [C:\eclipse\db2jcc_license_c.jar] 2.4 - (17)
> ------------------------------------------------------
> ----------------- Locale Information -----------------
> Current Locale :  [English/United States [en_US]]
> Found support for locale: [de_DE]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [es]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [fr]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [it]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ja_JP]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ko_KR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [pt_BR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_CN]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_TW]
> 	 version: 10.2.0.0 alpha - (1)
> ------------------------------------------------------
>     Reporter: Philip Wilder
>      Fix For: 10.2.0.0
>  Attachments: BuildXML.patch
>
> I've found that Derby will not build sane properly for me. I have isolated it to here:
>   <target name="evaluate.sane">
>     <condition property="generate.sane">
>       <equals arg1="${sane}" arg2="true"/>
>     </condition>
>   </target>
> The scope of the generate.sane property is limited to this target (only tested in a Windows XP environment), ergo it will always be an insane build. Patch to follow shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Reopened: (DERBY-527) Incorrect insane build on windows platform

Posted by "Andrew McIntyre (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-527?page=all ]
     
Andrew McIntyre reopened DERBY-527:
-----------------------------------


> Incorrect insane build on windows platform
> ------------------------------------------
>
>          Key: DERBY-527
>          URL: http://issues.apache.org/jira/browse/DERBY-527
>      Project: Derby
>         Type: Bug
>   Components: Build tools
>     Versions: 10.2.0.0
>  Environment: ------------------ Java Information ------------------
> Java Version:    1.4.2_08
> Java Vendor:     Sun Microsystems Inc.
> Java home:       C:\Program Files\Java\j2re1.4.2_08
> Java classpath:  .;c:\derby\derbyRecent\classes;c:\eclipse\db2jcc.jar;c:\eclipse\db2jcc_license_c.jar;C:\derby\derbyRecent\tools\java\jakarta-oro-2.0.8.jar;C:\derby\derbyRecent\tools\java\geronimo-spec-servlet-2.4-rc4.jar;C:\derbyDita\lib\avalon-framework-cvs-20020806.jar;C:\derbyDita\lib\batik.jar;C:\derbyDita\lib\fop.jar;C:\j2sdk1.4.2_05\lib\tools.jar;C:\derby\emma-2.0.5312\lib\emma.jar
> OS name:         Windows XP
> OS architecture: x86
> OS version:      5.1
> Java user name:  050503w
> Java user home:  C:\Documents and Settings\050503w
> Java user dir:   C:\derby\derbyRecent
> java.specification.name: Java Platform API Specification
> java.specification.version: 1.4
> --------- Derby Information --------
> JRE - JDBC: J2SE 1.4.2 - JDBC 3.0
> [C:\derby\derbyRecent\classes] 10.2.0.0 alpha - (1)
> [C:\eclipse\db2jcc.jar] 2.4 - (17)
> [C:\eclipse\db2jcc_license_c.jar] 2.4 - (17)
> ------------------------------------------------------
> ----------------- Locale Information -----------------
> Current Locale :  [English/United States [en_US]]
> Found support for locale: [de_DE]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [es]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [fr]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [it]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ja_JP]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ko_KR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [pt_BR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_CN]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_TW]
> 	 version: 10.2.0.0 alpha - (1)
> ------------------------------------------------------
>     Reporter: Philip Wilder
>     Assignee: Philip Wilder
>      Fix For: 10.2.0.0, 10.1.2.0, 10.1.1.2
>  Attachments: BuildXML.patch
>
> I've found that Derby will not build sane properly for me. I have isolated it to here:
>   <target name="evaluate.sane">
>     <condition property="generate.sane">
>       <equals arg1="${sane}" arg2="true"/>
>     </condition>
>   </target>
> The scope of the generate.sane property is limited to this target (only tested in a Windows XP environment), ergo it will always be an insane build. Patch to follow shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Closed: (DERBY-527) Incorrect insane build on windows platform

Posted by "Philip Wilder (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-527?page=all ]
     
Philip Wilder closed DERBY-527:
-------------------------------

    Assign To: Philip Wilder

> Incorrect insane build on windows platform
> ------------------------------------------
>
>          Key: DERBY-527
>          URL: http://issues.apache.org/jira/browse/DERBY-527
>      Project: Derby
>         Type: Bug
>   Components: Build tools
>     Versions: 10.2.0.0
>  Environment: ------------------ Java Information ------------------
> Java Version:    1.4.2_08
> Java Vendor:     Sun Microsystems Inc.
> Java home:       C:\Program Files\Java\j2re1.4.2_08
> Java classpath:  .;c:\derby\derbyRecent\classes;c:\eclipse\db2jcc.jar;c:\eclipse\db2jcc_license_c.jar;C:\derby\derbyRecent\tools\java\jakarta-oro-2.0.8.jar;C:\derby\derbyRecent\tools\java\geronimo-spec-servlet-2.4-rc4.jar;C:\derbyDita\lib\avalon-framework-cvs-20020806.jar;C:\derbyDita\lib\batik.jar;C:\derbyDita\lib\fop.jar;C:\j2sdk1.4.2_05\lib\tools.jar;C:\derby\emma-2.0.5312\lib\emma.jar
> OS name:         Windows XP
> OS architecture: x86
> OS version:      5.1
> Java user name:  050503w
> Java user home:  C:\Documents and Settings\050503w
> Java user dir:   C:\derby\derbyRecent
> java.specification.name: Java Platform API Specification
> java.specification.version: 1.4
> --------- Derby Information --------
> JRE - JDBC: J2SE 1.4.2 - JDBC 3.0
> [C:\derby\derbyRecent\classes] 10.2.0.0 alpha - (1)
> [C:\eclipse\db2jcc.jar] 2.4 - (17)
> [C:\eclipse\db2jcc_license_c.jar] 2.4 - (17)
> ------------------------------------------------------
> ----------------- Locale Information -----------------
> Current Locale :  [English/United States [en_US]]
> Found support for locale: [de_DE]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [es]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [fr]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [it]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ja_JP]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ko_KR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [pt_BR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_CN]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_TW]
> 	 version: 10.2.0.0 alpha - (1)
> ------------------------------------------------------
>     Reporter: Philip Wilder
>     Assignee: Philip Wilder
>      Fix For: 10.2.0.0
>  Attachments: BuildXML.patch
>
> I've found that Derby will not build sane properly for me. I have isolated it to here:
>   <target name="evaluate.sane">
>     <condition property="generate.sane">
>       <equals arg1="${sane}" arg2="true"/>
>     </condition>
>   </target>
> The scope of the generate.sane property is limited to this target (only tested in a Windows XP environment), ergo it will always be an insane build. Patch to follow shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (DERBY-527) Incorrect insane build on windows platform

Posted by "Philip Wilder (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-527?page=all ]

Philip Wilder updated DERBY-527:
--------------------------------

    Attachment: BuildXML.patch

Moves the ensuresanitystate.sane and ensuresanitystate.insane into the evaluate.sane target so they can evaluate the generate.sane property properly.

> Incorrect insane build on windows platform
> ------------------------------------------
>
>          Key: DERBY-527
>          URL: http://issues.apache.org/jira/browse/DERBY-527
>      Project: Derby
>         Type: Bug
>   Components: Build tools
>     Versions: 10.2.0.0
>  Environment: ------------------ Java Information ------------------
> Java Version:    1.4.2_08
> Java Vendor:     Sun Microsystems Inc.
> Java home:       C:\Program Files\Java\j2re1.4.2_08
> Java classpath:  .;c:\derby\derbyRecent\classes;c:\eclipse\db2jcc.jar;c:\eclipse\db2jcc_license_c.jar;C:\derby\derbyRecent\tools\java\jakarta-oro-2.0.8.jar;C:\derby\derbyRecent\tools\java\geronimo-spec-servlet-2.4-rc4.jar;C:\derbyDita\lib\avalon-framework-cvs-20020806.jar;C:\derbyDita\lib\batik.jar;C:\derbyDita\lib\fop.jar;C:\j2sdk1.4.2_05\lib\tools.jar;C:\derby\emma-2.0.5312\lib\emma.jar
> OS name:         Windows XP
> OS architecture: x86
> OS version:      5.1
> Java user name:  050503w
> Java user home:  C:\Documents and Settings\050503w
> Java user dir:   C:\derby\derbyRecent
> java.specification.name: Java Platform API Specification
> java.specification.version: 1.4
> --------- Derby Information --------
> JRE - JDBC: J2SE 1.4.2 - JDBC 3.0
> [C:\derby\derbyRecent\classes] 10.2.0.0 alpha - (1)
> [C:\eclipse\db2jcc.jar] 2.4 - (17)
> [C:\eclipse\db2jcc_license_c.jar] 2.4 - (17)
> ------------------------------------------------------
> ----------------- Locale Information -----------------
> Current Locale :  [English/United States [en_US]]
> Found support for locale: [de_DE]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [es]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [fr]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [it]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ja_JP]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ko_KR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [pt_BR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_CN]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_TW]
> 	 version: 10.2.0.0 alpha - (1)
> ------------------------------------------------------
>     Reporter: Philip Wilder
>      Fix For: 10.2.0.0
>  Attachments: BuildXML.patch
>
> I've found that Derby will not build sane properly for me. I have isolated it to here:
>   <target name="evaluate.sane">
>     <condition property="generate.sane">
>       <equals arg1="${sane}" arg2="true"/>
>     </condition>
>   </target>
> The scope of the generate.sane property is limited to this target (only tested in a Windows XP environment), ergo it will always be an insane build. Patch to follow shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Closed: (DERBY-527) Incorrect insane build on windows platform

Posted by "Andrew McIntyre (JIRA)" <de...@db.apache.org>.
     [ http://issues.apache.org/jira/browse/DERBY-527?page=all ]
     
Andrew McIntyre closed DERBY-527:
---------------------------------


> Incorrect insane build on windows platform
> ------------------------------------------
>
>          Key: DERBY-527
>          URL: http://issues.apache.org/jira/browse/DERBY-527
>      Project: Derby
>         Type: Bug
>   Components: Build tools
>     Versions: 10.2.0.0
>  Environment: ------------------ Java Information ------------------
> Java Version:    1.4.2_08
> Java Vendor:     Sun Microsystems Inc.
> Java home:       C:\Program Files\Java\j2re1.4.2_08
> Java classpath:  .;c:\derby\derbyRecent\classes;c:\eclipse\db2jcc.jar;c:\eclipse\db2jcc_license_c.jar;C:\derby\derbyRecent\tools\java\jakarta-oro-2.0.8.jar;C:\derby\derbyRecent\tools\java\geronimo-spec-servlet-2.4-rc4.jar;C:\derbyDita\lib\avalon-framework-cvs-20020806.jar;C:\derbyDita\lib\batik.jar;C:\derbyDita\lib\fop.jar;C:\j2sdk1.4.2_05\lib\tools.jar;C:\derby\emma-2.0.5312\lib\emma.jar
> OS name:         Windows XP
> OS architecture: x86
> OS version:      5.1
> Java user name:  050503w
> Java user home:  C:\Documents and Settings\050503w
> Java user dir:   C:\derby\derbyRecent
> java.specification.name: Java Platform API Specification
> java.specification.version: 1.4
> --------- Derby Information --------
> JRE - JDBC: J2SE 1.4.2 - JDBC 3.0
> [C:\derby\derbyRecent\classes] 10.2.0.0 alpha - (1)
> [C:\eclipse\db2jcc.jar] 2.4 - (17)
> [C:\eclipse\db2jcc_license_c.jar] 2.4 - (17)
> ------------------------------------------------------
> ----------------- Locale Information -----------------
> Current Locale :  [English/United States [en_US]]
> Found support for locale: [de_DE]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [es]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [fr]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [it]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ja_JP]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [ko_KR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [pt_BR]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_CN]
> 	 version: 10.2.0.0 alpha - (1)
> Found support for locale: [zh_TW]
> 	 version: 10.2.0.0 alpha - (1)
> ------------------------------------------------------
>     Reporter: Philip Wilder
>     Assignee: Philip Wilder
>      Fix For: 10.2.0.0, 10.1.2.0, 10.1.1.2
>  Attachments: BuildXML.patch
>
> I've found that Derby will not build sane properly for me. I have isolated it to here:
>   <target name="evaluate.sane">
>     <condition property="generate.sane">
>       <equals arg1="${sane}" arg2="true"/>
>     </condition>
>   </target>
> The scope of the generate.sane property is limited to this target (only tested in a Windows XP environment), ergo it will always be an insane build. Patch to follow shortly.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira