Module Name: src Committed By: mrg Date: Sun Mar 27 05:13:16 UTC 2011
Modified Files: src/include: ieeefp.h Log Message: finish the ieeefp.h vs fp_prec_t hack from the previous change and don't try to define a type when "fp_prec" isn't defined. this lets my non-x86 (and i presume non-m68k) builds pass again. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/include/ieeefp.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/include/ieeefp.h diff -u src/include/ieeefp.h:1.8 src/include/ieeefp.h:1.9 --- src/include/ieeefp.h:1.8 Sat Mar 26 19:51:59 2011 +++ src/include/ieeefp.h Sun Mar 27 05:13:15 2011 @@ -1,4 +1,4 @@ -/* $NetBSD: ieeefp.h,v 1.8 2011/03/26 19:51:59 christos Exp $ */ +/* $NetBSD: ieeefp.h,v 1.9 2011/03/27 05:13:15 mrg Exp $ */ /* * Written by J.T. Conklin, Apr 6, 1995 @@ -13,7 +13,9 @@ __BEGIN_DECLS typedef fp_rnd fp_rnd_t; +#ifdef _X86_IEEEFP_H_ /* XXX */ typedef fp_prec fp_prec_t; +#endif typedef fp_except fp_except_t; fp_rnd_t fpgetround(void);