Ticket #735 (closed defect: fixed)
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
Note: See
TracTickets for help on using
tickets.
