Index: inc/sal/config.h =================================================================== RCS file: /cvs/porting/sal/inc/sal/config.h,v retrieving revision 1.18 diff -u -r1.18 config.h --- inc/sal/config.h 28 Apr 2003 17:12:43 -0000 1.18 +++ inc/sal/config.h 24 May 2003 13:19:20 -0000 @@ -163,6 +163,16 @@ #define sun sun #endif +/* This is to work around a gcc 3.3 error that fixing actually breaks other + * compilers. This will create a dummy variable specifically for gcc 3.3 that + * allows it to compile and not break the others. Other compilers may follow + * with this eror later. */ +#ifdef __GNUC__ == 3 and __GNUC_MINOR__ > 1 +# define SAL_ISO_CONST const +#else +# define SAL_ISO_CONST +#endif + #endif /*_SAL_CONFIG_H_ */