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.

Reply via email to