Subject: | Fails to build under HPUX 11.11 with HP ANSI C compiler |
Executing the make command gives the following error:
cc: "idea.h", line 9: error 1000: Unexpected symbol: "idea_cblock".
cc: panic 2017: Cannot recover from earlier errors, terminating.
The solution is to modifying the file idea.h and replace the line:
#if defined(__osf__) || defined(__sun)
With:
#if defined(__osf__) || defined(__sun) || defined(__hpux)