> > 1) When I try to compile ps.c, it complains that > > under priv.h, it cannot find priv_names.h file. I > > checked the source browser and indeed the file does > > not exist > > This file you find in your /usr/include/sys directory. Normaly this > file should be found by the compiler automaticly, if not try to use -I > flag to give a search path for includes to the compiler.
we *intentionally* do not build the kernel or any of its components using the headers in /usr/include/sys, as they are not consistent with the kernel being built. so, please don't add -I. instead, either do the install_h that was suggested earlier, or: $ cd $SRC/uts/common/sys $ make priv_const.h priv_names.h -- meem _______________________________________________ opensolaris-code mailing list [email protected] https://opensolaris.org:444/mailman/listinfo/opensolaris-code
