"Crane, Keith A [ITS]" <[EMAIL PROTECTED]> writes: > > Variable $^ was not recognized by AIX Make utility. Had to replace $^ > with actual file name version.h.in in libguile/Makefile.
Thanks, I made that change. > Needed to change libguile/list.c to use header file stdarg.h. For some > reason the preprocessor statement '#ifdef __STDC__' fails and varargs.h > is included instead of stdarg.h. This causes the compile to fail with > the following message: "list.c", line 118.3: 1506-045 (S) Undeclared > identifier va_alist. Thanks. Yes, rumour has it all AIX compilers are ansi but don't always define __STDC__. I see there's no actual support for varargs.h style in the way the va stuff is used. I'll change it to stdarg.h unconditionally. _______________________________________________ Bug-guile mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-guile
