You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Michael Vishchers (JIRA)" <ji...@apache.org> on 2009/02/27 18:12:00 UTC

[jira] Created: (AMQCPP-225) configure.ac does not work correctly on Solaris with SunStudio Compiler

configure.ac does not work correctly on Solaris with SunStudio Compiler
-----------------------------------------------------------------------

                 Key: AMQCPP-225
                 URL: https://issues.apache.org/activemq/browse/AMQCPP-225
             Project: ActiveMQ C++ Client
          Issue Type: Bug
    Affects Versions: 2.2.4, 2.2.3
         Environment: Solaris with Sun Studio compiler
            Reporter: Michael Vishchers
            Assignee: Timothy Bish


The configure.ac tries to set a flag to use the stlport4 when using the SunStudio compiler. Unfortunately, neither is the "+=" construct supported by the shell, nor is the correct variable used.

The following diff shows the faulty and the correct version:

$ diff configure.ac~ configure.ac
148,149c148
<        PLAT_CXXFLAGS="-mt -w -O5"
<        PLAT_LIBS+="-library=stlport4"
---
>        PLAT_CXXFLAGS="-mt -w -O5 -library=stlport4"


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


[jira] Resolved: (AMQCPP-225) configure.ac does not work correctly on Solaris with SunStudio Compiler

Posted by "Timothy Bish (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/AMQCPP-225?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Timothy Bish resolved AMQCPP-225.
---------------------------------

    Resolution: Fixed

Patch applied, thanks.

> configure.ac does not work correctly on Solaris with SunStudio Compiler
> -----------------------------------------------------------------------
>
>                 Key: AMQCPP-225
>                 URL: https://issues.apache.org/activemq/browse/AMQCPP-225
>             Project: ActiveMQ C++ Client
>          Issue Type: Bug
>    Affects Versions: 2.2.3, 2.2.4
>         Environment: Solaris with Sun Studio compiler
>            Reporter: Michael Vishchers
>            Assignee: Timothy Bish
>             Fix For: 2.2.5
>
>   Original Estimate: 30 minutes
>  Remaining Estimate: 30 minutes
>
> The configure.ac tries to set a flag to use the stlport4 when using the SunStudio compiler. Unfortunately, neither is the "+=" construct supported by the shell, nor is the correct variable used.
> The following diff shows the faulty and the correct version:
> $ diff configure.ac~ configure.ac
> 148,149c148
> <        PLAT_CXXFLAGS="-mt -w -O5"
> <        PLAT_LIBS+="-library=stlport4"
> ---
> >        PLAT_CXXFLAGS="-mt -w -O5 -library=stlport4"

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


[jira] Updated: (AMQCPP-225) configure.ac does not work correctly on Solaris with SunStudio Compiler

Posted by "Timothy Bish (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/AMQCPP-225?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Timothy Bish updated AMQCPP-225:
--------------------------------

    Fix Version/s: 2.2.5

> configure.ac does not work correctly on Solaris with SunStudio Compiler
> -----------------------------------------------------------------------
>
>                 Key: AMQCPP-225
>                 URL: https://issues.apache.org/activemq/browse/AMQCPP-225
>             Project: ActiveMQ C++ Client
>          Issue Type: Bug
>    Affects Versions: 2.2.3, 2.2.4
>         Environment: Solaris with Sun Studio compiler
>            Reporter: Michael Vishchers
>            Assignee: Timothy Bish
>             Fix For: 2.2.5
>
>   Original Estimate: 30 minutes
>  Remaining Estimate: 30 minutes
>
> The configure.ac tries to set a flag to use the stlport4 when using the SunStudio compiler. Unfortunately, neither is the "+=" construct supported by the shell, nor is the correct variable used.
> The following diff shows the faulty and the correct version:
> $ diff configure.ac~ configure.ac
> 148,149c148
> <        PLAT_CXXFLAGS="-mt -w -O5"
> <        PLAT_LIBS+="-library=stlport4"
> ---
> >        PLAT_CXXFLAGS="-mt -w -O5 -library=stlport4"

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