Open-source development on MPE/iX - August 2001

HP World Page 18August 22, 2001
compile
(cont.)
The most common compile error is
for missing #include files, of which
several really aren't needed on MPE
If in doubt, try commenting it out!
#ifndef MPE /* generic */
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif /* GNU autoconf */
But you may have to end up
manually #define-ing a few missing
constants; consult Unix include files
for the missing constants