axis2c 1.6.0 doesn't compile on Solaris11 (easy fix)
----------------------------------------------------

                 Key: AXIS2C-1587
                 URL: https://issues.apache.org/jira/browse/AXIS2C-1587
             Project: Axis2-C
          Issue Type: Bug
          Components: build system (Unix/Linux)
    Affects Versions: 1.6.0
         Environment: Solaris 11 with gcc
            Reporter: Coder J Monkey


I was unable to compile on Solaris 11 out of the box because of this define in
util/include/platforms/unix/axutil_unix.h:

extern int usleep (__useconds_t __useconds);

__useconds_t is a non-POSIX define and doesn't work on all platforms.

I added:

#ifdef useconds_t
extern int usleep (useconds_t __useconds);
#endif

As a guard around this definition, and everything compiled just fine, but 
that's possibly the wrong
guard. Since I don't know the history of why this was added it's hard to say 
why it should be there.

Once I fixed this is compiled perfectly.


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to