>> cc: "wrapper.c", line 99: error 1514: Illegal type for string
initializer. cc: "wrapper.c", line 100: error 1716: Automatic
aggregate initialization is an
ANSI feature.
*** Error code 1
------
For HP-UX 9.01 I had to make 2 changes. One was to the line (near
line 100) that read:
char setgroups_used = "setgroups_was_included";
change to:
char *setgroups_used = "setgroups_was_included";
The other was in the Makefile, the option -Aa needed to be added to
the WRAPPER_FLAGS macro, since HP-UX 9 does not compile ANSI mode by
default.
These were the only 2 changes I needed.
-Mark
|
|