Opened 14 years ago

Closed 14 years ago

Last modified 14 years ago

#2654 closed Bugs (fixed)

Build of regex fails on AIX 5.1 with gcc 2.95.3

Reported by: Phil Nick <phil@…> 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:

# elif defined(FreeBSD)
defined(IBMCPP)

# include <inttypes.h>

should be:

# elif defined(FreeBSD)
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.

Change History (2)

comment:1 by John Maddock, 14 years ago

Resolution: fixed
Status: newclosed

(In [50572]) Fixes #2654.

comment:2 by John Maddock, 14 years ago

(In [50573]) fixes #2654.

Note: See TracTickets for help on using tickets.