You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by "Botho Hohbaum (JIRA)" <xe...@xml.apache.org> on 2007/01/30 16:43:34 UTC

[jira] Created: (XERCESC-1670) Problem building on HP-UX 11.23

Problem building on HP-UX 11.23
-------------------------------

                 Key: XERCESC-1670
                 URL: https://issues.apache.org/jira/browse/XERCESC-1670
             Project: Xerces-C++
          Issue Type: Bug
          Components: Build
    Affects Versions: 2.7.0
         Environment: HP-UX 11.23 on Itanium
Compiler: aCC rev. C.11.23.09
            Reporter: Botho Hohbaum
            Priority: Blocker
             Fix For: 2.7.0


I configured using the following command:
./runConfigure -p hp-11 -c /opt/aCC/bin/aCC -x /opt/aCC/bin/aCC 

Afterwards, to make a successful build, i had to do these changes:

Makefile.incl:
remove +a1 and +DAportable from line 519
remove -ptr${TEMPLATESREPOSITORY} from line 523
These parameters are unknown to the compiler.

RangeTokenMap.cpp:
add #include <xercesc/util/Janitor.hpp> in line 38

XMLAttDef.cpp:
add #include <xercesc/util/Janitor.hpp> in line 29

XMLEntityDecl.cpp:
add #include <xercesc/util/Janitor.hpp> in line 28

XMLNotationDecl.cpp:
add #include <xercesc/util/Janitor.hpp> in line 27

XSAttributeGroupDefinition.cpp:
add #include <xercesc/util/StringPool.hpp> in line 25

XSModelGroupDefinition.cpp:
add #include <xercesc/util/StringPool.hpp> in line 25

XSNamespaceItem.hpp:
add #include <xercesc/util/RefHashTableOf.hpp> in line 27

XSNotationDeclaration.cpp:
add #include <xercesc/util/StringPool.hpp> in line 25


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: c-dev-unsubscribe@xerces.apache.org
For additional commands, e-mail: c-dev-help@xerces.apache.org


[jira] Closed: (XERCESC-1670) Problem building on HP-UX 11.23

Posted by "Boris Kolpackov (JIRA)" <xe...@xml.apache.org>.
     [ https://issues.apache.org/jira/browse/XERCESC-1670?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Boris Kolpackov closed XERCESC-1670.
------------------------------------


> Problem building on HP-UX 11.23
> -------------------------------
>
>                 Key: XERCESC-1670
>                 URL: https://issues.apache.org/jira/browse/XERCESC-1670
>             Project: Xerces-C++
>          Issue Type: Bug
>          Components: Build
>    Affects Versions: 2.7.0
>         Environment: HP-UX 11.23 on Itanium
> Compiler: aCC rev. C.11.23.09
>            Reporter: Botho Hohbaum
>            Priority: Blocker
>
> I configured using the following command:
> ./runConfigure -p hp-11 -c /opt/aCC/bin/aCC -x /opt/aCC/bin/aCC 
> Afterwards, to make a successful build, i had to do these changes:
> Makefile.incl:
> remove +a1 and +DAportable from line 519
> remove -ptr${TEMPLATESREPOSITORY} from line 523
> These parameters are unknown to the compiler.
> RangeTokenMap.cpp:
> add #include <xercesc/util/Janitor.hpp> in line 38
> XMLAttDef.cpp:
> add #include <xercesc/util/Janitor.hpp> in line 29
> XMLEntityDecl.cpp:
> add #include <xercesc/util/Janitor.hpp> in line 28
> XMLNotationDecl.cpp:
> add #include <xercesc/util/Janitor.hpp> in line 27
> XSAttributeGroupDefinition.cpp:
> add #include <xercesc/util/StringPool.hpp> in line 25
> XSModelGroupDefinition.cpp:
> add #include <xercesc/util/StringPool.hpp> in line 25
> XSNamespaceItem.hpp:
> add #include <xercesc/util/RefHashTableOf.hpp> in line 27
> XSNotationDeclaration.cpp:
> add #include <xercesc/util/StringPool.hpp> in line 25

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: c-dev-unsubscribe@xerces.apache.org
For additional commands, e-mail: c-dev-help@xerces.apache.org


[jira] Resolved: (XERCESC-1670) Problem building on HP-UX 11.23

Posted by "Boris Kolpackov (JIRA)" <xe...@xml.apache.org>.
     [ https://issues.apache.org/jira/browse/XERCESC-1670?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Boris Kolpackov resolved XERCESC-1670.
--------------------------------------

       Resolution: Won't Fix
    Fix Version/s:     (was: 2.7.0)

The build system in Xerces-C++ 2-series cannot be used with compiler executable that is specified with the full path. You should use semething like this instead:

$ export PATH=/path/to/aCC/bin:$PATH
$ ./runConfigure -p hp-11 -c aCC -x aCC


> Problem building on HP-UX 11.23
> -------------------------------
>
>                 Key: XERCESC-1670
>                 URL: https://issues.apache.org/jira/browse/XERCESC-1670
>             Project: Xerces-C++
>          Issue Type: Bug
>          Components: Build
>    Affects Versions: 2.7.0
>         Environment: HP-UX 11.23 on Itanium
> Compiler: aCC rev. C.11.23.09
>            Reporter: Botho Hohbaum
>            Priority: Blocker
>
> I configured using the following command:
> ./runConfigure -p hp-11 -c /opt/aCC/bin/aCC -x /opt/aCC/bin/aCC 
> Afterwards, to make a successful build, i had to do these changes:
> Makefile.incl:
> remove +a1 and +DAportable from line 519
> remove -ptr${TEMPLATESREPOSITORY} from line 523
> These parameters are unknown to the compiler.
> RangeTokenMap.cpp:
> add #include <xercesc/util/Janitor.hpp> in line 38
> XMLAttDef.cpp:
> add #include <xercesc/util/Janitor.hpp> in line 29
> XMLEntityDecl.cpp:
> add #include <xercesc/util/Janitor.hpp> in line 28
> XMLNotationDecl.cpp:
> add #include <xercesc/util/Janitor.hpp> in line 27
> XSAttributeGroupDefinition.cpp:
> add #include <xercesc/util/StringPool.hpp> in line 25
> XSModelGroupDefinition.cpp:
> add #include <xercesc/util/StringPool.hpp> in line 25
> XSNamespaceItem.hpp:
> add #include <xercesc/util/RefHashTableOf.hpp> in line 27
> XSNotationDeclaration.cpp:
> add #include <xercesc/util/StringPool.hpp> in line 25

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: c-dev-unsubscribe@xerces.apache.org
For additional commands, e-mail: c-dev-help@xerces.apache.org