Ticket #735 (closed defect: fixed)

Opened 3 years ago

Last modified 11 months ago

1.3.0 build fails under solaris 10 / gcc 3.4.4

Reported by: nobody Owned by: erijo
Priority: normal Milestone: 1.3.4
Component: build Version: 1.3.0
Keywords: Cc:

Description (last modified by erijo) (diff)

build fails on src/rtf.cc

rtf.ll:594: error: expected unqualified-id before numeric constant
rtf.ll:594: error: expected `,' or `;' before numeric constant
rtf.ll: In member function `std::string RTF2HTML::Parse(const char*)':
rtf.ll:798: error: duplicate case value
rtf.ll:783: error: previously used here

replacing FS with FSX seems to solve this problem.

for rtf.cc

diff rtf.cc rtf2.cc
2153c2153
< const unsigned FS=6;
---
> const unsigned FSX=6;
2357c2357
<                 case FS:
---
>                 case FSX:

and for rtf.ll

diff rtf.ll rtf2.ll
594c594
< const unsigned FS                     = 6;
---
> const unsigned FSX                    = 6;
798c798
<                 case FS:
---
>                 case FSX:

Change History

Changed 3 years ago by nobody

Logged In: NO

forgot to mention i'm using gcc 3.4.4 from blastwave.org

Changed 2 years ago by erijo

  • status changed from new to assigned
  • owner set to erijo
  • description modified (diff)
  • milestone set to 1.3.4

Changed 2 years ago by erijo

  • status changed from assigned to closed
  • resolution changed from None to fixed

Fixed in [4470].

Changed 11 months ago by anonymous

  • milestone 1.3.4 deleted

Milestone 1.3.4 deleted

Changed 11 months ago by erijo

  • milestone set to 1.3.4
Note: See TracTickets for help on using tickets.