#2654 closed Bugs (fixed)
Build of regex fails on AIX 5.1 with gcc 2.95.3
Reported by: | Owned by: | John Maddock | |
---|---|---|---|
Milestone: | Boost 1.38.0 | Component: | regex |
Version: | Boost 1.37.0 | Severity: | Problem |
Keywords: | AIX | Cc: |
Description
Building of regex failed (possibly others as well) on AIX 5.1 with gcc 2.95.3.
The problem is actually in boost\cstdint.hpp. I put the bug under regex since I wasn't sure what to select for cstdint.hpp.
Line #39-40 is:
defined(IBMCPP) |
# include <inttypes.h>
should be:
defined(IBMCPP) | defined(_AIX) |
# include <inttypes.h>
This allows inttypes.h to be properly included.
I am new to boost let me know if I am formatting this incorrectly.
Note:
See TracTickets
for help on using tickets.
(In [50572]) Fixes #2654.